From e1bb7355e31a2ba3e0a55c663680b021d724d863 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 14:51:47 +0300 Subject: [PATCH 01/16] Refactor data load process. - Move data loading to app component. - Move services init calls to app component. --- src/app/_services/block-sync.service.ts | 6 ----- src/app/_services/transaction.service.ts | 2 -- src/app/_services/user.service.ts | 10 -------- src/app/app.component.ts | 23 ++++++++++++++----- src/app/auth/auth.component.ts | 3 +-- .../account-details.component.ts | 5 ---- .../account-search.component.ts | 4 +--- src/app/pages/accounts/accounts.component.ts | 13 ++--------- .../create-account.component.ts | 3 +-- src/app/pages/admin/admin.component.ts | 5 ++-- src/app/pages/settings/settings.component.ts | 3 +-- src/app/pages/tokens/tokens.component.ts | 9 ++------ .../transaction-details.component.ts | 4 +--- .../transactions/transactions.component.ts | 10 ++------ 14 files changed, 30 insertions(+), 70 deletions(-) diff --git a/src/app/_services/block-sync.service.ts b/src/app/_services/block-sync.service.ts index 785d452..987f0be 100644 --- a/src/app/_services/block-sync.service.ts +++ b/src/app/_services/block-sync.service.ts @@ -4,7 +4,6 @@ import { TransactionHelper } from '@cicnet/cic-client'; import { first } from 'rxjs/operators'; import { TransactionService } from '@app/_services/transaction.service'; import { environment } from '@src/environments/environment'; -import { LoggingService } from '@app/_services/logging.service'; import { RegistryService } from '@app/_services/registry.service'; import { Web3Service } from '@app/_services/web3.service'; @@ -17,13 +16,8 @@ export class BlockSyncService { constructor( private transactionService: TransactionService, - private loggingService: LoggingService ) {} - async init(): Promise { - await this.transactionService.init(); - } - async blockSync(address: string = null, offset: number = 0, limit: number = 100): Promise { this.transactionService.resetTransactionsList(); const settings: Settings = new Settings(this.scan); diff --git a/src/app/_services/transaction.service.ts b/src/app/_services/transaction.service.ts index 1977c3e..834c39c 100644 --- a/src/app/_services/transaction.service.ts +++ b/src/app/_services/transaction.service.ts @@ -42,8 +42,6 @@ export class TransactionService { } async init(): Promise { - await this.authService.init(); - await this.userService.init(); this.registry = await RegistryService.getRegistry(); } diff --git a/src/app/_services/user.service.ts b/src/app/_services/user.service.ts index 975dd72..6f7652a 100644 --- a/src/app/_services/user.service.ts +++ b/src/app/_services/user.service.ts @@ -7,11 +7,9 @@ import { ArgPair, Envelope, Phone, Syncable, User } from 'cic-client-meta'; import { AccountDetails } from '@app/_models'; import { LoggingService } from '@app/_services/logging.service'; import { TokenService } from '@app/_services/token.service'; -import { AccountIndex } from '@app/_eth'; import { MutableKeyStore, PGPSigner, Signer } from '@app/_pgp'; import { RegistryService } from '@app/_services/registry.service'; import { CICRegistry } from '@cicnet/cic-client'; -import { AuthService } from '@app/_services/auth.service'; import { personValidation, updateSyncable, vcardValidation } from '@app/_helpers'; import { add0x } from '@src/assets/js/ethtx/dist/hex'; import { KeystoreService } from '@app/_services/keystore.service'; @@ -44,12 +42,9 @@ export class UserService { private httpClient: HttpClient, private loggingService: LoggingService, private tokenService: TokenService, - private authService: AuthService ) {} async init(): Promise { - await this.authService.init(); - await this.tokenService.init(); this.keystore = await KeystoreService.getKeystore(); this.signer = new PGPSigner(this.keystore); this.registry = await RegistryService.getRegistry(); @@ -204,11 +199,6 @@ export class UserService { async loadAccounts(limit: number = 100, offset: number = 0): Promise { this.resetAccountsList(); - // const accountIndexAddress: string = await this.registry.getContractAddressByName( - // 'AccountRegistry' - // ); - // const accountIndexQuery = new AccountIndex(accountIndexAddress); - // const accountAddresses: Array = await accountIndexQuery.last(limit); try { const accountRegistry = await RegistryService.getAccountRegistry(); const accountAddresses: Array = await accountRegistry.last(limit); diff --git a/src/app/app.component.ts b/src/app/app.component.ts index d9e4a2e..f305a22 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,11 +1,10 @@ import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core'; import { - AuthService, + AuthService, BlockSyncService, ErrorDialogService, - LoggingService, - TransactionService, + LoggingService, TokenService, + TransactionService, UserService, } from '@app/_services'; -import { catchError } from 'rxjs/operators'; import { SwUpdate } from '@angular/service-worker'; @Component({ @@ -22,9 +21,12 @@ export class AppComponent implements OnInit { constructor( private authService: AuthService, - private transactionService: TransactionService, - private loggingService: LoggingService, + private blockSyncService: BlockSyncService, private errorDialogService: ErrorDialogService, + private loggingService: LoggingService, + private tokenService: TokenService, + private transactionService: TransactionService, + private userService: UserService, private swUpdate: SwUpdate ) { this.mediaQuery.addEventListener('change', this.onResize); @@ -33,7 +35,10 @@ export class AppComponent implements OnInit { async ngOnInit(): Promise { await this.authService.init(); + await this.tokenService.init(); + await this.userService.init(); await this.transactionService.init(); + await this.blockSyncService.blockSync(); try { const publicKeys = await this.authService.getPublicKeys(); await this.authService.mutableKeyStore.importPublicKey(publicKeys); @@ -44,6 +49,12 @@ export class AppComponent implements OnInit { }); // TODO do something to halt user progress...show a sad cicada page 🦗? } + try { + // TODO it feels like this should be in the onInit handler + await this.userService.loadAccounts(100); + } catch (error) { + this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); + } if (!this.swUpdate.isEnabled) { this.swUpdate.available.subscribe(() => { if (confirm('New Version available. Load New Version?')) { diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts index 5c507f3..2981c63 100644 --- a/src/app/auth/auth.component.ts +++ b/src/app/auth/auth.component.ts @@ -3,7 +3,6 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { CustomErrorStateMatcher } from '@app/_helpers'; import { AuthService } from '@app/_services'; import { ErrorDialogService } from '@app/_services/error-dialog.service'; -import { LoggingService } from '@app/_services/logging.service'; import { Router } from '@angular/router'; @Component({ @@ -25,7 +24,7 @@ export class AuthComponent implements OnInit { private errorDialogService: ErrorDialogService ) {} - async ngOnInit(): Promise { + ngOnInit(): void { this.keyForm = this.formBuilder.group({ key: ['', Validators.required], }); diff --git a/src/app/pages/accounts/account-details/account-details.component.ts b/src/app/pages/accounts/account-details/account-details.component.ts index 5290a9a..e1b680e 100644 --- a/src/app/pages/accounts/account-details/account-details.component.ts +++ b/src/app/pages/accounts/account-details/account-details.component.ts @@ -103,10 +103,6 @@ export class AccountDetailsComponent implements OnInit { location: ['', Validators.required], locationType: ['', Validators.required], }); - await this.blockSyncService.init(); - await this.tokenService.init(); - await this.transactionService.init(); - await this.userService.init(); await this.blockSyncService.blockSync(this.accountAddress); this.userService.resetAccountsList(); (await this.userService.getAccountByAddress(this.accountAddress, 100)).subscribe( @@ -114,7 +110,6 @@ export class AccountDetailsComponent implements OnInit { if (res !== undefined) { this.account = res; this.cdr.detectChanges(); - this.loggingService.sendInfoLevelMessage(this.account); this.locationService.areaNamesSubject.subscribe((response) => { this.area = this.locationService.getAreaNameByLocation( this.account.location.area_name, diff --git a/src/app/pages/accounts/account-search/account-search.component.ts b/src/app/pages/accounts/account-search/account-search.component.ts index f0ea97d..47daed9 100644 --- a/src/app/pages/accounts/account-search/account-search.component.ts +++ b/src/app/pages/accounts/account-search/account-search.component.ts @@ -40,9 +40,7 @@ export class AccountSearchComponent implements OnInit { }); } - async ngOnInit(): Promise { - await this.userService.init(); - } + ngOnInit(): void {} get nameSearchFormStub(): any { return this.nameSearchForm.controls; diff --git a/src/app/pages/accounts/accounts.component.ts b/src/app/pages/accounts/accounts.component.ts index d23735b..18368d3 100644 --- a/src/app/pages/accounts/accounts.component.ts +++ b/src/app/pages/accounts/accounts.component.ts @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/ import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; -import { LoggingService, TokenService, UserService } from '@app/_services'; +import { TokenService, UserService } from '@app/_services'; import { Router } from '@angular/router'; import { exportCsv } from '@app/_helpers'; import { strip0x } from '@src/assets/js/ethtx/dist/hex'; @@ -31,20 +31,11 @@ export class AccountsComponent implements OnInit { constructor( private userService: UserService, - private loggingService: LoggingService, private router: Router, private tokenService: TokenService ) {} - async ngOnInit(): Promise { - await this.userService.init(); - await this.tokenService.init(); - try { - // TODO it feels like this should be in the onInit handler - await this.userService.loadAccounts(100); - } catch (error) { - this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); - } + ngOnInit(): void { this.userService.accountsSubject.subscribe((accounts) => { this.dataSource = new MatTableDataSource(accounts); this.dataSource.paginator = this.paginator; diff --git a/src/app/pages/accounts/create-account/create-account.component.ts b/src/app/pages/accounts/create-account/create-account.component.ts index ab6dfbc..c29d714 100644 --- a/src/app/pages/accounts/create-account/create-account.component.ts +++ b/src/app/pages/accounts/create-account/create-account.component.ts @@ -25,8 +25,7 @@ export class CreateAccountComponent implements OnInit { private userService: UserService ) {} - async ngOnInit(): Promise { - await this.userService.init(); + ngOnInit(): void { this.createForm = this.formBuilder.group({ accountType: ['', Validators.required], idNumber: ['', Validators.required], diff --git a/src/app/pages/admin/admin.component.ts b/src/app/pages/admin/admin.component.ts index d33be3c..6dcfd5f 100644 --- a/src/app/pages/admin/admin.component.ts +++ b/src/app/pages/admin/admin.component.ts @@ -6,7 +6,7 @@ import { LoggingService, UserService } from '@app/_services'; import { animate, state, style, transition, trigger } from '@angular/animations'; import { first } from 'rxjs/operators'; import { exportCsv } from '@app/_helpers'; -import { Action } from '../../_models'; +import { Action } from '@app/_models'; @Component({ selector: 'app-admin', @@ -32,8 +32,7 @@ export class AdminComponent implements OnInit { constructor(private userService: UserService, private loggingService: LoggingService) {} - async ngOnInit(): Promise { - await this.userService.init(); + ngOnInit(): void { this.userService.getActions(); this.userService.actionsSubject.subscribe((actions) => { this.dataSource = new MatTableDataSource(actions); diff --git a/src/app/pages/settings/settings.component.ts b/src/app/pages/settings/settings.component.ts index 8e167b0..2ec1a80 100644 --- a/src/app/pages/settings/settings.component.ts +++ b/src/app/pages/settings/settings.component.ts @@ -24,8 +24,7 @@ export class SettingsComponent implements OnInit { constructor(private authService: AuthService) {} - async ngOnInit(): Promise { - await this.authService.init(); + ngOnInit(): void { this.authService.trustedUsersSubject.subscribe((users) => { this.dataSource = new MatTableDataSource(users); this.dataSource.paginator = this.paginator; diff --git a/src/app/pages/tokens/tokens.component.ts b/src/app/pages/tokens/tokens.component.ts index 9f96497..11cdb1a 100644 --- a/src/app/pages/tokens/tokens.component.ts +++ b/src/app/pages/tokens/tokens.component.ts @@ -1,9 +1,8 @@ import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; -import { LoggingService, TokenService } from '@app/_services'; +import { TokenService } from '@app/_services'; import { MatTableDataSource } from '@angular/material/table'; -import { Router } from '@angular/router'; import { exportCsv } from '@app/_helpers'; import { Token } from '@app/_models'; @@ -23,19 +22,15 @@ export class TokensComponent implements OnInit { constructor( private tokenService: TokenService, - private loggingService: LoggingService, - private router: Router ) {} - async ngOnInit(): Promise { - await this.tokenService.init(); + ngOnInit(): void { this.tokenService.load.subscribe(async (status: boolean) => { if (status) { await this.tokenService.getTokens(); } }); this.tokenService.tokensSubject.subscribe((tokens) => { - this.loggingService.sendInfoLevelMessage(tokens); this.dataSource = new MatTableDataSource(tokens); this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; diff --git a/src/app/pages/transactions/transaction-details/transaction-details.component.ts b/src/app/pages/transactions/transaction-details/transaction-details.component.ts index 29322bb..ca324e1 100644 --- a/src/app/pages/transactions/transaction-details/transaction-details.component.ts +++ b/src/app/pages/transactions/transaction-details/transaction-details.component.ts @@ -36,9 +36,7 @@ export class TransactionDetailsComponent implements OnInit { private tokenService: TokenService ) {} - async ngOnInit(): Promise { - await this.transactionService.init(); - await this.tokenService.init(); + ngOnInit(): void { if (this.transaction?.type === 'conversion') { this.traderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions'; diff --git a/src/app/pages/transactions/transactions.component.ts b/src/app/pages/transactions/transactions.component.ts index dd25baf..d584a0e 100644 --- a/src/app/pages/transactions/transactions.component.ts +++ b/src/app/pages/transactions/transactions.component.ts @@ -5,7 +5,7 @@ import { OnInit, ViewChild, } from '@angular/core'; -import { BlockSyncService, TokenService, TransactionService, UserService } from '@app/_services'; +import { TokenService, TransactionService, UserService } from '@app/_services'; import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; @@ -34,24 +34,18 @@ export class TransactionsComponent implements OnInit, AfterViewInit { @ViewChild(MatSort) sort: MatSort; constructor( - private blockSyncService: BlockSyncService, private transactionService: TransactionService, private userService: UserService, private tokenService: TokenService ) {} - async ngOnInit(): Promise { + ngOnInit(): void { this.transactionService.transactionsSubject.subscribe((transactions) => { this.transactionDataSource = new MatTableDataSource(transactions); this.transactionDataSource.paginator = this.paginator; this.transactionDataSource.sort = this.sort; this.transactions = transactions; }); - await this.blockSyncService.init(); - await this.tokenService.init(); - await this.transactionService.init(); - await this.userService.init(); - await this.blockSyncService.blockSync(); this.userService .getTransactionTypes() .pipe(first()) From 62e2486417f094507d9372bd3165d3a5c725a662 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 15:24:40 +0300 Subject: [PATCH 02/16] Clean up stale variables and lint code. --- src/app/_interceptors/error.interceptor.ts | 9 ++------- src/app/_services/auth.service.ts | 2 -- src/app/_services/block-sync.service.ts | 4 +--- src/app/_services/logging.service.ts | 3 --- src/app/_services/token.service.ts | 4 +--- src/app/_services/transaction.service.ts | 3 --- src/app/_services/user.service.ts | 6 +----- src/app/app.component.ts | 11 ++++++----- .../account-search.component.ts | 19 ------------------- src/app/pages/settings/settings.component.ts | 1 - src/app/pages/tokens/tokens.component.ts | 4 +--- 11 files changed, 12 insertions(+), 54 deletions(-) diff --git a/src/app/_interceptors/error.interceptor.ts b/src/app/_interceptors/error.interceptor.ts index 31e3812..a6ee321 100644 --- a/src/app/_interceptors/error.interceptor.ts +++ b/src/app/_interceptors/error.interceptor.ts @@ -14,7 +14,7 @@ import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; // Application imports -import { ErrorDialogService, LoggingService } from '@app/_services'; +import { LoggingService } from '@app/_services'; /** Intercepts and handles errors from outgoing HTTP request. */ @Injectable() @@ -22,15 +22,10 @@ export class ErrorInterceptor implements HttpInterceptor { /** * Initialization of the error interceptor. * - * @param errorDialogService - A service that provides a dialog box for displaying errors to the user. * @param loggingService - A service that provides logging capabilities. * @param router - A service that provides navigation among views and URL manipulation capabilities. */ - constructor( - private errorDialogService: ErrorDialogService, - private loggingService: LoggingService, - private router: Router - ) {} + constructor(private loggingService: LoggingService, private router: Router) {} /** * Intercepts HTTP requests. diff --git a/src/app/_services/auth.service.ts b/src/app/_services/auth.service.ts index 1022f54..e703bfa 100644 --- a/src/app/_services/auth.service.ts +++ b/src/app/_services/auth.service.ts @@ -5,7 +5,6 @@ import { environment } from '@src/environments/environment'; import { LoggingService } from '@app/_services/logging.service'; import { MutableKeyStore } from '@app/_pgp'; import { ErrorDialogService } from '@app/_services/error-dialog.service'; -import { HttpClient } from '@angular/common/http'; import { HttpError, rejectBody } from '@app/_helpers/global-error-handler'; import { Staff } from '@app/_models'; import { BehaviorSubject, Observable } from 'rxjs'; @@ -23,7 +22,6 @@ export class AuthService { trustedUsersSubject: Observable> = this.trustedUsersList.asObservable(); constructor( - private httpClient: HttpClient, private loggingService: LoggingService, private errorDialogService: ErrorDialogService ) {} diff --git a/src/app/_services/block-sync.service.ts b/src/app/_services/block-sync.service.ts index 987f0be..41bc89a 100644 --- a/src/app/_services/block-sync.service.ts +++ b/src/app/_services/block-sync.service.ts @@ -14,9 +14,7 @@ export class BlockSyncService { readyStateTarget: number = 2; readyState: number = 0; - constructor( - private transactionService: TransactionService, - ) {} + constructor(private transactionService: TransactionService) {} async blockSync(address: string = null, offset: number = 0, limit: number = 100): Promise { this.transactionService.resetTransactionsList(); diff --git a/src/app/_services/logging.service.ts b/src/app/_services/logging.service.ts index 0865e88..d7e38a1 100644 --- a/src/app/_services/logging.service.ts +++ b/src/app/_services/logging.service.ts @@ -5,9 +5,6 @@ import { NGXLogger } from 'ngx-logger'; providedIn: 'root', }) export class LoggingService { - env: string; - canDebug: boolean; - constructor(private logger: NGXLogger) { // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF if (isDevMode()) { diff --git a/src/app/_services/token.service.ts b/src/app/_services/token.service.ts index a572729..120bcc7 100644 --- a/src/app/_services/token.service.ts +++ b/src/app/_services/token.service.ts @@ -22,9 +22,7 @@ export class TokenService { async init(): Promise { this.registry = await RegistryService.getRegistry(); - this.tokenRegistry = new TokenRegistry( - await this.registry.getContractAddressByName('TokenRegistry') - ); + this.tokenRegistry = await RegistryService.getTokenRegistry(); this.load.next(true); } diff --git a/src/app/_services/transaction.service.ts b/src/app/_services/transaction.service.ts index 834c39c..4a46e73 100644 --- a/src/app/_services/transaction.service.ts +++ b/src/app/_services/transaction.service.ts @@ -10,7 +10,6 @@ import { add0x, fromHex, strip0x, toHex } from '@src/assets/js/ethtx/dist/hex'; import { Tx } from '@src/assets/js/ethtx/dist'; import { toValue } from '@src/assets/js/ethtx/dist/tx'; import * as secp256k1 from 'secp256k1'; -import { AuthService } from '@app/_services/auth.service'; import { defaultAccount } from '@app/_models'; import { LoggingService } from '@app/_services/logging.service'; import { HttpClient } from '@angular/common/http'; @@ -28,13 +27,11 @@ export class TransactionService { transactions: any[] = []; private transactionList = new BehaviorSubject(this.transactions); transactionsSubject = this.transactionList.asObservable(); - userInfo: any; web3: Web3; registry: CICRegistry; constructor( private httpClient: HttpClient, - private authService: AuthService, private userService: UserService, private loggingService: LoggingService ) { diff --git a/src/app/_services/user.service.ts b/src/app/_services/user.service.ts index 6f7652a..a1ed148 100644 --- a/src/app/_services/user.service.ts +++ b/src/app/_services/user.service.ts @@ -41,7 +41,7 @@ export class UserService { constructor( private httpClient: HttpClient, private loggingService: LoggingService, - private tokenService: TokenService, + private tokenService: TokenService ) {} async init(): Promise { @@ -261,10 +261,6 @@ export class UserService { this.accountsList.next(this.accounts); } - searchAccountByName(name: string): any { - return; - } - getCategories(): void { this.httpClient .get(`${environment.cicMetaUrl}/categories`) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index f305a22..03aa30e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,9 +1,12 @@ import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core'; import { - AuthService, BlockSyncService, + AuthService, + BlockSyncService, ErrorDialogService, - LoggingService, TokenService, - TransactionService, UserService, + LoggingService, + TokenService, + TransactionService, + UserService, } from '@app/_services'; import { SwUpdate } from '@angular/service-worker'; @@ -15,8 +18,6 @@ import { SwUpdate } from '@angular/service-worker'; }) export class AppComponent implements OnInit { title = 'CICADA'; - readyStateTarget: number = 3; - readyState: number = 0; mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)'); constructor( diff --git a/src/app/pages/accounts/account-search/account-search.component.ts b/src/app/pages/accounts/account-search/account-search.component.ts index 47daed9..a24708a 100644 --- a/src/app/pages/accounts/account-search/account-search.component.ts +++ b/src/app/pages/accounts/account-search/account-search.component.ts @@ -13,9 +13,6 @@ import { environment } from '@src/environments/environment'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class AccountSearchComponent implements OnInit { - nameSearchForm: FormGroup; - nameSearchSubmitted: boolean = false; - nameSearchLoading: boolean = false; phoneSearchForm: FormGroup; phoneSearchSubmitted: boolean = false; phoneSearchLoading: boolean = false; @@ -29,9 +26,6 @@ export class AccountSearchComponent implements OnInit { private userService: UserService, private router: Router ) { - this.nameSearchForm = this.formBuilder.group({ - name: ['', Validators.required], - }); this.phoneSearchForm = this.formBuilder.group({ phoneNumber: ['', Validators.required], }); @@ -42,9 +36,6 @@ export class AccountSearchComponent implements OnInit { ngOnInit(): void {} - get nameSearchFormStub(): any { - return this.nameSearchForm.controls; - } get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; } @@ -52,16 +43,6 @@ export class AccountSearchComponent implements OnInit { return this.addressSearchForm.controls; } - onNameSearch(): void { - this.nameSearchSubmitted = true; - if (this.nameSearchForm.invalid) { - return; - } - this.nameSearchLoading = true; - this.userService.searchAccountByName(this.nameSearchFormStub.name.value); - this.nameSearchLoading = false; - } - async onPhoneSearch(): Promise { this.phoneSearchSubmitted = true; if (this.phoneSearchForm.invalid) { diff --git a/src/app/pages/settings/settings.component.ts b/src/app/pages/settings/settings.component.ts index 2ec1a80..1dbeaee 100644 --- a/src/app/pages/settings/settings.component.ts +++ b/src/app/pages/settings/settings.component.ts @@ -13,7 +13,6 @@ import { exportCsv } from '@app/_helpers'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class SettingsComponent implements OnInit { - date: string; dataSource: MatTableDataSource; displayedColumns: Array = ['name', 'email', 'userId']; trustedUsers: Array; diff --git a/src/app/pages/tokens/tokens.component.ts b/src/app/pages/tokens/tokens.component.ts index 11cdb1a..38cce28 100644 --- a/src/app/pages/tokens/tokens.component.ts +++ b/src/app/pages/tokens/tokens.component.ts @@ -20,9 +20,7 @@ export class TokensComponent implements OnInit { tokens: Array; token: Token; - constructor( - private tokenService: TokenService, - ) {} + constructor(private tokenService: TokenService) {} ngOnInit(): void { this.tokenService.load.subscribe(async (status: boolean) => { From 55309933df6bfa4eed789b7f15b98f75d0447c72 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 15:28:07 +0300 Subject: [PATCH 03/16] Add test coverage files to ignore list. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 14fe5b7..4c55524 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ /dist /tmp /out-tsc +/tests # Only exists if Bazel was run /bazel-out From 7a1a2a22d928110c62d6b33aab134e1b1791c940 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 15:29:49 +0300 Subject: [PATCH 04/16] Update docs. --- docs/compodoc/classes/AccountIndex.html | 19 +- .../components/AccountDetailsComponent.html | 47 ++-- .../components/AccountSearchComponent.html | 229 ++-------------- .../components/AccountsComponent.html | 58 ++-- docs/compodoc/components/AdminComponent.html | 36 ++- docs/compodoc/components/AppComponent.html | 156 +++++------ docs/compodoc/components/AuthComponent.html | 42 ++- .../components/CreateAccountComponent.html | 16 +- .../components/SettingsComponent.html | 69 ++--- docs/compodoc/components/TokensComponent.html | 76 ++---- .../TransactionDetailsComponent.html | 35 ++- .../components/TransactionsComponent.html | 55 ++-- docs/compodoc/coverage.html | 16 +- docs/compodoc/guards/AuthGuard.html | 2 +- docs/compodoc/injectables/AuthService.html | 90 +++---- .../injectables/BlockSyncService.html | 95 ++----- docs/compodoc/injectables/LoggingService.html | 110 ++------ .../compodoc/injectables/RegistryService.html | 251 +++++++++++++++--- docs/compodoc/injectables/TokenService.html | 32 ++- .../injectables/TransactionService.html | 97 ++----- docs/compodoc/injectables/UserService.html | 232 +++++----------- .../interceptors/ErrorInterceptor.html | 33 +-- .../interceptors/HttpConfigInterceptor.html | 19 +- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/miscellaneous/variables.html | 4 +- docs/typedoc/assets/js/search.js | 2 +- .../app__eth_accountindex.accountindex.html | 8 +- ...rs_error_interceptor.errorinterceptor.html | 10 +- ...fig_interceptor.httpconfiginterceptor.html | 4 +- ...pp__services_auth_service.authservice.html | 47 ++-- ...s_block_sync_service.blocksyncservice.html | 42 +-- ...rvices_logging_service.loggingservice.html | 53 +--- ...ices_registry_service.registryservice.html | 79 +++++- ...__services_token_service.tokenservice.html | 14 +- ...ransaction_service.transactionservice.html | 49 ++-- ...pp__services_user_service.userservice.html | 104 +++----- .../app_app_component.appcomponent.html | 53 ++-- ...app_auth_auth_component.authcomponent.html | 26 +- ...ils_component.accountdetailscomponent.html | 22 +- ...arch_component.accountsearchcomponent.html | 114 ++------ ..._accounts_component.accountscomponent.html | 21 +- ...ount_component.createaccountcomponent.html | 8 +- ..._admin_admin_component.admincomponent.html | 16 +- ..._settings_component.settingscomponent.html | 38 +-- ...kens_tokens_component.tokenscomponent.html | 34 +-- ...component.transactiondetailscomponent.html | 16 +- ...tions_component.transactionscomponent.html | 21 +- 47 files changed, 970 insertions(+), 1634 deletions(-) diff --git a/docs/compodoc/classes/AccountIndex.html b/docs/compodoc/classes/AccountIndex.html index 9808103..469854d 100644 --- a/docs/compodoc/classes/AccountIndex.html +++ b/docs/compodoc/classes/AccountIndex.html @@ -357,8 +357,8 @@ Allows querying of accounts that have been registered as valid accounts in the n - + @@ -450,8 +450,8 @@ Requires availability of the signer address.

- + @@ -543,8 +543,8 @@ Returns "true" for available and "false" otherwise.

- + @@ -635,8 +635,8 @@ Returns "true" for available and "false" otherwise.

- + @@ -714,6 +714,9 @@ export class AccountIndex { constructor(contractAddress: string, signerAddress?: string) { this.contractAddress = contractAddress; this.contract = new web3.eth.Contract(abi, this.contractAddress); + // TODO this signer logic should be part of the web3service + // if signer address is not passed (for example in user service) then + // this fallsback to a web3 wallet that is not even connected??? if (signerAddress) { this.signerAddress = signerAddress; } else { diff --git a/docs/compodoc/components/AccountDetailsComponent.html b/docs/compodoc/components/AccountDetailsComponent.html index afa072d..9ff9cbf 100644 --- a/docs/compodoc/components/AccountDetailsComponent.html +++ b/docs/compodoc/components/AccountDetailsComponent.html @@ -508,8 +508,8 @@ - + @@ -547,8 +547,8 @@ - + @@ -617,8 +617,8 @@ - + @@ -687,8 +687,8 @@ - + @@ -769,8 +769,8 @@ - + @@ -808,8 +808,8 @@ - + @@ -888,8 +888,8 @@ - + @@ -929,8 +929,8 @@ - + @@ -968,8 +968,8 @@ - + @@ -1034,8 +1034,8 @@ - + @@ -2115,7 +2115,7 @@ - + @@ -2231,10 +2231,6 @@ export class AccountDetailsComponent implements OnInit { location: ['', Validators.required], locationType: ['', Validators.required], }); - await this.blockSyncService.init(); - await this.tokenService.init(); - await this.transactionService.init(); - await this.userService.init(); await this.blockSyncService.blockSync(this.accountAddress); this.userService.resetAccountsList(); (await this.userService.getAccountByAddress(this.accountAddress, 100)).subscribe( @@ -2242,7 +2238,6 @@ export class AccountDetailsComponent implements OnInit { if (res !== undefined) { this.account = res; this.cdr.detectChanges(); - this.loggingService.sendInfoLevelMessage(this.account); this.locationService.areaNamesSubject.subscribe((response) => { this.area = this.locationService.getAreaNameByLocation( this.account.location.area_name, diff --git a/docs/compodoc/components/AccountSearchComponent.html b/docs/compodoc/components/AccountSearchComponent.html index 9ded5a7..0bfd5d6 100644 --- a/docs/compodoc/components/AccountSearchComponent.html +++ b/docs/compodoc/components/AccountSearchComponent.html @@ -145,15 +145,6 @@
  • matcher
  • -
  • - nameSearchForm -
  • -
  • - nameSearchLoading -
  • -
  • - nameSearchSubmitted -
  • phoneSearchForm
  • @@ -176,16 +167,12 @@
    • - Async ngOnInit
    • Async onAddressSearch
    • -
    • - onNameSearch -
    • Async onPhoneSearch @@ -206,9 +193,6 @@
        -
      • - nameSearchFormStub -
      • phoneSearchFormStub
      • @@ -233,7 +217,7 @@ - + @@ -311,7 +295,6 @@ - Async ngOnInit @@ -320,16 +303,15 @@ - - ngOnInit() +ngOnInit() - + @@ -338,7 +320,7 @@
        - Returns : Promise<void> + Returns : void
        @@ -369,8 +351,8 @@ - + @@ -386,45 +368,6 @@ - - - - - - - - - - - - - - - - - - - -
        - - - - onNameSearch - - - -
        -onNameSearch() -
        - -
        - -
        - Returns : void - -
        -
        @@ -449,8 +392,8 @@ @@ -492,7 +435,7 @@ @@ -524,7 +467,7 @@ @@ -556,7 +499,7 @@ @@ -588,98 +531,7 @@ - - - - -
        - +
        - +
        - +
        - +
        - -
        - - - - - - - - - - - - - - -
        - - - - nameSearchForm - - -
        - Type : FormGroup - -
        - -
        - - - - - - - - - - - - - - - - - -
        - - - - nameSearchLoading - - -
        - Type : boolean - -
        - Default value : false -
        - -
        - - - - - - - - - - - - - @@ -706,7 +558,7 @@ @@ -738,7 +590,7 @@ @@ -770,7 +622,7 @@ @@ -783,28 +635,6 @@

        Accessors

        -
        - - - - nameSearchSubmitted - - -
        - Type : boolean - -
        - Default value : false -
        - +
        - +
        - +
        - +
        - - - - - - - - - - - - - -
        - - nameSearchFormStub -
        - getnameSearchFormStub() -
        - -
        @@ -821,7 +651,7 @@ @@ -843,7 +673,7 @@ @@ -869,9 +699,6 @@ import { environment } from '@src/environments/environment'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class AccountSearchComponent implements OnInit { - nameSearchForm: FormGroup; - nameSearchSubmitted: boolean = false; - nameSearchLoading: boolean = false; phoneSearchForm: FormGroup; phoneSearchSubmitted: boolean = false; phoneSearchLoading: boolean = false; @@ -885,9 +712,6 @@ export class AccountSearchComponent implements OnInit { private userService: UserService, private router: Router ) { - this.nameSearchForm = this.formBuilder.group({ - name: ['', Validators.required], - }); this.phoneSearchForm = this.formBuilder.group({ phoneNumber: ['', Validators.required], }); @@ -896,13 +720,8 @@ export class AccountSearchComponent implements OnInit { }); } - async ngOnInit(): Promise<void> { - await this.userService.init(); - } + ngOnInit(): void {} - get nameSearchFormStub(): any { - return this.nameSearchForm.controls; - } get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; } @@ -910,16 +729,6 @@ export class AccountSearchComponent implements OnInit { return this.addressSearchForm.controls; } - onNameSearch(): void { - this.nameSearchSubmitted = true; - if (this.nameSearchForm.invalid) { - return; - } - this.nameSearchLoading = true; - this.userService.searchAccountByName(this.nameSearchFormStub.name.value); - this.nameSearchLoading = false; - } - async onPhoneSearch(): Promise<void> { this.phoneSearchSubmitted = true; if (this.phoneSearchForm.invalid) { diff --git a/docs/compodoc/components/AccountsComponent.html b/docs/compodoc/components/AccountsComponent.html index 008ae3b..7b402f4 100644 --- a/docs/compodoc/components/AccountsComponent.html +++ b/docs/compodoc/components/AccountsComponent.html @@ -185,7 +185,6 @@ filterAccounts
      • - Async ngOnInit
      • @@ -213,7 +212,7 @@
      • @@ -246,18 +245,6 @@ No - - - - - - - - @@ -323,8 +310,8 @@ @@ -393,8 +380,8 @@ @@ -432,8 +419,8 @@ @@ -456,7 +443,6 @@ - Async ngOnInit @@ -465,16 +451,15 @@ @@ -483,7 +468,7 @@ @@ -512,8 +497,8 @@ @@ -553,8 +538,8 @@ @@ -926,7 +911,7 @@ import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; -import { LoggingService, TokenService, UserService } from '@app/_services'; +import { TokenService, UserService } from '@app/_services'; import { Router } from '@angular/router'; import { exportCsv } from '@app/_helpers'; import { strip0x } from '@src/assets/js/ethtx/dist/hex'; @@ -955,20 +940,11 @@ export class AccountsComponent implements OnInit { constructor( private userService: UserService, - private loggingService: LoggingService, private router: Router, private tokenService: TokenService ) {} - async ngOnInit(): Promise<void> { - await this.userService.init(); - await this.tokenService.init(); - try { - // TODO it feels like this should be in the onInit handler - await this.userService.loadAccounts(100); - } catch (error) { - this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); - } + ngOnInit(): void { this.userService.accountsSubject.subscribe((accounts) => { this.dataSource = new MatTableDataSource<any>(accounts); this.dataSource.paginator = this.paginator; diff --git a/docs/compodoc/components/AdminComponent.html b/docs/compodoc/components/AdminComponent.html index c25efbb..3e83dac 100644 --- a/docs/compodoc/components/AdminComponent.html +++ b/docs/compodoc/components/AdminComponent.html @@ -182,7 +182,6 @@ expandCollapse
      • - Async ngOnInit
      • @@ -289,8 +288,8 @@ @@ -359,8 +358,8 @@ @@ -429,8 +428,8 @@ @@ -499,8 +498,8 @@ @@ -569,8 +568,8 @@ @@ -608,8 +607,8 @@ @@ -659,7 +658,6 @@ - Async ngOnInit @@ -668,8 +666,7 @@ @@ -686,7 +683,7 @@ @@ -898,7 +895,7 @@ import { LoggingService, UserService } from '@app/_services'; import { animate, state, style, transition, trigger } from '@angular/animations'; import { first } from 'rxjs/operators'; import { exportCsv } from '@app/_helpers'; -import { Action } from '../../_models'; +import { Action } from '@app/_models'; @Component({ selector: 'app-admin', @@ -924,8 +921,7 @@ export class AdminComponent implements OnInit { constructor(private userService: UserService, private loggingService: LoggingService) {} - async ngOnInit(): Promise<void> { - await this.userService.init(); + ngOnInit(): void { this.userService.getActions(); this.userService.actionsSubject.subscribe((actions) => { this.dataSource = new MatTableDataSource<any>(actions); diff --git a/docs/compodoc/components/AppComponent.html b/docs/compodoc/components/AppComponent.html index 7aeaf1b..231b7a4 100644 --- a/docs/compodoc/components/AppComponent.html +++ b/docs/compodoc/components/AppComponent.html @@ -136,12 +136,6 @@
      • mediaQuery
      • -
      • - readyState -
      • -
      • - readyStateTarget -
      • title
      • @@ -199,7 +193,7 @@ @@ -234,10 +228,22 @@ - + + + + + + + + + - + + + + + + + + + + + + + + + + + @@ -356,8 +386,8 @@ @@ -394,8 +424,8 @@ @@ -433,8 +463,8 @@ @@ -513,70 +543,6 @@ - -
        - +
        - +
        -constructor(userService: UserService, loggingService: LoggingService, router: Router, tokenService: TokenService) +constructor(userService: UserService, router: Router, tokenService: TokenService)
        loggingService - LoggingService - - No -
        router
        - +
        - +
        - +
        - - ngOnInit() +ngOnInit()
        - +
        - Returns : Promise<void> + Returns : void
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - - ngOnInit() +ngOnInit()
        - Returns : Promise<void> + Returns : void
        -constructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService, swUpdate: SwUpdate) +constructor(authService: AuthService, blockSyncService: BlockSyncService, errorDialogService: ErrorDialogService, loggingService: LoggingService, tokenService: TokenService, transactionService: TransactionService, userService: UserService, swUpdate: SwUpdate)
        transactionServiceblockSyncService - TransactionService + BlockSyncService + + No +
        errorDialogService + ErrorDialogService @@ -258,10 +264,34 @@
        errorDialogServicetokenService - ErrorDialogService + TokenService + + No +
        transactionService + TransactionService + + No +
        userService + UserService @@ -321,8 +351,8 @@
        - +
        - +
        - +
        - +
        - - - - - - - - - - - - - - - - - -
        - - - - readyState - - -
        - Type : number - -
        - Default value : 0 -
        - -
        - - - - - - - - - - - - - - - -
        - - - - readyStateTarget - - -
        - Type : number - -
        - Default value : 3 -
        - -
        @@ -604,7 +570,7 @@ @@ -620,11 +586,13 @@
        import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';
         import {
           AuthService,
        +  BlockSyncService,
           ErrorDialogService,
           LoggingService,
        +  TokenService,
           TransactionService,
        +  UserService,
         } from '@app/_services';
        -import { catchError } from 'rxjs/operators';
         import { SwUpdate } from '@angular/service-worker';
         
         @Component({
        @@ -635,15 +603,16 @@ import { SwUpdate } from '@angular/service-worker';
         })
         export class AppComponent implements OnInit {
           title = 'CICADA';
        -  readyStateTarget: number = 3;
        -  readyState: number = 0;
           mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');
         
           constructor(
             private authService: AuthService,
        -    private transactionService: TransactionService,
        -    private loggingService: LoggingService,
        +    private blockSyncService: BlockSyncService,
             private errorDialogService: ErrorDialogService,
        +    private loggingService: LoggingService,
        +    private tokenService: TokenService,
        +    private transactionService: TransactionService,
        +    private userService: UserService,
             private swUpdate: SwUpdate
           ) {
             this.mediaQuery.addEventListener('change', this.onResize);
        @@ -652,7 +621,10 @@ export class AppComponent implements OnInit {
         
           async ngOnInit(): Promise<void> {
             await this.authService.init();
        +    await this.tokenService.init();
        +    await this.userService.init();
             await this.transactionService.init();
        +    await this.blockSyncService.blockSync();
             try {
               const publicKeys = await this.authService.getPublicKeys();
               await this.authService.mutableKeyStore.importPublicKey(publicKeys);
        @@ -663,6 +635,12 @@ export class AppComponent implements OnInit {
               });
               // TODO do something to halt user progress...show a sad cicada page 🦗?
             }
        +    try {
        +      // TODO it feels like this should be in the onInit handler
        +      await this.userService.loadAccounts(100);
        +    } catch (error) {
        +      this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });
        +    }
             if (!this.swUpdate.isEnabled) {
               this.swUpdate.available.subscribe(() => {
                 if (confirm('New Version available. Load New Version?')) {
        diff --git a/docs/compodoc/components/AuthComponent.html b/docs/compodoc/components/AuthComponent.html
        index bce0b2b..8e004d8 100644
        --- a/docs/compodoc/components/AuthComponent.html
        +++ b/docs/compodoc/components/AuthComponent.html
        @@ -162,7 +162,6 @@
                                         login
                                     
                                     
      • - Async ngOnInit
      • @@ -212,7 +211,7 @@
      • @@ -319,8 +318,8 @@ @@ -343,7 +342,6 @@ - Async ngOnInit @@ -352,16 +350,15 @@ @@ -370,7 +367,7 @@ @@ -401,8 +398,8 @@ @@ -440,8 +437,8 @@ @@ -479,8 +476,8 @@ @@ -553,7 +550,7 @@ @@ -585,7 +582,7 @@ @@ -617,7 +614,7 @@ @@ -649,7 +646,7 @@ @@ -678,7 +675,7 @@ @@ -694,7 +691,6 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { CustomErrorStateMatcher } from '@app/_helpers'; import { AuthService } from '@app/_services'; import { ErrorDialogService } from '@app/_services/error-dialog.service'; -import { LoggingService } from '@app/_services/logging.service'; import { Router } from '@angular/router'; @Component({ @@ -716,7 +712,7 @@ export class AuthComponent implements OnInit { private errorDialogService: ErrorDialogService ) {} - async ngOnInit(): Promise<void> { + ngOnInit(): void { this.keyForm = this.formBuilder.group({ key: ['', Validators.required], }); diff --git a/docs/compodoc/components/CreateAccountComponent.html b/docs/compodoc/components/CreateAccountComponent.html index 21cfc33..469b171 100644 --- a/docs/compodoc/components/CreateAccountComponent.html +++ b/docs/compodoc/components/CreateAccountComponent.html @@ -167,7 +167,6 @@ @@ -315,7 +312,7 @@ @@ -344,8 +341,8 @@ @@ -588,7 +585,7 @@ @@ -626,8 +623,7 @@ export class CreateAccountComponent implements OnInit { private userService: UserService ) {} - async ngOnInit(): Promise<void> { - await this.userService.init(); + ngOnInit(): void { this.createForm = this.formBuilder.group({ accountType: ['', Validators.required], idNumber: ['', Validators.required], diff --git a/docs/compodoc/components/SettingsComponent.html b/docs/compodoc/components/SettingsComponent.html index 2542e02..2a4c672 100644 --- a/docs/compodoc/components/SettingsComponent.html +++ b/docs/compodoc/components/SettingsComponent.html @@ -136,9 +136,6 @@
      • dataSource
      • -
      • - date -
      • displayedColumns
      • @@ -176,7 +173,6 @@ logout
      • - Async ngOnInit
      • @@ -202,7 +198,7 @@
        @@ -271,8 +267,8 @@ @@ -341,8 +337,8 @@ @@ -380,8 +376,8 @@ @@ -404,7 +400,6 @@ - Async ngOnInit @@ -413,16 +408,15 @@ @@ -431,7 +425,7 @@ @@ -460,33 +454,6 @@ - - - - - - - -
        - +
        - +
        - +
        - - ngOnInit() +ngOnInit()
        - +
        - Returns : Promise<void> + Returns : void
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        • - Async ngOnInit
        • @@ -288,7 +287,6 @@ - Async ngOnInit @@ -297,8 +295,7 @@
        - - ngOnInit() +ngOnInit()
        - Returns : Promise<void> + Returns : void
        - +
        - +
        - +
        - +
        - +
        - +
        - - ngOnInit() +ngOnInit()
        - +
        - Returns : Promise<void> + Returns : void
        Type : MatTableDataSource<any> -
        - -
        - - - - - - - @@ -523,7 +490,7 @@ @@ -559,7 +526,7 @@ @@ -595,7 +562,7 @@ @@ -622,7 +589,7 @@ @@ -649,7 +616,7 @@ @@ -677,7 +644,6 @@ import { exportCsv } from '@app/_helpers'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class SettingsComponent implements OnInit { - date: string; dataSource: MatTableDataSource<any>; displayedColumns: Array<string> = ['name', 'email', 'userId']; trustedUsers: Array<Staff>; @@ -688,8 +654,7 @@ export class SettingsComponent implements OnInit { constructor(private authService: AuthService) {} - async ngOnInit(): Promise<void> { - await this.authService.init(); + ngOnInit(): void { this.authService.trustedUsersSubject.subscribe((users) => { this.dataSource = new MatTableDataSource<any>(users); this.dataSource.paginator = this.paginator; diff --git a/docs/compodoc/components/TokensComponent.html b/docs/compodoc/components/TokensComponent.html index 3602cd7..c8e7b71 100644 --- a/docs/compodoc/components/TokensComponent.html +++ b/docs/compodoc/components/TokensComponent.html @@ -170,7 +170,6 @@ downloadCsv
      • - Async ngOnInit
      • @@ -194,12 +193,12 @@
      • @@ -228,30 +227,6 @@ - - - - - - - - - - - - - - - -
        - - - - date - - -
        - Type : string -
        - +
        - +
        - +
        - +
        - +
        -constructor(tokenService: TokenService, loggingService: LoggingService, router: Router) +constructor(tokenService: TokenService)
        - +
        loggingService - LoggingService - - No -
        router - Router - - No -
        @@ -292,8 +267,8 @@ - + @@ -362,8 +337,8 @@ - + @@ -386,7 +361,6 @@ - Async ngOnInit @@ -395,16 +369,15 @@ - - ngOnInit() +ngOnInit() - + @@ -413,7 +386,7 @@
        - Returns : Promise<void> + Returns : void
        @@ -442,8 +415,8 @@ - + @@ -517,7 +490,7 @@ - + @@ -544,7 +517,7 @@ - + @@ -580,7 +553,7 @@ - + @@ -616,7 +589,7 @@ - + @@ -643,7 +616,7 @@ - + @@ -670,7 +643,7 @@ - + @@ -686,9 +659,8 @@
        import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';
         import { MatPaginator } from '@angular/material/paginator';
         import { MatSort } from '@angular/material/sort';
        -import { LoggingService, TokenService } from '@app/_services';
        +import { TokenService } from '@app/_services';
         import { MatTableDataSource } from '@angular/material/table';
        -import { Router } from '@angular/router';
         import { exportCsv } from '@app/_helpers';
         import { Token } from '@app/_models';
         
        @@ -706,21 +678,15 @@ export class TokensComponent implements OnInit {
           tokens: Array<Token>;
           token: Token;
         
        -  constructor(
        -    private tokenService: TokenService,
        -    private loggingService: LoggingService,
        -    private router: Router
        -  ) {}
        +  constructor(private tokenService: TokenService) {}
         
        -  async ngOnInit(): Promise<void> {
        -    await this.tokenService.init();
        +  ngOnInit(): void {
             this.tokenService.load.subscribe(async (status: boolean) => {
               if (status) {
                 await this.tokenService.getTokens();
               }
             });
             this.tokenService.tokensSubject.subscribe((tokens) => {
        -      this.loggingService.sendInfoLevelMessage(tokens);
               this.dataSource = new MatTableDataSource(tokens);
               this.dataSource.paginator = this.paginator;
               this.dataSource.sort = this.sort;
        diff --git a/docs/compodoc/components/TransactionDetailsComponent.html b/docs/compodoc/components/TransactionDetailsComponent.html
        index 8833ebd..8e8820f 100644
        --- a/docs/compodoc/components/TransactionDetailsComponent.html
        +++ b/docs/compodoc/components/TransactionDetailsComponent.html
        @@ -167,7 +167,6 @@
                                         copyAddress
                                     
                                     
      • - Async ngOnInit
      • @@ -382,8 +381,8 @@ - + @@ -421,8 +420,8 @@ - + @@ -476,7 +475,6 @@ - Async ngOnInit @@ -485,8 +483,7 @@ - - ngOnInit() +ngOnInit() @@ -503,7 +500,7 @@
        - Returns : Promise<void> + Returns : void
        @@ -534,8 +531,8 @@ - + @@ -575,8 +572,8 @@ - + @@ -616,8 +613,8 @@ - + @@ -657,8 +654,8 @@ - + @@ -859,9 +856,7 @@ export class TransactionDetailsComponent implements OnInit { private tokenService: TokenService ) {} - async ngOnInit(): Promise<void> { - await this.transactionService.init(); - await this.tokenService.init(); + ngOnInit(): void { if (this.transaction?.type === 'conversion') { this.traderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions'; diff --git a/docs/compodoc/components/TransactionsComponent.html b/docs/compodoc/components/TransactionsComponent.html index 8884283..b0fbead 100644 --- a/docs/compodoc/components/TransactionsComponent.html +++ b/docs/compodoc/components/TransactionsComponent.html @@ -192,7 +192,6 @@ ngAfterViewInit
      • - Async ngOnInit
      • @@ -216,7 +215,7 @@ -constructor(blockSyncService: BlockSyncService, transactionService: TransactionService, userService: UserService, tokenService: TokenService) +constructor(transactionService: TransactionService, userService: UserService, tokenService: TokenService) @@ -238,18 +237,6 @@ - - blockSyncService - - - BlockSyncService - - - - No - - - transactionService @@ -326,8 +313,8 @@ - + @@ -407,8 +394,8 @@ - + @@ -446,8 +433,8 @@ - + @@ -485,8 +472,8 @@ - + @@ -509,7 +496,6 @@ - Async ngOnInit @@ -518,16 +504,15 @@ - - ngOnInit() +ngOnInit() - + @@ -536,7 +521,7 @@
        - Returns : Promise<void> + Returns : void
        @@ -565,8 +550,8 @@ - + @@ -963,7 +948,7 @@ OnInit, ViewChild, } from '@angular/core'; -import { BlockSyncService, TokenService, TransactionService, UserService } from '@app/_services'; +import { TokenService, TransactionService, UserService } from '@app/_services'; import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; @@ -992,24 +977,18 @@ export class TransactionsComponent implements OnInit, AfterViewInit { @ViewChild(MatSort) sort: MatSort; constructor( - private blockSyncService: BlockSyncService, private transactionService: TransactionService, private userService: UserService, private tokenService: TokenService ) {} - async ngOnInit(): Promise<void> { + ngOnInit(): void { this.transactionService.transactionsSubject.subscribe((transactions) => { this.transactionDataSource = new MatTableDataSource<any>(transactions); this.transactionDataSource.paginator = this.paginator; this.transactionDataSource.sort = this.sort; this.transactions = transactions; }); - await this.blockSyncService.init(); - await this.tokenService.init(); - await this.transactionService.init(); - await this.userService.init(); - await this.blockSyncService.blockSync(); this.userService .getTransactionTypes() .pipe(first()) diff --git a/docs/compodoc/coverage.html b/docs/compodoc/coverage.html index 0743652..0661cc4 100644 --- a/docs/compodoc/coverage.html +++ b/docs/compodoc/coverage.html @@ -757,7 +757,7 @@ BlockSyncService 0 % - (0/10) + (0/9) @@ -805,7 +805,7 @@ LoggingService 0 % - (0/11) + (0/9) @@ -817,7 +817,7 @@ RegistryService 0 % - (0/5) + (0/8) @@ -841,7 +841,7 @@ TransactionService 0 % - (0/17) + (0/16) @@ -865,7 +865,7 @@ UserService 0 % - (0/38) + (0/37) @@ -901,7 +901,7 @@ AppComponent 0 % - (0/10) + (0/8) @@ -949,7 +949,7 @@ AccountSearchComponent 0 % - (0/16) + (0/12) @@ -1021,7 +1021,7 @@ SettingsComponent 0 % - (0/13) + (0/12) diff --git a/docs/compodoc/guards/AuthGuard.html b/docs/compodoc/guards/AuthGuard.html index 18885ce..d06e7b9 100644 --- a/docs/compodoc/guards/AuthGuard.html +++ b/docs/compodoc/guards/AuthGuard.html @@ -309,7 +309,7 @@ export class AuthGuard implements CanActivate { route: ActivatedRouteSnapshot, state: RouterStateSnapshot ): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree { - if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) { + if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) { return true; } this.router.navigate(['/auth']); diff --git a/docs/compodoc/injectables/AuthService.html b/docs/compodoc/injectables/AuthService.html index 8e8cb9d..bddd7d7 100644 --- a/docs/compodoc/injectables/AuthService.html +++ b/docs/compodoc/injectables/AuthService.html @@ -169,12 +169,12 @@ -constructor(httpClient: HttpClient, loggingService: LoggingService, errorDialogService: ErrorDialogService) +constructor(loggingService: LoggingService, errorDialogService: ErrorDialogService) - + @@ -191,18 +191,6 @@ - - httpClient - - - HttpClient - - - - No - - - loggingService @@ -263,8 +251,8 @@ - + @@ -333,8 +321,8 @@ - + @@ -372,8 +360,8 @@ - + @@ -411,8 +399,8 @@ - + @@ -452,8 +440,8 @@ - + @@ -491,8 +479,8 @@ - + @@ -530,8 +518,8 @@ - + @@ -569,8 +557,8 @@ - + @@ -610,8 +598,8 @@ - + @@ -651,8 +639,8 @@ - + @@ -690,8 +678,8 @@ - + @@ -729,8 +717,8 @@ - + @@ -768,8 +756,8 @@ - + @@ -840,8 +828,8 @@ - + @@ -913,8 +901,8 @@ - + @@ -979,8 +967,8 @@ - + @@ -1049,7 +1037,7 @@ - + @@ -1081,7 +1069,7 @@ - + @@ -1116,7 +1104,7 @@ - + @@ -1148,7 +1136,7 @@ - + @@ -1168,7 +1156,6 @@ import { environment } from '@src/environments/environment'; import { LoggingService } from '@app/_services/logging.service'; import { MutableKeyStore } from '@app/_pgp'; import { ErrorDialogService } from '@app/_services/error-dialog.service'; -import { HttpClient } from '@angular/common/http'; import { HttpError, rejectBody } from '@app/_helpers/global-error-handler'; import { Staff } from '@app/_models'; import { BehaviorSubject, Observable } from 'rxjs'; @@ -1186,7 +1173,6 @@ export class AuthService { trustedUsersSubject: Observable<Array<Staff>> = this.trustedUsersList.asObservable(); constructor( - private httpClient: HttpClient, private loggingService: LoggingService, private errorDialogService: ErrorDialogService ) {} diff --git a/docs/compodoc/injectables/BlockSyncService.html b/docs/compodoc/injectables/BlockSyncService.html index e9a682c..3d76ab2 100644 --- a/docs/compodoc/injectables/BlockSyncService.html +++ b/docs/compodoc/injectables/BlockSyncService.html @@ -99,10 +99,6 @@
      • fetcher
      • -
      • - Async - init -
      • newEvent
      • @@ -131,12 +127,12 @@ -constructor(transactionService: TransactionService, loggingService: LoggingService) +constructor(transactionService: TransactionService) - + @@ -165,18 +161,6 @@ - - loggingService - - - LoggingService - - - - No - - - @@ -215,8 +199,8 @@ - + @@ -319,8 +303,8 @@ - + @@ -379,47 +363,6 @@ - - - - - - - - - - - - - - - - - - - -
        - - - - Async - init - - - -
        - - init() -
        - -
        - -
        - Returns : Promise<void> - -
        -
        @@ -442,8 +385,8 @@ @@ -524,8 +467,8 @@ @@ -644,8 +587,8 @@ @@ -783,7 +726,7 @@ @@ -815,7 +758,7 @@ @@ -834,7 +777,6 @@ import { TransactionHelper } from '@cicnet/cic-client'; import { first } from 'rxjs/operators'; import { TransactionService } from '@app/_services/transaction.service'; import { environment } from '@src/environments/environment'; -import { LoggingService } from '@app/_services/logging.service'; import { RegistryService } from '@app/_services/registry.service'; import { Web3Service } from '@app/_services/web3.service'; @@ -845,14 +787,7 @@ export class BlockSyncService { readyStateTarget: number = 2; readyState: number = 0; - constructor( - private transactionService: TransactionService, - private loggingService: LoggingService - ) {} - - async init(): Promise<void> { - await this.transactionService.init(); - } + constructor(private transactionService: TransactionService) {} async blockSync(address: string = null, offset: number = 0, limit: number = 100): Promise<void> { this.transactionService.resetTransactionsList(); diff --git a/docs/compodoc/injectables/LoggingService.html b/docs/compodoc/injectables/LoggingService.html index e1d397a..f478c46 100644 --- a/docs/compodoc/injectables/LoggingService.html +++ b/docs/compodoc/injectables/LoggingService.html @@ -66,23 +66,6 @@

        Index

        - +
        - +
        - +
        - +
        - +
        - - - - - - @@ -201,8 +184,8 @@ @@ -295,8 +278,8 @@ @@ -389,8 +372,8 @@ @@ -483,8 +466,8 @@ @@ -553,8 +536,8 @@ @@ -647,8 +630,8 @@ @@ -741,8 +724,8 @@ @@ -802,66 +785,6 @@
        -
        Properties
        -
        - -
        @@ -136,7 +119,7 @@
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -
        - -

        - Properties -

        - - - - - - - - - - - - - - -
        - - - - canDebug - - -
        - Type : boolean - -
        - -
        - - - - - - - - - - - - - - -
        - - - - env - - -
        - Type : string - -
        - -
        -
        @@ -874,9 +797,6 @@ import { NGXLogger } from 'ngx-logger'; providedIn: 'root', }) export class LoggingService { - env: string; - canDebug: boolean; - constructor(private logger: NGXLogger) { // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF if (isDevMode()) { diff --git a/docs/compodoc/injectables/RegistryService.html b/docs/compodoc/injectables/RegistryService.html index 29db4e5..6ba55b1 100644 --- a/docs/compodoc/injectables/RegistryService.html +++ b/docs/compodoc/injectables/RegistryService.html @@ -74,6 +74,11 @@ @@ -95,11 +105,21 @@ @@ -112,30 +132,54 @@ -
        -

        Constructor

        - - - - - - - - - - -
        -constructor() -
        - -
        -

        Methods

        + + + + + + + + + + + + + + + + + + + +
        + + + + Static + Async + getAccountRegistry + + + +
        + + getAccountRegistry() +
        + +
        + +
        + Returns : Promise<AccountIndex> + +
        +
        @@ -161,8 +205,8 @@ @@ -178,12 +222,83 @@
        - +
        + + + + + + + + + + + + + + + + + + + +
        + + + + Static + Async + getTokenRegistry + + + +
        + + getTokenRegistry() +
        + +
        + +
        + Returns : Promise<TokenRegistry> + +
        +

        Properties

        + + + + + + + + + + + + + + +
        + + + + Private + Static + accountRegistry + + +
        + Type : AccountIndex + +
        + +
        @@ -210,7 +325,7 @@ @@ -239,7 +354,36 @@ + + + + +
        - +
        - + +
        + + + + + + + + + + @@ -255,6 +399,7 @@
        import { Injectable } from '@angular/core';
         import { environment } from '@src/environments/environment';
         import { CICRegistry, FileGetter } from '@cicnet/cic-client';
        +import { TokenRegistry, AccountIndex } from '@app/_eth';
         import { HttpGetter } from '@app/_helpers';
         import { Web3Service } from '@app/_services/web3.service';
         
        @@ -264,22 +409,56 @@ import { Web3Service } from '@app/_services/web3.service';
         export class RegistryService {
           static fileGetter: FileGetter = new HttpGetter();
           private static registry: CICRegistry;
        -
        -  constructor() {}
        +  private static tokenRegistry: TokenRegistry;
        +  private static accountRegistry: AccountIndex;
         
           public static async getRegistry(): Promise<CICRegistry> {
        -    if (!RegistryService.registry) {
        -      RegistryService.registry = new CICRegistry(
        -        Web3Service.getInstance(),
        -        environment.registryAddress,
        -        'Registry',
        -        RegistryService.fileGetter,
        -        ['../../assets/js/block-sync/data']
        -      );
        -      RegistryService.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);
        -      await RegistryService.registry.load();
        -    }
        -    return RegistryService.registry;
        +    return new Promise(async (resolve, reject) => {
        +      if (!RegistryService.registry) {
        +        RegistryService.registry = new CICRegistry(
        +          Web3Service.getInstance(),
        +          environment.registryAddress,
        +          'Registry',
        +          RegistryService.fileGetter,
        +          ['../../assets/js/block-sync/data']
        +        );
        +        RegistryService.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);
        +        await RegistryService.registry.load();
        +        return resolve(RegistryService.registry);
        +      }
        +      return resolve(RegistryService.registry);
        +    });
        +  }
        +
        +  public static async getTokenRegistry(): Promise<TokenRegistry> {
        +    return new Promise(async (resolve, reject) => {
        +      if (!RegistryService.tokenRegistry) {
        +        const registry = await RegistryService.getRegistry();
        +        const tokenRegistryAddress = await registry.getContractAddressByName('TokenRegistry');
        +        if (!tokenRegistryAddress) {
        +          return reject('Unable to initialize Token Registry');
        +        }
        +        RegistryService.tokenRegistry = new TokenRegistry(tokenRegistryAddress);
        +        return resolve(RegistryService.tokenRegistry);
        +      }
        +      return resolve(RegistryService.tokenRegistry);
        +    });
        +  }
        +
        +  public static async getAccountRegistry(): Promise<AccountIndex> {
        +    return new Promise(async (resolve, reject) => {
        +      if (!RegistryService.accountRegistry) {
        +        const registry = await RegistryService.getRegistry();
        +        const accountRegistryAddress = await registry.getContractAddressByName('AccountRegistry');
        +
        +        if (!accountRegistryAddress) {
        +          return reject('Unable to initialize Account Registry');
        +        }
        +        RegistryService.accountRegistry = new AccountIndex(accountRegistryAddress);
        +        return resolve(RegistryService.accountRegistry);
        +      }
        +      return resolve(RegistryService.accountRegistry);
        +    });
           }
         }
         
        diff --git a/docs/compodoc/injectables/TokenService.html b/docs/compodoc/injectables/TokenService.html index 30b141c..5955240 100644 --- a/docs/compodoc/injectables/TokenService.html +++ b/docs/compodoc/injectables/TokenService.html @@ -194,8 +194,8 @@ @@ -266,8 +266,8 @@ @@ -338,8 +338,8 @@ @@ -410,8 +410,8 @@ @@ -482,8 +482,8 @@ @@ -523,8 +523,8 @@ @@ -564,8 +564,8 @@ @@ -843,9 +843,7 @@ export class TokenService { async init(): Promise<void> { this.registry = await RegistryService.getRegistry(); - this.tokenRegistry = new TokenRegistry( - await this.registry.getContractAddressByName('TokenRegistry') - ); + this.tokenRegistry = await RegistryService.getTokenRegistry(); this.load.next(true); } diff --git a/docs/compodoc/injectables/TransactionService.html b/docs/compodoc/injectables/TransactionService.html index 94c37d1..917fca6 100644 --- a/docs/compodoc/injectables/TransactionService.html +++ b/docs/compodoc/injectables/TransactionService.html @@ -87,9 +87,6 @@
      • transactionsSubject
      • -
      • - userInfo -
      • web3
      • @@ -154,12 +151,12 @@ @@ -187,18 +184,6 @@ No - - - - - - - - @@ -260,8 +245,8 @@ @@ -341,8 +326,8 @@ @@ -429,8 +414,8 @@ @@ -523,8 +508,8 @@ @@ -607,8 +592,8 @@ @@ -646,8 +631,8 @@ @@ -687,8 +672,8 @@ @@ -764,8 +749,8 @@ @@ -847,8 +832,8 @@ @@ -957,7 +942,7 @@ @@ -984,7 +969,7 @@ @@ -1016,7 +1001,7 @@ @@ -1042,34 +1027,7 @@ - - - - -
        + + + + Private + Static + tokenRegistry + + +
        + Type : TokenRegistry + +
        +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -constructor(httpClient: HttpClient, authService: AuthService, userService: UserService, loggingService: LoggingService) +constructor(httpClient: HttpClient, userService: UserService, loggingService: LoggingService)
        - +
        authService - AuthService - - No -
        userService
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - -
        - - - - - - - - - - @@ -1096,7 +1054,7 @@ @@ -1121,7 +1079,6 @@ import { add0x, fromHex, strip0x, toHex } from '@src/assets/js/ethtx/dist/h import { Tx } from '@src/assets/js/ethtx/dist'; import { toValue } from '@src/assets/js/ethtx/dist/tx'; import * as secp256k1 from 'secp256k1'; -import { AuthService } from '@app/_services/auth.service'; import { defaultAccount } from '@app/_models'; import { LoggingService } from '@app/_services/logging.service'; import { HttpClient } from '@angular/common/http'; @@ -1139,13 +1096,11 @@ export class TransactionService { transactions: any[] = []; private transactionList = new BehaviorSubject<any[]>(this.transactions); transactionsSubject = this.transactionList.asObservable(); - userInfo: any; web3: Web3; registry: CICRegistry; constructor( private httpClient: HttpClient, - private authService: AuthService, private userService: UserService, private loggingService: LoggingService ) { @@ -1153,8 +1108,6 @@ export class TransactionService { } async init(): Promise<void> { - await this.authService.init(); - await this.userService.init(); this.registry = await RegistryService.getRegistry(); } diff --git a/docs/compodoc/injectables/UserService.html b/docs/compodoc/injectables/UserService.html index 805ec36..be8fd0b 100644 --- a/docs/compodoc/injectables/UserService.html +++ b/docs/compodoc/injectables/UserService.html @@ -193,9 +193,6 @@
      • revokeAction
      • -
      • - searchAccountByName -
      • Async updateMeta @@ -221,12 +218,12 @@
      • @@ -279,18 +276,6 @@ - - - - - - - -
        - - - - userInfo - - -
        - Type : any - -
        - +
        - +
        -constructor(httpClient: HttpClient, loggingService: LoggingService, tokenService: TokenService, authService: AuthService) +constructor(httpClient: HttpClient, loggingService: LoggingService, tokenService: TokenService)
        - +
        authService - AuthService - - No -
        @@ -327,8 +312,8 @@ - + @@ -409,8 +394,8 @@ - + @@ -481,8 +466,8 @@ - + @@ -673,8 +658,8 @@ - + @@ -763,8 +748,8 @@ - + @@ -851,8 +836,8 @@ - + @@ -921,8 +906,8 @@ - + @@ -991,8 +976,8 @@ - + @@ -1030,8 +1015,8 @@ - + @@ -1100,8 +1085,8 @@ - + @@ -1139,8 +1124,8 @@ - + @@ -1178,8 +1163,8 @@ - + @@ -1260,8 +1245,8 @@ - + @@ -1299,8 +1284,8 @@ - + @@ -1381,8 +1366,8 @@ - + @@ -1422,8 +1407,8 @@ - + @@ -1463,8 +1448,8 @@ - + @@ -1552,8 +1537,8 @@ - + @@ -1591,8 +1576,8 @@ - + @@ -1661,8 +1646,8 @@ - + @@ -1709,76 +1694,6 @@ - - - - - - - - - - - - - - - - - - - -
        - - - - searchAccountByName - - - -
        -searchAccountByName(name: string) -
        - -
        - -
        - Parameters : - - - - - - - - - - - - - - - - - - -
        NameTypeOptional
        name - string - - No -
        -
        -
        -
        -
        - Returns : any - -
        -
        - -
        -
        @@ -1803,8 +1718,8 @@ @@ -1897,8 +1812,8 @@ @@ -1988,7 +1903,7 @@ @@ -2023,7 +1938,7 @@ @@ -2055,7 +1970,7 @@ @@ -2087,7 +2002,7 @@ @@ -2120,7 +2035,7 @@ @@ -2152,7 +2067,7 @@ @@ -2184,7 +2099,7 @@ @@ -2217,7 +2132,7 @@ @@ -2249,7 +2164,7 @@ @@ -2281,7 +2196,7 @@ @@ -2308,7 +2223,7 @@ @@ -2335,7 +2250,7 @@ @@ -2362,7 +2277,7 @@ @@ -2384,11 +2299,9 @@ import { ArgPair, Envelope, Phone, Syncable, User } from 'cic-client-meta&# import { AccountDetails } from '@app/_models'; import { LoggingService } from '@app/_services/logging.service'; import { TokenService } from '@app/_services/token.service'; -import { AccountIndex } from '@app/_eth'; import { MutableKeyStore, PGPSigner, Signer } from '@app/_pgp'; import { RegistryService } from '@app/_services/registry.service'; import { CICRegistry } from '@cicnet/cic-client'; -import { AuthService } from '@app/_services/auth.service'; import { personValidation, updateSyncable, vcardValidation } from '@app/_helpers'; import { add0x } from '@src/assets/js/ethtx/dist/hex'; import { KeystoreService } from '@app/_services/keystore.service'; @@ -2420,13 +2333,10 @@ export class UserService { constructor( private httpClient: HttpClient, private loggingService: LoggingService, - private tokenService: TokenService, - private authService: AuthService + private tokenService: TokenService ) {} async init(): Promise<void> { - await this.authService.init(); - await this.tokenService.init(); this.keystore = await KeystoreService.getKeystore(); this.signer = new PGPSigner(this.keystore); this.registry = await RegistryService.getRegistry(); @@ -2581,14 +2491,16 @@ export class UserService { async loadAccounts(limit: number = 100, offset: number = 0): Promise<void> { this.resetAccountsList(); - const accountIndexAddress: string = await this.registry.getContractAddressByName( - 'AccountRegistry' - ); - const accountIndexQuery = new AccountIndex(accountIndexAddress); - const accountAddresses: Array<string> = await accountIndexQuery.last(limit); - this.loggingService.sendInfoLevelMessage(accountAddresses); - for (const accountAddress of accountAddresses.slice(offset, offset + limit)) { - await this.getAccountByAddress(accountAddress, limit); + try { + const accountRegistry = await RegistryService.getAccountRegistry(); + const accountAddresses: Array<string> = await accountRegistry.last(limit); + this.loggingService.sendInfoLevelMessage(accountAddresses); + for (const accountAddress of accountAddresses.slice(offset, offset + limit)) { + await this.getAccountByAddress(accountAddress, limit); + } + } catch (error) { + this.loggingService.sendErrorLevelMessage('Unable to load accounts.', 'user.service', error); + throw error; } } @@ -2641,10 +2553,6 @@ export class UserService { this.accountsList.next(this.accounts); } - searchAccountByName(name: string): any { - return; - } - getCategories(): void { this.httpClient .get(`${environment.cicMetaUrl}/categories`) diff --git a/docs/compodoc/interceptors/ErrorInterceptor.html b/docs/compodoc/interceptors/ErrorInterceptor.html index c2543e6..343508b 100644 --- a/docs/compodoc/interceptors/ErrorInterceptor.html +++ b/docs/compodoc/interceptors/ErrorInterceptor.html @@ -103,7 +103,7 @@ @@ -128,24 +128,6 @@ - - - - - - - - - @@ -218,8 +200,8 @@ @@ -315,7 +297,7 @@ import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; // Application imports -import { ErrorDialogService, LoggingService } from '@app/_services'; +import { LoggingService } from '@app/_services'; /** Intercepts and handles errors from outgoing HTTP request. */ @Injectable() @@ -323,15 +305,10 @@ export class ErrorInterceptor implements HttpInterceptor { /** * Initialization of the error interceptor. * - * @param errorDialogService - A service that provides a dialog box for displaying errors to the user. * @param loggingService - A service that provides logging capabilities. * @param router - A service that provides navigation among views and URL manipulation capabilities. */ - constructor( - private errorDialogService: ErrorDialogService, - private loggingService: LoggingService, - private router: Router - ) {} + constructor(private loggingService: LoggingService, private router: Router) {} /** * Intercepts HTTP requests. diff --git a/docs/compodoc/interceptors/HttpConfigInterceptor.html b/docs/compodoc/interceptors/HttpConfigInterceptor.html index df7938c..41e1efd 100644 --- a/docs/compodoc/interceptors/HttpConfigInterceptor.html +++ b/docs/compodoc/interceptors/HttpConfigInterceptor.html @@ -108,7 +108,7 @@ @@ -149,8 +149,8 @@ @@ -236,6 +236,7 @@ import { Injectable } from '@angular/core'; // Third party imports import { Observable } from 'rxjs'; +import { environment } from '@src/environments/environment'; /** Intercepts and handles setting of configurations to outgoing HTTP request. */ @Injectable() @@ -251,11 +252,15 @@ export class HttpConfigInterceptor implements HttpInterceptor { * @returns The forwarded request. */ intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>> { - // const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN')); + if (request.url.startsWith(environment.cicMetaUrl)) { + const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN')); - // if (token) { - // request = request.clone({headers: request.headers.set('Authorization', 'Bearer ' + token)}); - // } + if (token) { + request = request.clone({ + headers: request.headers.set('Authorization', 'Bearer ' + token), + }); + } + } return next.handle(request); } diff --git a/docs/compodoc/js/search/search_index.js b/docs/compodoc/js/search/search_index.js index b3e621b..771a551 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,0.973,1,2.085]],["body/interfaces/AccountDetails.html",[0,1.796,1,3.532,2,1.571,3,0.093,4,0.073,5,0.053,6,2.474,7,0.926,8,1.926,9,2.684,10,0.327,11,0.907,12,1.277,13,5.486,14,4.577,15,5.129,16,4.941,17,4.705,18,4.941,19,4.272,20,4.967,21,0.74,22,3.831,23,1.711,24,0.011,25,2.67,26,2.122,27,1.205,28,3.152,29,3.713,30,3.972,31,3.975,32,5.486,33,3.972,34,3.972,35,3.713,36,3.713,37,3.972,38,2.297,39,3.713,40,3.713,41,3.713,42,3.498,43,3.498,44,2.128,45,3.713,46,2.809,47,3.314,48,1.752,49,3.713,50,3.713,51,3.713,52,4.55,53,3.713,54,3.152,55,3.815,56,2.229,57,2.965,58,2.229,59,2.128,60,1.52,61,3.152,62,2.229,63,2.88,64,2.136,65,2.229,66,3.152,67,2.998,68,2.809,69,2.474,70,2.128,71,3.498,72,1.954,73,0.952,74,0.876,75,3.314,76,2.474,77,2.017,78,2.474,79,3.498,80,2.655,81,2.626,82,2.626,83,0.852,84,0.093,85,0.005,86,0.007,87,0.005]],["title/classes/AccountIndex.html",[88,0.081,89,3.374]],["body/classes/AccountIndex.html",[0,0.696,3,0.074,4,0.058,5,0.042,7,1.587,8,2.05,10,0.259,11,0.767,12,0.996,21,0.61,23,1.596,24,0.011,26,2.199,29,4.199,74,1.4,77,1.134,80,4.019,84,0.074,85,0.004,86,0.006,87,0.004,88,0.058,89,3.633,90,1.492,91,2.414,92,2.01,93,4.199,94,5.59,95,4.988,96,3.999,97,3.999,98,7.387,99,2.665,100,1.774,101,4.868,102,6.026,103,6.582,104,0.701,105,3.469,106,2.872,107,4.556,108,4.556,109,4.556,110,6.865,111,0.589,112,3.999,113,0.935,114,4.556,115,1.468,116,3.556,117,4.698,118,1.087,119,0.679,120,5.209,121,3.587,122,2.414,123,3.028,124,3.028,125,4.556,126,3.028,127,4.556,128,3.999,129,3.633,130,2.802,131,5.844,132,3.999,133,4.556,134,5.844,135,6.434,136,3.028,137,1.163,138,2.361,139,2.562,140,2.958,141,3.999,142,4.556,143,3.028,144,2.802,145,4.199,146,3.359,147,3.359,148,2.417,149,3.999,150,3.633,151,3.028,152,3.633,153,3.028,154,4.556,155,3.028,156,3.359,157,4.556,158,5.477,159,1.637,160,2.883,161,4.556,162,4.556,163,3.028,164,5.473,165,0.274,166,3.402,167,1.553,168,0.822,169,1.772,170,2.087,171,1.248,172,1.492,173,2.414,174,3.14,175,2.414,176,2.658,177,2.414,178,2.087,179,1.966,180,2.658,181,2.3,182,3.999,183,2.658,184,0.822,185,2.658,186,4.808,187,2.658,188,4.556,189,3.028,190,2.417,191,3.028,192,3.028,193,3.028,194,3.028,195,4.808,196,3.028,197,5.477,198,1.492,199,3.028,200,3.028,201,2.658]],["title/components/AccountSearchComponent.html",[202,0.594,203,1.324]],["body/components/AccountSearchComponent.html",[3,0.075,4,0.058,5,0.042,8,1.883,10,0.263,11,0.774,12,0.501,21,0.667,24,0.011,26,1.664,27,0.685,48,1.555,73,1.786,84,0.075,85,0.004,86,0.006,87,0.004,88,0.058,94,3.979,100,0.832,104,0.708,106,2.648,111,0.893,113,1.056,115,0.987,118,0.547,119,0.732,121,2.799,137,0.888,138,2.221,139,2.356,148,3.58,159,1.585,165,0.358,171,1.263,172,1.51,184,1.248,190,2.312,202,0.774,203,1.918,204,1.618,205,1.079,206,1.222,207,1.079,208,0.987,209,7.302,210,6.132,211,2.69,212,1.284,213,2.351,214,0.905,215,1.834,216,1.834,217,2.764,218,2.988,219,4.846,220,1.834,221,5.516,222,1.834,223,4.597,224,5.516,225,5.516,226,5.516,227,4.066,228,5.516,229,5.516,230,5.516,231,5.516,232,5.516,233,5.516,234,2.613,235,6.129,236,6.129,237,6.129,238,3.388,239,5.516,240,5.516,241,5.516,242,2.443,243,5.083,244,4.397,245,3.822,246,4.597,247,3.064,248,3.064,249,3.064,250,1.056,251,3.064,252,4.928,253,3.064,254,2.329,255,3.064,256,3.064,257,4.038,258,3.064,259,3.064,260,3.064,261,3.064,262,3.064,263,3.064,264,3.064,265,3.064,266,3.064,267,3.064,268,3.064,269,3.064,270,1.222,271,0.307,272,2.259,273,1.638,274,1.51,275,1.571,276,1.112,277,2.259,278,2.259,279,1.541,280,3.064,281,4.066,282,4.066,283,3.064,284,2.69,285,3.064,286,1.989,287,3.064,288,3.064,289,3.064,290,3.064,291,3.064,292,4.597,293,3.064,294,3.064,295,3.064,296,4.597,297,3.064,298,2.457,299,4.597,300,3.979,301,3.665,302,4.035,303,4.597,304,4.597,305,3.665,306,3.064,307,3.064,308,4.597,309,3.064,310,2.457,311,4.476,312,3.979,313,4.597,314,0.832,315,1.525,316,1.481,317,0.856,318,2.225,319,1.112,320,0.987,321,2.002,322,0.959,323,1.112,324,1.112,325,0.959,326,1.112,327,0.987,328,1.112,329,0.959,330,1.112,331,0.959,332,1.112,333,0.959,334,0.704,335,1.112,336,0.987,337,1.668,338,1.047,339,0.987,340,1.112,341,0.959,342,1.112,343,0.959,344,1.112,345,0.959,346,1.112,347,0.987,348,1.668,349,1.047,350,0.959,351,0.959,352,1.112,353,0.987,354,1.668,355,1.047,356,0.987,357,0.744,358,0.959,359,0.987,360,0.959,361,0.959,362,1.112,363,0.959,364,1.112,365,0.959,366,1.112,367,1.016,368,1.079,369,1.112]],["title/components/AccountsComponent.html",[202,0.594,322,1.324]],["body/components/AccountsComponent.html",[1,1.469,3,0.073,4,0.057,5,0.041,8,1.534,10,0.255,11,0.758,12,0.887,14,3.717,19,3.375,21,0.686,23,1.377,24,0.011,26,1.642,27,0.666,48,1.484,73,1.621,84,0.132,85,0.004,86,0.006,87,0.004,88,0.057,94,5.195,100,0.81,104,0.693,106,2.403,111,0.875,113,1.045,115,0.96,118,0.968,119,0.848,137,0.988,138,1.947,160,3.219,165,0.387,171,1.229,172,1.469,184,0.81,190,2.285,202,0.762,203,0.933,204,1.585,205,1.05,206,1.189,207,1.05,208,0.96,212,1.257,213,2.577,214,0.881,215,1.796,216,1.796,217,2.757,218,2.979,219,3.717,220,1.796,222,1.796,234,2.577,244,4.196,245,3.786,250,1.677,254,0.881,270,1.189,271,0.298,274,1.469,275,1.528,276,1.082,277,2.198,278,2.198,279,1.688,286,1.935,298,2.406,300,1.935,302,2.617,310,2.406,311,3.924,314,0.81,315,1.493,316,1.45,317,0.833,318,2.194,319,1.082,320,0.96,321,1.969,322,1.892,323,1.082,324,1.082,325,0.933,326,1.082,327,0.96,328,1.082,329,0.933,330,1.082,331,0.933,332,1.082,333,0.933,334,1.247,335,1.082,336,0.96,337,1.634,338,1.019,339,0.96,340,1.082,341,0.933,342,1.082,343,0.933,344,1.082,345,0.933,346,1.082,347,0.96,348,1.634,349,1.019,350,0.933,351,0.933,352,1.082,353,0.96,354,1.634,355,1.019,356,0.96,357,0.724,358,0.933,359,0.96,360,0.933,361,0.933,362,1.082,363,0.933,364,1.082,365,0.933,366,1.082,367,0.989,368,1.05,369,1.082,370,2.617,371,5.425,372,4.502,373,5.425,374,3.739,375,3.739,376,4.762,377,4.326,378,4.762,379,3.739,380,3.739,381,5.174,382,3.103,383,4.166,384,6.045,385,6.045,386,4.502,387,2.617,388,2.737,389,4.357,390,4.502,391,3.103,392,2.981,393,2.981,394,2.981,395,2.981,396,2.981,397,4.502,398,2.981,399,2.981,400,2.981,401,2.981,402,3.739,403,2.981,404,4.456,405,2.981,406,4.819,407,2.981,408,3.59,409,3.952,410,2.981,411,3.739,412,2.923,413,3.103,414,2.981,415,3.739,416,3.103,417,2.981,418,2.054,419,1.528,420,1.593,421,1.593,422,1.833,423,1.744,424,1.528,425,1.665,426,2.198,427,2.054,428,1.833,429,2.981,430,1.744,431,2.981,432,2.198,433,2.617,434,1.833,435,4.502,436,2.198,437,2.981,438,3.999,439,3.103,440,2.198,441,2.054,442,4.502,443,2.054,444,2.377,445,1.833,446,1.935,447,2.617,448,2.198,449,1.685,450,2.377,451,2.377,452,2.198,453,2.054,454,2.981,455,4.502,456,4.502,457,2.981,458,2.981,459,2.981,460,2.981,461,3.952,462,4.456,463,3.103,464,4.502,465,4.502,466,4.502,467,3.319,468,4.502,469,2.923,470,4.502]],["title/modules/AccountsModule.html",[471,1.117,472,3.119]],["body/modules/AccountsModule.html",[3,0.117,4,0.091,5,0.066,8,1.133,24,0.011,83,1.071,84,0.117,85,0.006,86,0.008,87,0.006,88,0.091,165,0.443,168,1.711,203,2.495,210,3.533,271,0.48,273,2.561,314,1.302,320,2.569,322,2.495,331,2.495,419,2.457,420,2.561,421,2.561,471,1.266,472,6.449,473,1.74,474,2.361,475,3.762,476,2.457,477,2.561,478,4.207,479,4.207,480,4.207,481,5.495,482,3.929,483,5.495,484,3.367,485,2.561,486,2.273,487,4.793,488,2.597,489,3.686,490,2.676,491,4.793,492,2.804,493,4.207,494,2.804,495,4.207,496,3.821,497,3.303,498,4.207,499,3.533,500,4.207,501,4.091,502,4.342,503,4.645,504,3.533,505,4.342,506,3.875,507,2.947,508,4.091,509,3.111,510,2.804,511,3.875,512,2.947,513,3.875,514,2.947,515,4.091,516,3.111,517,4.342,518,3.303,519,4.793,520,6.301,521,4.793,522,4.342,523,3.111,524,6.301,525,4.793,526,4.793,527,5.024,528,4.207,529,5.531,530,3.821,531,3.303]],["title/modules/AccountsRoutingModule.html",[471,1.117,481,2.916]],["body/modules/AccountsRoutingModule.html",[3,0.145,4,0.113,5,0.082,24,0.011,67,2.616,74,1.363,83,1.325,84,0.145,85,0.007,86,0.009,87,0.007,88,0.113,115,1.91,165,0.422,168,1.61,202,1.135,203,2.256,210,4.37,219,3.646,271,0.593,276,2.152,320,2.322,322,2.256,331,2.256,473,2.152,481,4.968,488,2.972,493,5.204,495,6.328,496,4.727,497,4.086,498,5.204,499,4.37,500,5.204,528,5.204,532,5.929,533,3.468,534,3.684,535,4.025,536,4.845,537,4.086,538,4.086,539,3.849,540,3.646]],["title/interfaces/Action.html",[0,0.973,541,2.602]],["body/interfaces/Action.html",[0,1.637,2,2.397,3,0.142,4,0.111,5,0.08,7,1.413,10,0.498,11,1.199,21,0.706,23,1.678,24,0.011,25,2.743,26,2.092,64,1.987,67,3.699,83,1.3,84,0.142,85,0.007,86,0.009,87,0.007,254,2.276,449,2.667,541,5.456,542,5.104,543,5.777,544,5.442,545,7.124,546,7.124,547,4.625,548,3.978,549,7.124]],["title/classes/ActivatedRouteStub.html",[88,0.081,550,3.374]],["body/classes/ActivatedRouteStub.html",[3,0.128,4,0.1,5,0.073,7,1.278,10,0.451,11,1.126,12,1.093,21,0.573,24,0.011,48,1.777,73,1.671,84,0.128,85,0.006,86,0.008,87,0.006,88,0.1,90,2.591,104,1.03,111,1.022,113,0.988,118,1.193,119,0.746,122,5.334,137,0.762,165,0.335,184,1.998,250,1.538,276,1.908,279,2.055,550,5.334,551,7.02,552,4.678,553,2.936,554,6.691,555,5.873,556,6.691,557,8.694,558,3.793,559,5.424,560,7.745,561,5.873,562,5.334,563,4.531,564,7.359,565,5.867,566,6.691,567,8.408,568,6.691,569,5.258,570,6.691,571,5.258,572,5.334,573,7.745,574,6.691,575,5.258,576,4.611,577,6.691,578,5.258,579,2.404,580,4.616,581,4.616,582,5.873,583,5.258,584,5.258,585,5.258,586,5.258]],["title/components/AdminComponent.html",[202,0.594,325,1.324]],["body/components/AdminComponent.html",[3,0.076,4,0.059,5,0.043,8,1.1,10,0.267,11,0.784,12,1.134,21,0.669,23,1.285,24,0.011,25,1.591,27,0.697,48,1.012,65,2.723,73,0.779,77,1.167,84,0.136,85,0.004,86,0.006,87,0.004,88,0.059,100,0.846,104,0.717,106,1.962,111,0.606,113,1.03,115,1.004,118,1.238,119,0.891,137,1.041,138,1.5,159,1.281,160,2.727,165,0.378,184,0.846,190,1.097,198,1.536,202,0.782,203,0.975,204,1.639,205,1.097,206,1.243,207,1.097,208,1.004,212,1.3,213,2.375,214,0.921,215,1.857,216,1.857,217,2.769,218,2.994,219,2.863,220,1.857,222,1.857,234,2.635,244,4.267,250,1.769,254,1.647,270,1.243,271,0.312,274,1.536,275,1.598,279,0.87,286,2.023,310,2.488,314,0.846,315,1.544,316,1.5,317,0.87,318,2.243,319,1.131,320,1.004,321,2.023,322,0.975,323,1.131,324,1.131,325,1.934,326,1.131,327,1.004,328,1.131,329,0.975,330,1.131,331,0.975,332,1.131,333,0.975,334,0.716,335,1.131,336,1.004,337,1.69,338,1.065,339,1.004,340,1.131,341,0.975,342,1.131,343,0.975,344,1.131,345,0.975,346,1.131,347,1.004,348,1.69,349,1.065,350,0.975,351,0.975,352,1.131,353,1.004,354,1.69,355,1.065,356,1.004,357,0.757,358,0.975,359,1.004,360,0.975,361,0.975,362,1.131,363,0.975,364,1.131,365,0.975,366,1.131,367,1.034,368,1.097,369,1.131,375,3.84,377,4.443,379,3.84,380,3.84,382,3.208,383,4.26,387,2.736,388,2.778,391,3.208,402,3.84,411,3.84,412,3.022,413,3.208,415,3.84,416,3.208,418,2.148,419,1.598,420,1.666,421,1.666,422,1.917,423,1.823,424,1.598,436,2.298,438,2.298,439,2.148,440,2.298,441,2.148,443,3.208,445,2.863,446,3.022,449,2.767,452,2.298,453,2.148,463,3.208,541,5.04,543,3.208,544,4.505,548,3.451,587,2.736,588,5.573,589,4.656,590,4.668,591,4.656,592,3.712,593,4.656,594,4.656,595,4.656,596,4.656,597,3.117,598,4.656,599,3.117,600,4.656,601,3.117,602,3.117,603,3.117,604,4.656,605,3.117,606,3.117,607,3.117,608,3.117,609,3.117,610,3.117,611,6.181,612,6.94,613,3.117,614,3.117,615,3.117,616,2.023,617,4.892,618,3.117,619,3.117,620,2.736,621,3.117,622,3.117,623,3.117,624,3.117,625,4.656,626,3.117,627,3.117,628,4.087,629,3.117,630,3.117,631,2.736,632,3.117,633,3.117,634,3.117,635,3.117,636,3.117,637,3.117,638,3.117,639,1.375,640,5.573,641,3.117,642,3.117,643,3.117,644,2.736,645,2.736,646,3.117,647,3.117,648,4.656,649,3.117,650,3.117,651,4.656,652,3.117,653,6.181,654,6.181,655,6.181,656,6.181,657,4.656,658,2.6,659,4.656,660,2.736,661,2.298,662,3.117]],["title/modules/AdminModule.html",[471,1.117,663,3.119]],["body/modules/AdminModule.html",[3,0.134,4,0.105,5,0.076,24,0.011,83,1.231,84,0.134,85,0.007,86,0.008,87,0.007,88,0.105,165,0.439,168,1.87,271,0.551,314,1.495,325,2.588,419,2.823,420,2.942,421,2.942,471,1.454,473,1.998,474,2.713,475,4.017,476,2.823,477,2.942,482,4.075,484,3.681,485,2.942,486,2.611,488,2.839,489,4.029,490,3.074,492,3.221,494,3.221,501,4.471,502,4.746,505,4.746,506,4.235,507,3.386,508,4.471,509,3.574,510,3.221,511,4.235,512,3.386,513,4.235,514,3.386,515,4.471,516,3.574,522,4.746,523,3.574,663,6.352,664,4.833,665,4.833,666,4.833,667,5.7,668,5.506,669,5.506,670,4.833]],["title/modules/AdminRoutingModule.html",[471,1.117,667,2.916]],["body/modules/AdminRoutingModule.html",[3,0.158,4,0.123,5,0.089,24,0.011,74,1.484,83,1.443,84,0.158,85,0.008,86,0.009,87,0.008,88,0.123,165,0.403,168,1.753,202,0.906,271,0.646,276,2.343,325,2.374,473,2.343,488,3.127,533,3.777,534,3.821,535,4.236,536,3.777,540,3.97,667,5.228,670,5.667,671,6.456]],["title/components/AppComponent.html",[202,0.594,327,1.363]],["body/components/AppComponent.html",[3,0.087,4,0.068,5,0.049,8,1.215,10,0.306,11,0.865,12,0.84,21,0.599,23,0.693,24,0.011,25,1.219,26,1.791,27,0.797,48,1.434,54,3.007,60,1.423,73,1.647,74,1.673,77,1.924,84,0.087,85,0.004,86,0.006,87,0.004,88,0.068,100,0.969,104,0.791,106,2.461,111,0.999,113,0.998,115,1.149,118,0.917,119,0.779,137,0.744,138,2.124,147,2.63,165,0.33,184,0.969,190,2.563,202,0.846,203,1.116,204,1.81,205,1.256,206,1.423,207,1.256,208,1.149,212,1.436,213,2.569,214,1.054,215,2.051,216,2.051,217,2.804,218,3.038,220,2.051,222,2.051,234,2.811,250,1.181,270,1.423,271,0.357,275,1.829,279,1.952,298,2.747,314,0.969,315,1.705,316,1.656,317,0.996,318,2.393,319,1.295,320,1.149,321,2.187,322,1.116,323,1.295,324,1.295,325,1.116,326,1.295,327,2.124,328,1.295,329,1.116,330,1.295,331,1.116,332,1.295,333,1.116,334,1.181,335,1.295,336,1.149,337,1.866,338,1.219,339,1.149,340,1.295,341,1.116,342,1.295,343,1.116,344,1.295,345,1.116,346,1.295,347,1.149,348,1.866,349,1.219,350,1.116,351,1.116,352,1.295,353,1.149,354,1.866,355,1.219,356,1.149,357,1.249,358,1.116,359,1.149,360,1.116,361,1.116,362,1.295,363,1.116,364,1.295,365,1.116,366,1.295,367,1.183,368,1.256,369,1.295,388,2.899,424,1.829,427,3.542,428,2.194,432,2.63,434,3.161,661,3.789,672,3.131,673,2.438,674,6.026,675,5.14,676,5.29,677,5.29,678,5.29,679,6.026,680,5.14,681,4.512,682,5.14,683,5.14,684,2.844,685,4.477,686,4.614,687,4.614,688,7.504,689,5.14,690,5.14,691,4.055,692,3.567,693,6.594,694,3.567,695,3.567,696,3.567,697,3.567,698,5.14,699,3.567,700,2.316,701,5.14,702,4.512,703,4.512,704,3.567,705,3.161,706,3.567,707,4.153,708,3.567,709,3.131,710,3.131,711,2.844,712,2.316,713,3.567,714,3.567,715,3.567,716,2.844,717,2.63,718,2.458,719,3.567,720,3.567,721,3.567,722,2.844,723,3.131,724,2.316,725,3.567,726,3.567,727,3.131,728,3.567,729,2.316,730,2.844,731,3.567,732,3.567,733,3.567,734,3.131,735,3.567,736,3.567,737,3.567,738,3.131,739,3.567,740,2.194,741,4.153,742,2.844,743,2.458,744,2.844,745,2.844,746,2.844,747,3.131,748,3.131,749,3.567,750,4.512,751,3.131,752,4.512,753,3.131,754,3.567,755,3.567,756,3.567,757,3.567,758,5.14,759,3.567,760,3.567,761,3.567,762,1.906,763,3.567]],["title/modules/AppModule.html",[471,1.117,764,3.119]],["body/modules/AppModule.html",[3,0.116,4,0.091,5,0.066,24,0.011,83,1.067,84,0.116,85,0.006,86,0.008,87,0.006,88,0.091,139,2.401,148,2.106,165,0.434,168,1.707,171,1.968,172,2.352,271,0.478,274,2.352,314,1.296,327,2.75,419,2.447,471,1.261,473,1.733,474,2.352,475,3.755,476,3.602,477,3.755,482,3.925,484,3.359,485,2.551,486,2.264,488,2.591,492,2.793,494,2.793,501,4.08,711,3.806,712,3.099,764,6.463,765,4.19,766,4.19,767,4.19,768,4.19,769,4.19,770,5.489,771,5.489,772,5.272,773,5.489,774,5.489,775,4.774,776,6.285,777,5.011,778,2.666,779,5.011,780,4.774,781,4.774,782,6.285,783,4.774,784,5.953,785,6.285,786,2.551,787,4.633,788,4.331,789,4.19,790,4.774,791,3.806,792,3.806,793,4.774,794,5.011,795,3.806,796,4.774,797,4.774,798,4.774,799,4.774,800,4.19,801,4.774,802,4.774,803,4.774,804,4.774,805,4.774,806,4.774,807,4.774,808,4.774,809,5.504,810,5.953,811,5.602]],["title/modules/AppRoutingModule.html",[471,1.117,770,2.916]],["body/modules/AppRoutingModule.html",[3,0.148,4,0.116,5,0.084,24,0.011,74,1.397,83,1.359,84,0.148,85,0.007,86,0.009,87,0.007,88,0.116,139,2.076,165,0.393,168,1.65,271,0.608,276,2.206,473,2.206,488,3.016,533,3.555,534,3.724,535,4.086,536,4.593,537,4.188,538,4.188,539,3.945,770,5.043,788,5.043,789,5.335,812,6.078,813,7.318,814,4.48,815,6.424,816,6.078,817,6.078,818,6.078,819,6.078,820,4.846,821,6.078,822,6.078,823,6.078]],["title/components/AuthComponent.html",[202,0.594,329,1.324]],["body/components/AuthComponent.html",[3,0.086,4,0.067,5,0.049,8,1.203,10,0.302,11,0.857,12,0.832,21,0.621,23,0.684,24,0.011,27,0.787,48,1.3,60,1.404,73,1.494,74,1.506,84,0.086,85,0.004,86,0.006,87,0.004,88,0.067,100,0.956,104,0.784,106,2.745,111,0.989,113,1.023,115,1.134,118,0.908,119,0.775,137,1.007,138,2.334,139,1.739,148,3.068,159,1.17,165,0.374,184,1.382,190,1.792,202,0.84,203,1.101,204,1.792,205,1.239,206,1.404,207,1.239,208,1.134,212,1.422,213,2.549,214,1.04,215,2.03,216,2.03,217,2.801,218,3.033,220,2.03,222,2.03,227,4.408,234,2.793,238,3.752,243,5.509,245,3.994,250,1.506,252,4.121,254,1.936,257,4.275,270,1.404,271,0.352,272,2.594,273,1.881,274,1.734,275,1.804,276,1.277,279,2.303,281,2.594,282,2.594,312,3.304,314,0.956,315,1.688,316,1.926,317,0.983,318,2.378,319,1.277,320,1.134,321,2.17,322,1.101,323,1.277,324,1.277,325,1.101,326,1.277,327,1.134,328,1.277,329,2.05,330,1.277,331,1.101,332,1.277,333,1.101,334,0.809,335,1.277,336,1.134,337,1.847,338,1.202,339,1.134,340,1.277,341,1.101,342,1.277,343,1.101,344,1.277,345,1.101,346,1.277,347,1.134,348,1.847,349,1.202,350,1.101,351,1.101,352,1.277,353,1.134,354,1.847,355,1.202,356,1.134,357,0.855,358,1.101,359,1.134,360,1.101,361,1.101,362,1.277,363,1.101,364,1.277,365,1.101,366,1.277,367,1.167,368,1.239,369,1.277,388,1.359,427,2.425,432,2.594,562,5.224,617,4.468,684,2.806,685,4.456,687,4.595,707,3.508,722,2.806,741,3.508,814,3.752,824,3.089,825,5.98,826,5.09,827,5.98,828,5.249,829,4.768,830,6.361,831,5.224,832,6.553,833,5.09,834,5.98,835,5.09,836,3.519,837,3.519,838,3.519,839,3.519,840,5.09,841,3.519,842,3.519,843,3.519,844,3.519,845,3.519,846,3.519,847,3.089,848,3.089,849,1.804,850,3.519,851,3.88,852,3.519,853,3.519,854,3.519,855,2.806,856,3.519,857,5.09,858,3.519,859,5.09,860,3.519,861,3.519,862,2.284,863,3.519,864,3.519,865,3.519,866,3.519,867,3.519,868,3.519,869,3.519,870,3.519,871,3.13,872,5.09,873,2.594,874,3.304,875,5.09]],["title/guards/AuthGuard.html",[788,2.916,876,2.602]],["body/guards/AuthGuard.html",[3,0.115,4,0.09,5,0.065,7,1.695,10,0.403,12,1.017,21,0.533,24,0.011,25,2.127,31,3.642,38,2.654,57,2.953,84,0.115,85,0.006,86,0.008,87,0.006,88,0.133,92,2.747,104,0.958,111,0.914,113,0.794,118,1.11,119,0.694,137,1.075,138,2.005,139,2.384,144,3.828,145,4.29,146,4.589,148,2.076,152,4.963,159,1.431,165,0.349,168,1.278,181,2.456,202,0.874,208,2.005,212,1.314,245,4.522,254,1.84,271,0.471,276,1.708,279,2.073,449,2.33,534,2.953,552,4.734,558,3.309,579,2.151,616,5.333,639,2.076,673,2.232,788,4.29,814,5.473,820,6.156,851,3.521,876,4.565,877,3.752,878,4.131,879,4.963,880,5.465,881,4.963,882,5.465,883,3.752,884,4.706,885,5.465,886,2.566,887,5.116,888,4.29,889,3.642,890,4.29,891,3.192,892,4.131,893,6.964,894,6.517,895,4.706,896,5.465,897,6.226,898,4.589,899,4.963,900,3.828,901,5.465,902,4.963,903,6.517,904,4.565,905,5.465,906,5.465,907,6.124,908,4.963,909,6.226,910,1.739,911,2.894,912,2.894,913,2.319,914,4.131,915,4.131]],["title/modules/AuthModule.html",[471,1.117,916,3.119]],["body/modules/AuthModule.html",[3,0.135,4,0.106,5,0.077,24,0.011,83,1.24,84,0.135,85,0.007,86,0.008,87,0.007,88,0.106,165,0.436,168,1.879,271,0.555,273,2.965,314,1.507,329,2.593,365,2.593,471,1.465,473,2.014,474,2.733,475,4.031,476,2.844,477,2.965,482,4.083,484,3.698,485,2.965,486,2.631,488,2.852,489,4.048,490,3.098,492,3.245,494,3.245,506,4.255,507,3.411,511,4.255,512,3.411,513,4.255,514,3.411,517,4.769,518,3.823,522,4.769,523,3.601,527,5.517,916,6.426,917,4.87,918,4.87,919,4.87,920,5.711,921,5.548,922,5.548,923,4.87,924,5.548,925,4.87]],["title/modules/AuthRoutingModule.html",[471,1.117,920,2.916]],["body/modules/AuthRoutingModule.html",[3,0.155,4,0.121,5,0.088,24,0.011,74,1.458,83,1.418,84,0.155,85,0.008,86,0.009,87,0.008,88,0.121,165,0.4,168,1.723,202,0.891,271,0.635,276,2.302,329,2.349,473,2.302,488,3.095,533,3.711,534,3.793,535,4.192,536,4.392,537,4.371,538,4.371,539,4.118,540,3.901,920,5.174,923,5.568,926,6.343]],["title/injectables/AuthService.html",[685,2.602,910,1.182]],["body/injectables/AuthService.html",[0,0.653,3,0.069,4,0.054,5,0.039,7,0.69,10,0.243,11,0.731,12,1.095,21,0.631,23,1.024,24,0.011,25,0.971,27,1.497,48,1.145,59,1.586,60,1.133,73,1.316,74,1.803,77,1.625,84,0.069,85,0.003,86,0.005,87,0.003,88,0.054,104,0.668,106,2.729,111,0.844,113,1.06,118,1.195,119,0.747,137,1.168,138,2.554,139,1.8,148,2.324,159,1.88,160,1.915,165,0.388,171,1.171,172,1.4,181,1,184,1.725,190,2.53,198,1.4,250,1.781,271,0.284,279,2.099,334,1.46,388,2.692,425,1.586,427,1.958,428,3.239,430,1.662,432,2.094,433,2.494,486,1.347,547,1.844,558,2.498,559,2.094,576,3.63,579,1.299,658,3.293,660,3.81,673,1.347,685,2.669,687,4.285,722,2.265,738,2.494,743,2.991,786,1.518,795,2.265,814,2.094,830,5.177,847,2.494,848,2.494,849,1.456,851,3.408,862,1.844,871,1.747,873,3.883,882,2.494,910,1.212,913,1.4,914,2.494,927,1.4,928,2.494,929,4.119,930,4.624,931,5.268,932,5.268,933,4.341,934,5.898,935,5.898,936,5.898,937,5.898,938,5.898,939,5.898,940,5.898,941,4.347,942,5.898,943,5.177,944,4.341,945,4.341,946,4.341,947,4.341,948,2.265,949,5.34,950,4.341,951,4.341,952,2.841,953,2.841,954,2.841,955,2.841,956,2.841,957,2.841,958,2.841,959,2.841,960,2.841,961,2.841,962,2.841,963,2.841,964,4.341,965,2.841,966,4.341,967,4.341,968,2.841,969,5.268,970,4.341,971,2.841,972,4.341,973,2.841,974,3.461,975,2.841,976,2.841,977,4.683,978,3.81,979,2.841,980,4.341,981,2.841,982,2.841,983,4.341,984,2.841,985,2.841,986,2.265,987,2.841,988,1.958,989,2.494,990,3.81,991,2.494,992,2.841,993,2.494,994,2.841,995,2.841,996,5.177,997,3.81,998,2.494,999,4.341,1000,4.341,1001,3.81,1002,4.341,1003,2.669,1004,4.341,1005,4.624,1006,4.341,1007,2.841,1008,4.341,1009,2.494,1010,2.841,1011,2.841,1012,2.841,1013,2.494,1014,2.494,1015,2.841,1016,2.841,1017,5.898,1018,3.81,1019,2.841,1020,2.841,1021,2.841,1022,2.841,1023,4.341,1024,2.841,1025,2.841,1026,2.494,1027,2.841,1028,2.841,1029,2.841,1030,4.341,1031,2.841,1032,2.841,1033,4.702,1034,2.841,1035,2.494,1036,2.841,1037,1.958,1038,2.841,1039,4.341,1040,4.341,1041,2.841,1042,2.841,1043,1.958,1044,2.841,1045,2.841,1046,4.341,1047,2.841,1048,4.341,1049,2.494,1050,2.841,1051,2.841,1052,4.341,1053,2.841,1054,2.841,1055,1.586,1056,2.841,1057,2.841,1058,3.81,1059,2.094,1060,3.461,1061,4.341,1062,4.341,1063,2.841,1064,2.841,1065,4.2,1066,2.841,1067,2.841,1068,2.494,1069,2.841,1070,2.841,1071,2.841,1072,2.841,1073,2.841,1074,2.841,1075,2.494,1076,2.841,1077,2.841,1078,2.094,1079,2.841,1080,2.841,1081,2.841,1082,2.841,1083,2.841]],["title/injectables/BlockSyncService.html",[910,1.182,1084,3.119]],["body/injectables/BlockSyncService.html",[3,0.084,4,0.066,5,0.048,10,0.295,11,0.842,12,1.175,21,0.652,23,1.551,24,0.011,26,2.346,48,1.283,72,2.566,73,1.474,74,1.748,77,2.427,84,0.084,85,0.004,86,0.006,87,0.004,88,0.066,100,1.359,104,0.771,106,2.81,111,0.973,113,0.989,118,1.282,119,0.801,121,3.065,137,1.041,138,2.449,159,0.79,165,0.388,169,2.012,170,2.37,171,1.418,172,1.694,179,2.232,184,2.015,190,1.762,250,1.49,271,0.344,279,1.398,298,2.675,300,3.25,357,1.216,388,2.867,423,2.012,424,1.763,425,1.92,445,3.078,446,3.25,563,2.012,673,1.631,677,5.181,678,5.181,686,4.421,712,3.25,717,2.535,849,1.763,910,1.398,913,1.694,927,1.694,941,4.778,1084,3.69,1085,6.914,1086,3.019,1087,5.006,1088,5.006,1089,5.006,1090,5.902,1091,5.902,1092,3.439,1093,5.006,1094,5.006,1095,6.062,1096,5.715,1097,3.439,1098,3.831,1099,5.006,1100,4.697,1101,5.902,1102,3.439,1103,3.439,1104,5.006,1105,5.902,1106,3.439,1107,2.795,1108,3.439,1109,6.482,1110,3.439,1111,3.439,1112,6.482,1113,6.482,1114,6.482,1115,7.604,1116,6.482,1117,6.482,1118,3.439,1119,3.453,1120,3.439,1121,3.439,1122,2.37,1123,2.012,1124,3.439,1125,2.232,1126,2.742,1127,3.439,1128,3.439,1129,3.439,1130,5.902,1131,3.439,1132,3.439,1133,5.006,1134,2.742,1135,3.439,1136,3.439,1137,3.439,1138,5.006,1139,3.439,1140,3.439,1141,3.439,1142,3.439,1143,3.439,1144,3.019,1145,3.019,1146,3.439,1147,5.006,1148,5.006,1149,3.439,1150,5.006,1151,3.439,1152,3.439,1153,5.006,1154,3.439,1155,5.006,1156,5.006,1157,2.742,1158,5.006,1159,3.019,1160,3.439,1161,3.019,1162,3.019,1163,3.439,1164,3.439,1165,3.439,1166,3.439,1167,3.439,1168,3.439,1169,3.439,1170,5.006,1171,3.439,1172,3.439,1173,4.394,1174,5.006,1175,3.439,1176,3.439,1177,3.439,1178,5.006,1179,3.439,1180,3.439,1181,3.439,1182,3.439,1183,3.439,1184,3.439,1185,3.439]],["title/interfaces/Conversion.html",[0,0.973,762,2.261]],["body/interfaces/Conversion.html",[0,1.885,1,3.835,2,1.815,3,0.107,4,0.084,5,0.061,7,1.07,8,1.708,9,1.648,10,0.51,11,1.002,21,0.703,23,1.611,24,0.011,25,2.47,26,2.272,27,1.907,38,3.594,48,0.957,64,2.47,80,2.169,83,0.984,84,0.107,85,0.005,86,0.007,87,0.005,117,2.708,119,0.664,121,3.318,165,0.22,254,1.301,357,2.141,449,1.648,762,4.472,871,4.149,904,2.708,1107,4.672,1186,3.034,1187,5.328,1188,5.328,1189,5.328,1190,4.981,1191,4.981,1192,5.325,1193,5.328,1194,5.328,1195,5.204,1196,5.328,1197,5.328,1198,3.246,1199,4.38,1200,4.149,1201,2.459,1202,3.246,1203,3.034,1204,3.246,1205,2.858,1206,2.858,1207,2.459,1208,3.246,1209,3.246,1210,3.034,1211,3.182]],["title/components/CreateAccountComponent.html",[202,0.594,331,1.324]],["body/components/CreateAccountComponent.html",[3,0.078,4,0.061,5,0.044,8,1.9,10,0.275,11,0.8,12,0.524,15,4.833,17,4.464,19,3.739,21,0.682,24,0.011,25,1.625,26,2.104,27,0.717,28,3.668,44,2.656,48,1.034,67,2.766,73,1.188,84,0.078,85,0.004,86,0.006,87,0.004,88,0.061,94,3.088,100,0.871,104,0.732,106,1.996,111,0.924,113,1.003,115,2.563,118,0.572,119,0.699,137,0.689,138,1.532,139,1.096,148,2.501,159,1.093,160,3.29,165,0.335,184,1.292,190,1.129,202,0.796,203,1.004,204,1.675,205,1.129,206,1.28,207,1.129,208,1.033,212,1.328,213,2.416,214,0.948,215,1.897,216,1.897,217,2.777,218,3.004,220,1.897,222,1.897,227,4.178,234,2.673,238,3.506,242,2.558,243,5.17,244,4.464,250,1.093,252,3.906,254,1.406,257,4.117,270,1.28,271,0.321,272,2.365,273,1.714,274,1.58,275,1.644,279,1.583,281,2.365,282,5.712,284,2.816,286,2.082,300,3.088,310,2.542,311,4.553,312,5.459,314,0.871,315,1.578,316,1.532,317,0.896,318,2.275,319,1.164,320,1.033,321,2.057,322,1.004,323,1.164,324,1.164,325,1.004,326,1.164,327,1.033,328,1.164,329,1.004,330,1.164,331,1.962,332,1.164,333,1.004,334,0.737,335,1.164,336,1.033,337,1.726,338,1.096,339,1.033,340,1.164,341,1.004,342,1.164,343,1.004,344,1.164,345,1.004,346,1.164,347,1.033,348,1.726,349,1.096,350,1.004,351,1.004,352,1.164,353,1.033,354,1.726,355,1.096,356,1.033,357,0.779,358,1.004,359,1.033,360,1.004,361,1.004,362,1.164,363,1.004,364,1.164,365,1.004,366,1.164,367,1.064,368,1.129,369,1.164,374,3.906,423,1.876,424,1.644,443,3.278,444,2.558,445,2.925,446,3.088,447,2.816,461,4.976,462,5.17,499,5.866,829,4.519,831,4.999,855,3.792,1212,6.985,1213,2.816,1214,5.668,1215,4.756,1216,3.906,1217,4.178,1218,5.668,1219,4.178,1220,5.668,1221,5.351,1222,4.756,1223,3.208,1224,3.208,1225,3.208,1226,3.208,1227,3.208,1228,3.208,1229,3.208,1230,3.208,1231,3.208,1232,3.208,1233,3.208,1234,3.208,1235,3.208,1236,5.668,1237,3.208,1238,6.696,1239,3.208,1240,3.208,1241,3.208,1242,3.208,1243,4.756,1244,3.208,1245,3.208,1246,3.208,1247,2.816,1248,3.208,1249,3.208,1250,3.208,1251,3.208,1252,4.07,1253,4.756,1254,3.506,1255,4.756,1256,5.503,1257,5.503,1258,4.756,1259,4.175]],["title/classes/CustomErrorStateMatcher.html",[88,0.081,257,2.602]],["body/classes/CustomErrorStateMatcher.html",[3,0.126,4,0.098,5,0.071,7,1.603,10,0.441,12,0.841,21,0.441,24,0.011,48,1.435,74,1.183,84,0.126,85,0.006,86,0.008,87,0.006,88,0.098,90,2.536,104,1.016,113,0.657,118,0.918,119,0.574,137,0.956,139,2.255,144,4.058,145,4.548,159,1.183,165,0.33,181,2.323,207,2.323,212,1.843,252,4.548,254,2.153,257,4.058,273,2.75,316,2.126,334,1.868,449,2.47,523,3.341,616,4.284,1049,6.745,1098,5.277,1260,5.793,1261,4.517,1262,4.284,1263,4.548,1264,5.793,1265,6.326,1266,6.599,1267,6.599,1268,6.599,1269,5.793,1270,4.548,1271,7.285,1272,6.599,1273,6.599,1274,7.684,1275,7.684,1276,7.684,1277,5.146,1278,4.725,1279,5.602,1280,6.59,1281,6.599,1282,5.793,1283,5.793,1284,6.599,1285,6.599,1286,6.599,1287,5.146,1288,5.146,1289,5.146,1290,5.146]],["title/classes/CustomValidator.html",[88,0.081,1291,3.374]],["body/classes/CustomValidator.html",[3,0.116,4,0.09,5,0.066,7,1.702,10,0.406,12,1.023,21,0.536,23,1.361,24,0.011,48,1.36,64,2.138,74,1.61,84,0.116,85,0.006,86,0.008,87,0.006,88,0.09,90,2.337,92,2.761,99,3.661,104,1.146,113,0.798,118,1.116,119,0.698,137,1.014,139,1.62,144,4.579,150,4.989,159,1.779,165,0.237,181,2.466,250,1.438,254,1.402,273,2.535,334,1.779,510,4.814,851,2.249,1055,4.44,1060,5.937,1098,4.834,1252,4.062,1262,4.062,1264,5.493,1265,6.066,1278,4.579,1280,6.172,1282,6.979,1291,4.989,1292,4.163,1293,5.493,1294,4.312,1295,5.861,1296,6.258,1297,6.258,1298,6.258,1299,7.741,1300,4.743,1301,7.447,1302,6.066,1303,6.258,1304,7.951,1305,5.493,1306,6.258,1307,7.003,1308,7.951,1309,4.743,1310,7.447,1311,7.447,1312,6.258,1313,7.447,1314,5.493,1315,4.743,1316,6.258,1317,4.743,1318,4.743,1319,4.743,1320,4.743,1321,4.743]],["title/components/ErrorDialogComponent.html",[202,0.594,333,1.324]],["body/components/ErrorDialogComponent.html",[3,0.117,4,0.091,5,0.066,8,1.489,9,2.799,10,0.411,11,1.06,12,0.783,21,0.54,24,0.011,27,1.071,60,2.514,84,0.117,85,0.006,86,0.008,87,0.006,88,0.091,100,1.302,105,3.106,111,0.931,113,0.804,115,1.544,118,0.855,119,0.834,165,0.315,202,0.988,203,1.5,204,2.218,205,1.687,206,1.912,207,1.687,208,1.544,214,1.416,215,2.514,216,2.514,217,2.868,218,3.118,220,2.514,222,2.514,270,1.912,271,0.48,314,1.302,315,2.09,316,2.03,317,1.339,318,2.714,319,1.74,320,1.544,321,2.555,322,1.5,323,1.74,324,1.74,325,1.5,326,1.74,327,1.544,328,1.74,329,1.5,330,1.74,331,1.5,332,1.74,333,2.34,334,1.896,335,1.74,336,1.544,337,2.287,338,1.638,339,1.544,340,1.74,341,1.5,342,1.74,343,1.5,344,1.74,345,1.5,346,1.74,347,1.544,348,2.287,349,1.638,350,1.5,351,1.5,352,1.74,353,1.544,354,2.287,355,1.638,356,1.544,357,1.164,358,1.5,359,1.544,360,1.5,361,1.5,362,1.74,363,1.5,364,1.74,365,1.5,366,1.74,367,1.59,368,1.687,369,1.74,412,3.111,449,2.359,1322,6.179,1323,5.189,1324,4.207,1325,5.024,1326,7.04,1327,6.301,1328,4.793,1329,4.793,1330,4.793,1331,4.793,1332,4.793,1333,4.793,1334,3.821,1335,4.793,1336,6.301,1337,6.301]],["title/injectables/ErrorDialogService.html",[687,2.602,910,1.182]],["body/injectables/ErrorDialogService.html",[3,0.138,4,0.107,5,0.078,9,2.618,10,0.484,11,1.177,12,1.143,21,0.651,24,0.011,48,1.227,73,1.41,74,1.297,84,0.138,85,0.007,86,0.009,87,0.007,88,0.107,104,1.077,105,3.603,111,1.097,113,1.014,118,1.247,119,0.78,137,0.817,139,1.928,148,3.505,159,1.297,165,0.38,254,2.067,271,0.565,333,1.766,661,4.16,673,2.676,687,4.301,910,1.953,913,2.78,927,2.78,1323,4.16,1325,6.334,1334,4.499,1338,7.169,1339,4.953,1340,7.6,1341,6.994,1342,5.643,1343,8.167,1344,6.994,1345,6.994,1346,5.643,1347,5.643,1348,6.994,1349,4.953,1350,4.953,1351,5.643,1352,7.6,1353,5.643,1354,5.643,1355,5.643,1356,5.643]],["title/interceptors/ErrorInterceptor.html",[771,2.916,1357,2.475]],["body/interceptors/ErrorInterceptor.html",[3,0.105,4,0.082,5,0.059,7,1.62,10,0.369,12,1.17,21,0.502,23,0.836,24,0.011,25,2.278,60,1.717,70,3.274,84,0.105,85,0.005,86,0.007,87,0.005,88,0.082,92,3.411,100,1.169,104,0.903,111,1.139,113,0.748,118,1.046,119,0.654,137,0.849,159,1.533,165,0.387,167,2.206,168,1.592,181,2.638,212,1.202,245,4.303,271,0.431,275,2.206,276,1.562,279,1.862,334,1.851,388,3.11,424,2.206,430,3.43,558,3.396,563,4.522,579,1.968,687,4.864,710,3.778,771,4.041,786,2.3,886,3.187,887,4.041,888,4.041,889,3.43,890,4.041,891,3.671,910,1.637,911,2.647,912,2.647,1018,3.778,1058,3.778,1123,2.518,1269,5.147,1302,5.278,1314,5.147,1325,4.675,1357,3.43,1358,3.173,1359,3.778,1360,5.278,1361,3.806,1362,5.699,1363,4.71,1364,6.086,1365,4.322,1366,4.304,1367,4.304,1368,4.041,1369,5.147,1370,3.43,1371,4.322,1372,5.278,1373,5.278,1374,4.304,1375,4.322,1376,4.322,1377,4.935,1378,4.322,1379,5.863,1380,4.675,1381,3.173,1382,4.322,1383,3.778,1384,4.304,1385,4.304,1386,6.669,1387,5.863,1388,3.173,1389,4.304,1390,4.304,1391,5.863,1392,2.966,1393,4.304,1394,4.304,1395,5.147,1396,4.304,1397,3.806,1398,3.778,1399,4.304,1400,4.304,1401,4.304,1402,5.863,1403,4.304,1404,4.304,1405,3.778,1406,4.675,1407,4.304,1408,4.304,1409,5.863,1410,4.304,1411,4.304,1412,4.304,1413,3.431,1414,3.778,1415,4.304,1416,4.304]],["title/components/FooterComponent.html",[202,0.594,336,1.363]],["body/components/FooterComponent.html",[3,0.118,4,0.092,5,0.067,8,1.501,10,0.416,11,1.069,24,0.011,27,1.084,48,1.055,73,1.212,84,0.118,85,0.006,86,0.008,87,0.006,88,0.092,100,1.317,104,0.978,111,1.376,113,0.903,115,1.562,119,0.789,137,0.702,165,0.243,184,1.725,202,0.994,203,1.518,204,2.236,205,1.708,206,1.935,207,1.708,208,1.562,212,1.774,213,3.018,214,1.433,215,2.533,216,2.533,217,2.87,218,3.121,220,2.533,222,2.533,234,3.202,250,1.46,270,1.935,271,0.485,314,1.317,315,2.107,316,2.046,317,1.355,318,2.727,319,1.76,320,1.562,321,2.57,322,1.518,323,1.76,324,1.76,325,1.518,326,1.76,327,1.562,328,1.76,329,1.518,330,1.76,331,1.518,332,1.76,333,1.518,334,1.115,335,1.76,336,2.42,337,2.305,338,1.657,339,1.562,340,1.76,341,1.518,342,1.76,343,1.518,344,1.76,345,1.518,346,1.76,347,1.562,348,2.305,349,1.657,350,1.518,351,1.518,352,1.76,353,1.562,354,2.305,355,1.657,356,1.562,357,1.178,358,1.518,359,1.562,360,1.518,361,1.518,362,1.76,363,1.518,364,1.76,365,1.518,366,1.76,367,1.609,368,1.708,369,1.76,1417,4.258,1418,4.681,1419,7.081,1420,6.351,1421,7.798,1422,6.351,1423,4.851,1424,6.351,1425,5.575,1426,5.575,1427,5.575]],["title/components/FooterStubComponent.html",[202,0.594,338,1.446]],["body/components/FooterStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.564,24,0.011,27,1.155,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.404,115,1.665,119,0.814,165,0.259,202,1.117,203,1.617,204,2.33,205,2.57,207,1.82,208,1.665,214,1.527,217,2.887,218,3.143,271,0.517,314,1.404,315,2.195,316,2.132,317,1.443,318,2.793,319,1.876,320,1.665,321,2.649,322,1.617,323,1.876,324,1.876,325,1.617,326,1.876,327,1.665,328,1.876,329,1.617,330,1.876,331,1.617,332,1.876,333,1.617,334,1.188,335,1.876,336,1.665,337,2.402,338,2.629,339,1.665,340,1.876,341,1.617,342,1.876,343,1.617,344,1.876,345,1.617,346,1.876,347,1.665,348,2.402,349,2.261,350,1.617,351,1.617,352,1.876,353,1.665,354,2.402,355,2.261,356,1.665,357,1.256,358,1.617,359,1.665,360,1.617,361,1.617,362,1.876,363,1.617,364,1.876,365,1.617,366,1.876,367,1.714,368,1.82,369,1.876,471,1.365,553,2.886,740,3.178,1418,4.878,1428,3.81,1429,3.81]],["title/injectables/GlobalErrorHandler.html",[772,2.747,910,1.182]],["body/injectables/GlobalErrorHandler.html",[3,0.083,4,0.065,5,0.047,7,1.799,10,0.292,11,0.838,12,1.056,21,0.69,23,1.475,24,0.011,26,1.352,48,0.742,60,2.344,69,3.232,70,1.906,73,0.853,74,1.485,84,0.143,85,0.004,86,0.006,87,0.004,88,0.112,92,3.164,101,2.216,104,0.766,105,1.506,111,0.663,113,0.876,118,1.152,119,0.72,137,0.935,139,2.207,144,3.061,148,1.506,159,1.144,160,2.85,165,0.323,167,1.75,168,0.927,181,2.606,184,0.927,245,4.055,250,1.485,254,1.909,271,0.342,276,1.239,279,2.068,334,2.044,388,2.86,430,2.912,449,2.841,552,4.195,639,1.506,730,2.721,772,3.232,779,5.15,786,1.824,849,1.75,862,3.815,886,2.662,887,3.431,888,3.431,889,2.912,890,3.431,891,3.311,910,1.39,927,1.682,1033,2.721,1059,4.761,1252,3.232,1302,5.286,1361,3.232,1363,2.912,1368,3.431,1370,2.912,1380,3.969,1388,4.332,1397,3.815,1430,5.286,1431,2.516,1432,4.37,1433,4.37,1434,4.37,1435,4.37,1436,6.029,1437,5.158,1438,4.978,1439,6.661,1440,4.978,1441,2.996,1442,4.978,1443,4.37,1444,4.37,1445,3.413,1446,3.969,1447,3.67,1448,5.67,1449,5.15,1450,5.67,1451,5.15,1452,4.37,1453,3.413,1454,5.67,1455,5.158,1456,4.37,1457,4.37,1458,5.158,1459,4.37,1460,3.413,1461,3.969,1462,4.37,1463,3.969,1464,4.37,1465,3.969,1466,4.37,1467,4.37,1468,2.996,1469,2.996,1470,2.516,1471,2.996,1472,2.996,1473,2.996,1474,2.996,1475,2.996,1476,2.996,1477,4.37,1478,2.996,1479,4.37,1480,2.721,1481,2.996,1482,2.996,1483,2.996,1484,2.996,1485,2.996,1486,2.996,1487,2.996,1488,2.996,1489,2.996,1490,2.996,1491,2.996,1492,2.996,1493,4.37,1494,2.721,1495,2.996,1496,2.996,1497,2.996,1498,2.352,1499,2.721,1500,4.37,1501,2.996]],["title/interceptors/HttpConfigInterceptor.html",[773,2.916,1357,2.475]],["body/interceptors/HttpConfigInterceptor.html",[3,0.128,4,0.1,5,0.073,7,1.626,10,0.451,12,1.203,21,0.451,23,1.022,24,0.011,27,1.645,74,1.209,84,0.128,85,0.006,86,0.008,87,0.006,88,0.1,104,1.03,111,1.43,113,0.854,118,0.938,119,0.586,137,0.969,159,1.209,165,0.368,168,1.428,181,2.355,212,1.469,271,0.526,430,3.914,558,3.49,563,4.782,579,2.404,773,4.611,786,2.81,910,1.869,911,3.233,912,3.233,993,4.616,998,4.616,1357,3.914,1358,3.876,1360,5.709,1361,4.343,1362,6.026,1363,5.004,1364,6.346,1365,4.932,1368,4.611,1371,4.932,1372,5.709,1373,5.709,1375,4.932,1376,4.932,1377,4.611,1378,4.932,1381,3.876,1382,4.932,1502,6.459,1503,4.616,1504,6.691,1505,5.873,1506,5.258,1507,6.691,1508,5.258,1509,5.873,1510,5.258,1511,5.258,1512,4.192]],["title/classes/HttpError.html",[88,0.081,862,2.747]],["body/classes/HttpError.html",[3,0.092,4,0.072,5,0.052,7,1.514,10,0.325,11,0.904,12,0.62,21,0.637,23,1.517,24,0.011,26,1.943,60,2.854,69,2.461,70,2.998,74,1.558,84,0.152,85,0.005,86,0.007,87,0.005,88,0.129,90,1.868,92,2.75,101,2.461,105,2.75,111,0.737,113,0.685,118,0.676,119,0.423,137,0.549,139,2.13,144,2.331,148,1.673,159,1.234,160,2.369,165,0.339,167,1.944,168,1.03,181,2.69,184,1.03,245,3.623,250,1.234,254,1.842,271,0.379,276,1.376,279,1.741,334,2.041,388,2.619,430,2.218,449,3.124,552,4.346,639,1.673,730,3.023,772,2.461,779,4.97,786,2.026,849,1.944,862,4.645,886,2.213,887,2.613,888,2.613,889,2.218,890,2.613,891,2.752,910,1.499,1033,3.023,1059,4.997,1252,4.401,1302,4.595,1361,2.461,1363,3.646,1368,2.613,1370,2.218,1380,4.28,1388,4.595,1397,4.645,1430,4.595,1431,2.795,1432,3.328,1433,3.328,1434,3.328,1435,3.328,1436,6.281,1437,3.328,1439,6.522,1443,3.328,1444,3.328,1446,3.023,1447,2.795,1448,4.713,1449,4.28,1450,4.713,1451,4.28,1452,3.328,1454,4.713,1455,4.713,1456,3.328,1457,3.328,1458,4.713,1459,3.328,1461,3.023,1462,3.328,1463,3.023,1464,3.328,1465,3.023,1466,3.328,1467,3.328,1468,4.713,1469,4.713,1470,3.958,1471,4.713,1472,3.328,1473,3.328,1474,3.328,1475,3.328,1476,3.328,1477,4.713,1478,3.328,1479,4.713,1480,3.023,1481,3.328,1482,3.328,1483,3.328,1484,3.328,1485,3.328,1486,3.328,1487,3.328,1488,3.328,1489,3.328,1490,3.328,1491,3.328,1492,3.328,1493,4.713,1494,3.023,1495,3.328,1496,3.328,1497,3.328,1498,2.613,1499,3.023,1500,4.713,1501,3.328,1513,5.369]],["title/injectables/KeystoreService.html",[910,1.182,988,2.916]],["body/injectables/KeystoreService.html",[3,0.145,4,0.113,5,0.082,10,0.509,11,1.214,21,0.509,24,0.011,84,0.145,85,0.007,86,0.009,87,0.007,88,0.113,104,1.111,105,2.62,106,2.737,111,1.511,113,0.992,137,0.86,138,2.324,159,1.787,165,0.361,184,1.96,190,2.091,271,0.594,279,2.171,673,2.816,794,5.753,795,4.734,910,2.015,913,2.926,927,2.926,929,5.181,988,4.973,990,5.213,1075,5.213,1295,6.21,1514,5.213,1515,8.086,1516,7.216,1517,5.938,1518,5.938,1519,5.938,1520,5.938,1521,5.938,1522,7.216]],["title/injectables/LocationService.html",[910,1.182,1221,3.119]],["body/injectables/LocationService.html",[3,0.108,4,0.084,5,0.061,10,0.38,11,1.006,12,1.106,19,2.474,21,0.704,23,1.64,24,0.011,44,2.474,48,1.695,64,2.883,73,1.948,74,1.792,84,0.108,85,0.005,86,0.007,87,0.005,88,0.084,104,0.92,111,0.861,113,1.069,118,1.207,119,0.755,137,1.049,159,1.374,165,0.379,171,1.826,172,2.183,184,1.968,250,1.666,271,0.443,279,2.178,423,2.591,424,2.271,445,3.677,446,3.882,558,3.589,579,2.025,639,1.955,673,2.101,786,2.367,910,1.67,913,2.183,927,2.183,948,3.532,949,6.216,977,5.578,1216,5.373,1221,4.408,1523,3.889,1524,6.768,1525,6.768,1526,5.748,1527,6.768,1528,6.768,1529,5.979,1530,6.361,1531,5.979,1532,6.361,1533,5.979,1534,5.979,1535,4.43,1536,4.43,1537,5.979,1538,4.43,1539,4.43,1540,4.43,1541,5.979,1542,4.43,1543,5.979,1544,4.43,1545,4.43,1546,5.979,1547,4.43,1548,5.979,1549,5.979,1550,4.43,1551,4.43,1552,7.246,1553,4.43,1554,5.979,1555,6.768,1556,4.43,1557,4.43,1558,4.43,1559,4.43,1560,4.43,1561,6.768,1562,4.43,1563,4.43]],["title/interceptors/LoggingInterceptor.html",[774,2.916,1357,2.475]],["body/interceptors/LoggingInterceptor.html",[3,0.115,4,0.09,5,0.065,7,1.699,10,0.405,12,1.216,21,0.535,23,1.214,24,0.011,26,1.696,60,1.887,74,1.608,76,4.055,84,0.115,85,0.006,86,0.008,87,0.006,88,0.09,92,2.756,104,0.962,111,0.919,113,0.797,118,1.114,119,0.696,137,0.905,159,1.436,165,0.387,167,2.425,168,1.696,181,2.462,212,1.321,271,0.473,334,1.087,388,3.13,424,2.425,430,3.654,449,2.895,558,3.317,563,4.648,579,2.163,639,2.087,691,2.909,774,4.305,786,2.528,849,2.425,886,2.575,891,3.203,910,1.745,911,2.909,912,2.909,1060,3.771,1357,3.654,1358,3.487,1360,5.484,1361,4.055,1362,5.857,1363,4.811,1364,6.242,1365,4.605,1368,4.305,1370,4.352,1371,4.605,1372,5.484,1373,5.484,1375,4.605,1376,4.605,1377,4.305,1378,4.605,1381,3.487,1382,4.605,1388,3.487,1441,4.152,1509,5.483,1512,3.771,1564,4.152,1565,4.605,1566,4.73,1567,4.73,1568,5.483,1569,6.247,1570,4.73,1571,4.73,1572,6.247,1573,4.73,1574,4.73,1575,6.247,1576,4.73,1577,4.73,1578,4.73,1579,4.73]],["title/injectables/LoggingService.html",[388,1.635,910,1.182]],["body/injectables/LoggingService.html",[3,0.115,4,0.168,5,0.065,10,0.403,11,1.048,12,1.343,21,0.719,23,1.21,24,0.011,60,3.228,84,0.115,85,0.006,86,0.008,87,0.006,88,0.09,104,0.958,111,0.914,113,1.071,118,1.465,119,0.916,137,1.172,165,0.312,250,1.979,254,1.84,271,0.471,334,2.033,388,2.405,639,2.076,673,2.232,791,3.752,792,5.562,910,1.739,913,2.319,927,2.319,1580,4.131,1581,6.977,1582,6.124,1583,6.226,1584,6.226,1585,6.226,1586,6.226,1587,6.226,1588,6.226,1589,6.226,1590,4.706,1591,7.424,1592,6.226,1593,6.226,1594,4.706,1595,6.226,1596,4.706,1597,6.226,1598,4.706,1599,6.226,1600,4.706,1601,6.226,1602,4.706,1603,6.226,1604,4.706,1605,6.226,1606,4.706,1607,4.706,1608,6.226,1609,4.706,1610,4.706,1611,4.706,1612,3.752,1613,4.706,1614,4.706,1615,4.706,1616,4.706,1617,4.706,1618,4.706,1619,4.706]],["title/directives/MenuSelectionDirective.html",[317,1.182,361,1.324]],["body/directives/MenuSelectionDirective.html",[3,0.127,4,0.099,5,0.072,7,1.615,10,0.446,12,0.851,21,0.446,24,0.011,74,1.774,84,0.127,85,0.006,86,0.008,87,0.006,88,0.14,104,1.023,111,1.012,113,0.848,118,0.929,119,0.58,129,6.152,137,0.754,165,0.261,181,2.34,214,1.538,217,2.141,250,1.528,271,0.521,279,1.454,315,2.205,316,2.486,317,1.857,360,1.629,361,2.08,639,2.297,661,3.837,676,4.569,702,4.569,703,4.569,740,4.903,741,5.047,742,4.15,743,3.587,744,4.15,745,4.15,746,4.15,747,4.569,748,4.569,750,4.569,751,4.569,752,4.569,753,4.569,1262,4.315,1392,4.581,1565,4.9,1620,5.839,1621,4.569,1622,6.152,1623,5.3,1624,5.835,1625,6.648,1626,6.648,1627,7.716,1628,4.15,1629,6.607,1630,6.152,1631,6.152,1632,5.206,1633,5.399,1634,5.3,1635,5.3,1636,5.3,1637,4.9,1638,4.315,1639,4.9,1640,5.3,1641,4.9,1642,5.3,1643,5.206,1644,4.15,1645,5.206,1646,5.206]],["title/directives/MenuToggleDirective.html",[317,1.182,363,1.324]],["body/directives/MenuToggleDirective.html",[3,0.13,4,0.102,5,0.074,7,1.642,10,0.458,12,0.873,21,0.458,24,0.011,74,1.704,84,0.13,85,0.007,86,0.008,87,0.007,88,0.141,104,1.04,111,1.038,113,0.862,118,0.953,119,0.596,129,6.212,137,0.774,165,0.267,181,2.38,214,1.579,217,2.177,250,1.554,271,0.535,279,1.492,315,2.242,316,2.51,317,1.888,360,1.672,363,2.115,639,2.358,740,4.942,741,5.109,742,4.26,743,3.682,744,4.26,745,4.26,746,4.26,1262,4.388,1392,4.658,1565,4.982,1620,5.911,1622,6.545,1623,5.389,1628,4.26,1629,6.647,1630,6.212,1631,6.212,1633,5.924,1634,5.389,1635,5.389,1636,5.389,1637,4.982,1638,4.388,1639,4.982,1640,5.389,1641,4.982,1642,5.389,1644,4.26,1647,4.26,1648,6.759,1649,7.791,1650,5.344,1651,5.344,1652,5.344,1653,5.344,1654,5.344,1655,5.344]],["title/interfaces/Meta.html",[0,0.973,52,2.363]],["body/interfaces/Meta.html",[0,1.836,1,3.771,2,1.717,3,0.102,4,0.079,5,0.058,6,2.704,7,1.012,8,1.853,9,2.936,10,0.357,11,0.965,13,4.226,14,3.526,15,3.951,16,3.951,17,4.032,18,3.951,19,3.661,20,4.256,21,0.635,22,3.064,23,1.701,24,0.011,25,2.413,26,1.918,27,0.931,28,2.437,29,2.871,30,3.071,31,3.354,33,3.071,34,3.071,35,2.871,36,2.871,37,3.071,38,1.776,39,3.951,40,3.951,41,3.951,42,3.722,43,3.722,44,2.326,45,3.951,46,3.071,47,3.526,48,1.784,49,3.951,50,3.951,51,3.951,52,4.726,53,3.951,54,3.354,55,4.283,56,2.437,57,3.35,58,2.437,59,2.326,60,1.662,61,3.354,62,2.437,63,3.064,64,2.413,65,3.354,66,3.835,67,3.525,68,4.226,69,3.722,70,2.326,71,3.722,72,2.135,73,1.041,74,0.957,75,3.526,76,2.704,77,2.146,78,2.704,79,3.722,80,2.825,81,2.871,82,2.871,83,0.931,84,0.102,85,0.005,86,0.007,87,0.005]],["title/interfaces/MetaResponse.html",[0,0.973,71,2.747]],["body/interfaces/MetaResponse.html",[0,1.842,1,3.499,2,1.739,3,0.103,4,0.08,5,0.058,6,2.739,7,1.025,8,1.816,9,2.658,10,0.361,11,0.973,13,4.264,14,3.557,15,3.986,16,3.986,17,4.058,18,3.986,19,3.685,20,4.284,21,0.608,22,3.091,23,1.703,24,0.011,25,2.426,26,1.928,27,0.943,28,2.468,29,2.907,30,3.11,31,3.383,33,3.11,34,3.11,35,2.907,36,2.907,37,3.11,38,1.798,39,3.986,40,3.986,41,3.986,42,3.755,43,3.755,44,2.356,45,3.986,46,3.11,47,3.557,48,1.788,49,3.986,50,3.986,51,3.986,52,4.782,53,3.986,54,3.383,55,3.939,56,2.468,57,3.13,58,2.468,59,2.356,60,1.683,61,3.383,62,2.468,63,3.091,64,2.426,65,2.468,66,3.861,67,3.536,68,3.11,69,2.739,70,3.229,71,4.284,72,3.64,73,1.054,74,0.97,75,3.557,76,2.739,77,2.165,78,2.739,79,3.755,80,2.85,81,2.907,82,2.907,83,0.943,84,0.103,85,0.005,86,0.007,87,0.005]],["title/interceptors/MockBackendInterceptor.html",[1357,2.475,1656,3.119]],["body/interceptors/MockBackendInterceptor.html",[3,0.042,4,0.033,5,0.024,7,0.706,8,0.408,9,1.409,10,0.148,12,0.615,21,0.148,23,0.565,24,0.011,25,2.193,26,0.789,28,1.7,31,1.01,38,0.736,44,0.964,60,1.159,64,1.286,67,2.357,70,2.102,72,0.885,73,0.431,74,1.614,78,2.444,83,0.386,84,0.071,85,0.002,86,0.004,87,0.002,88,0.033,92,1.282,104,0.447,113,0.22,118,0.308,119,0.192,137,0.421,139,1.684,148,1.661,156,2.142,159,1.791,160,2.357,165,0.247,167,0.885,168,0.789,171,0.711,181,1.023,198,1.855,208,0.556,212,0.482,271,0.173,298,0.922,311,2.444,334,0.397,357,0.419,359,0.556,374,1.189,404,1.272,424,0.885,425,0.964,430,1.7,444,2.317,449,1.409,531,1.189,534,0.819,541,3.946,543,3.916,544,3.468,547,1.887,548,2.102,552,1.01,558,3.433,561,5.633,563,3.125,572,4.259,576,1.189,579,0.789,590,1.887,592,2.317,658,1.623,705,1.061,712,1.887,784,2.317,786,0.922,787,1.272,809,1.272,810,1.376,811,1.376,873,2.775,874,1.887,876,1.061,886,0.711,889,1.01,910,0.812,911,1.061,912,1.061,996,1.515,1037,1.189,1078,1.272,1119,1.01,1216,1.189,1217,2.142,1219,2.142,1247,2.551,1254,1.272,1263,1.189,1279,1.189,1358,1.272,1360,3.256,1361,1.887,1362,3.256,1363,3.491,1364,4.577,1365,2.142,1371,2.142,1372,3.256,1373,3.256,1375,4.731,1376,2.142,1377,3.044,1378,2.142,1381,1.272,1382,2.142,1383,2.551,1392,2.003,1395,2.551,1405,1.515,1406,4.95,1447,2.142,1449,1.376,1480,1.376,1498,4.84,1512,1.376,1526,1.272,1530,2.551,1532,2.551,1568,2.551,1656,3.256,1657,2.317,1658,1.376,1659,2.906,1660,2.551,1661,2.906,1662,1.726,1663,2.551,1664,2.906,1665,2.906,1666,2.906,1667,1.726,1668,3.877,1669,1.515,1670,2.317,1671,1.515,1672,2.317,1673,1.376,1674,3.521,1675,1.376,1676,2.775,1677,1.376,1678,1.376,1679,2.317,1680,1.376,1681,1.189,1682,1.376,1683,1.376,1684,1.376,1685,1.272,1686,1.376,1687,2.317,1688,1.189,1689,1.376,1690,2.551,1691,3.877,1692,1.515,1693,1.515,1694,1.515,1695,1.515,1696,1.515,1697,1.515,1698,1.515,1699,1.515,1700,1.515,1701,1.515,1702,1.515,1703,1.515,1704,1.515,1705,1.515,1706,1.515,1707,2.551,1708,1.515,1709,1.515,1710,2.551,1711,1.515,1712,1.515,1713,1.515,1714,3.304,1715,3.304,1716,1.515,1717,2.551,1718,1.515,1719,2.551,1720,2.551,1721,2.551,1722,1.515,1723,1.515,1724,1.515,1725,1.515,1726,1.515,1727,1.515,1728,1.515,1729,1.515,1730,1.515,1731,1.515,1732,1.515,1733,1.515,1734,1.515,1735,1.515,1736,1.515,1737,1.515,1738,1.515,1739,1.515,1740,1.515,1741,1.515,1742,1.515,1743,1.515,1744,1.515,1745,1.515,1746,1.515,1747,1.515,1748,1.515,1749,1.515,1750,1.515,1751,1.515,1752,1.515,1753,1.515,1754,1.515,1755,2.551,1756,1.515,1757,1.515,1758,1.515,1759,1.515,1760,1.515,1761,1.515,1762,1.515,1763,1.515,1764,1.515,1765,1.515,1766,1.515,1767,1.515,1768,2.551,1769,1.515,1770,1.515,1771,1.515,1772,2.551,1773,1.515,1774,1.515,1775,1.515,1776,1.515,1777,1.515,1778,1.515,1779,1.515,1780,1.515,1781,1.515,1782,1.515,1783,1.515,1784,1.515,1785,1.515,1786,1.515,1787,1.515,1788,1.515,1789,1.515,1790,1.515,1791,1.515,1792,1.515,1793,1.515,1794,1.515,1795,1.515,1796,1.515,1797,1.515,1798,1.515,1799,3.304,1800,1.515,1801,1.515,1802,1.515,1803,1.515,1804,1.515,1805,1.515,1806,1.515,1807,1.515,1808,1.515,1809,1.515,1810,1.515,1811,1.515,1812,1.515,1813,2.551,1814,1.515,1815,1.515,1816,1.515,1817,1.515,1818,1.515,1819,1.515,1820,1.515,1821,2.551,1822,1.515,1823,1.515,1824,1.515,1825,1.515,1826,1.515,1827,1.376,1828,1.515,1829,1.515,1830,1.515,1831,1.515,1832,0.964,1833,1.515,1834,1.515,1835,1.515,1836,1.515,1837,1.515,1838,1.515,1839,1.515,1840,2.551,1841,1.515,1842,1.515,1843,2.551,1844,1.515,1845,1.515,1846,1.515,1847,1.515,1848,1.515,1849,1.515,1850,1.515,1851,1.515,1852,1.515,1853,1.515,1854,1.515,1855,1.515,1856,1.515,1857,1.515,1858,1.515,1859,1.515,1860,3.304,1861,3.877,1862,1.515,1863,1.515,1864,1.515,1865,1.515,1866,1.515,1867,1.515,1868,1.515,1869,1.515,1870,1.515,1871,1.515,1872,1.515,1873,1.515,1874,1.515,1875,1.515,1876,1.515,1877,1.515,1878,1.515,1879,1.515,1880,1.515,1881,1.515,1882,1.515,1883,1.515,1884,1.515,1885,1.515,1886,1.515,1887,1.515,1888,1.515,1889,1.515,1890,1.515,1891,1.515,1892,1.515,1893,1.515,1894,1.515,1895,1.515,1896,1.515,1897,1.515,1898,1.515,1899,1.515,1900,1.515,1901,1.515,1902,1.515,1903,1.515,1904,1.515,1905,1.515,1906,1.515,1907,2.551,1908,3.304,1909,1.515,1910,1.515,1911,1.515,1912,1.515,1913,3.304,1914,3.304,1915,1.515,1916,2.551,1917,1.515,1918,1.515,1919,1.515,1920,1.515,1921,1.515,1922,1.515,1923,1.515,1924,1.515,1925,1.515,1926,1.515,1927,1.515,1928,1.515,1929,1.515,1930,1.515,1931,3.304,1932,1.515,1933,1.515,1934,1.515,1935,1.515,1936,1.515,1937,1.515,1938,1.515,1939,1.515,1940,1.515,1941,1.515,1942,1.515,1943,1.515,1944,1.515,1945,1.515,1946,1.515,1947,1.515,1948,1.515,1949,1.515,1950,2.142,1951,2.551,1952,2.551,1953,2.551,1954,2.551,1955,1.515,1956,1.515,1957,1.515,1958,1.515,1959,1.376,1960,1.515,1961,1.515,1962,1.515,1963,1.515,1964,1.515,1965,1.515,1966,1.515,1967,1.515,1968,1.515,1969,1.515,1970,1.515,1971,1.515,1972,1.515,1973,1.515,1974,1.515,1975,1.515,1976,1.515,1977,1.515,1978,1.515,1979,1.376,1980,1.515,1981,1.515,1982,1.515,1983,1.515,1984,1.515,1985,1.515,1986,1.515,1987,1.515,1988,1.515,1989,1.515,1990,1.515,1991,1.515,1992,1.515,1993,1.515,1994,1.515,1995,1.515,1996,2.551,1997,3.877,1998,1.515,1999,1.515,2000,1.515,2001,1.515,2002,1.515,2003,1.515,2004,1.515,2005,1.515,2006,1.515,2007,1.515,2008,1.515,2009,1.515,2010,1.515,2011,1.515,2012,1.515,2013,1.515,2014,1.515,2015,1.515,2016,1.515,2017,1.515,2018,1.515,2019,1.515,2020,1.515,2021,2.551,2022,1.515,2023,1.515,2024,1.515,2025,1.272,2026,1.515,2027,1.515,2028,1.515,2029,1.515,2030,1.515,2031,1.515,2032,1.515,2033,1.515,2034,1.515,2035,1.515,2036,1.515,2037,1.515,2038,1.515,2039,1.515,2040,1.515,2041,1.515,2042,1.515,2043,1.515,2044,1.515,2045,1.515,2046,1.515,2047,1.515,2048,1.515,2049,1.515,2050,1.515,2051,1.515,2052,1.515,2053,1.515,2054,1.515,2055,2.551,2056,1.515,2057,1.515,2058,1.515,2059,1.515,2060,1.515,2061,1.515,2062,1.515,2063,1.515,2064,2.551,2065,1.515,2066,1.376,2067,1.515,2068,1.515,2069,1.515,2070,1.515,2071,1.515,2072,1.515,2073,1.515,2074,1.515,2075,1.515,2076,2.551,2077,1.515,2078,1.515,2079,1.515,2080,1.515,2081,1.515,2082,1.515,2083,1.515,2084,1.515,2085,1.515,2086,1.515,2087,1.515,2088,1.515,2089,1.515,2090,1.515,2091,1.515,2092,1.515,2093,1.515,2094,2.551,2095,2.317,2096,1.515,2097,1.515,2098,1.515,2099,1.515,2100,1.515,2101,1.515,2102,1.515,2103,1.515,2104,1.515,2105,1.515,2106,1.515,2107,1.515,2108,1.515,2109,1.515,2110,1.515,2111,1.515,2112,1.515,2113,1.515,2114,1.515,2115,1.376,2116,1.515,2117,1.515,2118,1.515,2119,1.515,2120,1.515,2121,1.515,2122,1.515,2123,1.515,2124,1.515,2125,1.515,2126,1.515,2127,1.515,2128,1.515,2129,1.515,2130,1.515,2131,1.515,2132,1.515,2133,1.515,2134,1.376,2135,1.515,2136,1.515,2137,1.515,2138,1.515,2139,1.515,2140,1.515,2141,1.515,2142,1.515,2143,1.515,2144,1.515,2145,1.515,2146,1.515,2147,1.515,2148,1.515,2149,1.515,2150,1.515,2151,1.515,2152,1.515,2153,2.551,2154,1.515,2155,1.515,2156,1.515,2157,1.515,2158,1.515,2159,1.515,2160,1.515,2161,1.376,2162,1.515,2163,1.376,2164,1.515,2165,1.515,2166,1.515,2167,1.515,2168,1.515,2169,1.376,2170,1.515,2171,1.515,2172,1.515,2173,1.515,2174,1.515,2175,1.515,2176,1.515,2177,1.515,2178,1.376,2179,1.515,2180,1.515,2181,1.515,2182,1.515,2183,1.515,2184,1.515,2185,1.515,2186,1.376,2187,1.515,2188,1.376,2189,1.515,2190,1.515,2191,2.317,2192,1.515,2193,1.515,2194,1.515,2195,1.515,2196,1.515,2197,1.515,2198,1.515,2199,1.515,2200,1.515,2201,1.515,2202,1.515,2203,1.515,2204,1.515,2205,1.515,2206,1.515,2207,1.515,2208,1.515,2209,1.515,2210,1.515,2211,1.515,2212,1.515,2213,1.515,2214,1.515,2215,1.515,2216,1.515,2217,1.515,2218,1.515,2219,1.515,2220,1.515,2221,1.515,2222,1.515,2223,1.515,2224,1.515,2225,1.515,2226,1.515,2227,1.515,2228,1.515,2229,1.515,2230,1.515,2231,1.515,2232,1.515,2233,1.515,2234,1.515,2235,1.515,2236,1.515,2237,1.515,2238,1.515,2239,2.551,2240,1.515,2241,1.515,2242,1.515,2243,1.515,2244,1.515,2245,1.515,2246,1.515,2247,1.515,2248,1.515,2249,1.515,2250,1.515,2251,1.515,2252,1.515,2253,1.515,2254,1.515,2255,1.515,2256,1.515,2257,3.304,2258,1.515,2259,1.515,2260,1.515,2261,1.515,2262,1.515,2263,1.515,2264,1.515,2265,1.515,2266,1.515,2267,1.515,2268,1.515,2269,1.515,2270,1.515,2271,1.515,2272,1.515,2273,1.515,2274,1.515,2275,1.515,2276,1.515,2277,1.515,2278,1.515,2279,1.515,2280,1.515,2281,1.515,2282,1.515,2283,1.515,2284,1.515,2285,1.515,2286,1.515,2287,1.515,2288,1.515,2289,1.515,2290,1.515,2291,1.515,2292,1.515,2293,1.515,2294,1.515,2295,1.515,2296,1.515,2297,1.515,2298,1.515,2299,1.515,2300,1.515,2301,1.515,2302,1.515,2303,1.515,2304,1.515,2305,1.515,2306,1.515,2307,1.515,2308,1.515,2309,1.515,2310,1.515,2311,1.515,2312,1.515,2313,1.515,2314,1.515,2315,1.515,2316,1.515,2317,1.515,2318,1.515,2319,1.515,2320,1.515,2321,1.515,2322,1.515,2323,1.515,2324,1.515,2325,1.515,2326,1.515,2327,1.515,2328,1.515,2329,1.515,2330,1.515,2331,1.515,2332,1.515,2333,1.515,2334,1.515,2335,1.515,2336,1.515,2337,1.515,2338,1.515,2339,1.515,2340,1.515,2341,1.515,2342,1.515,2343,1.515,2344,1.515,2345,1.515,2346,2.551,2347,1.515,2348,2.317,2349,1.515,2350,1.515,2351,1.515,2352,1.515,2353,1.515,2354,1.515,2355,1.515,2356,1.515,2357,1.515,2358,1.515,2359,1.515,2360,1.515,2361,1.515,2362,1.515,2363,1.515,2364,1.515,2365,1.376,2366,1.515,2367,1.515,2368,1.515,2369,1.515,2370,1.515,2371,1.515,2372,1.515,2373,1.515,2374,1.515,2375,1.515,2376,1.515,2377,2.551,2378,2.551,2379,1.515,2380,1.515,2381,1.515,2382,1.515,2383,1.515,2384,1.515,2385,2.317,2386,1.515,2387,1.515,2388,1.515,2389,1.515,2390,1.515,2391,1.515,2392,1.515,2393,1.515,2394,1.515,2395,1.515,2396,1.515,2397,1.515,2398,1.515,2399,1.515,2400,1.515,2401,1.515,2402,1.515,2403,1.515,2404,1.515,2405,1.515,2406,1.515,2407,1.376,2408,1.376,2409,1.515,2410,1.515,2411,1.515,2412,2.551,2413,1.515,2414,1.515,2415,1.515,2416,1.515,2417,1.515,2418,1.515,2419,1.515,2420,2.551,2421,1.515,2422,1.515,2423,1.515,2424,1.515,2425,1.515,2426,1.515,2427,1.515,2428,1.515,2429,1.515,2430,1.515,2431,1.515,2432,1.515,2433,1.515,2434,1.515,2435,1.515,2436,1.515,2437,1.515,2438,1.515,2439,1.515,2440,1.515,2441,1.515,2442,1.515,2443,1.515,2444,1.515,2445,1.515,2446,1.515,2447,1.376,2448,1.515,2449,1.515,2450,1.515,2451,1.515,2452,1.515,2453,2.317,2454,1.515,2455,1.515,2456,1.515,2457,1.515,2458,1.515,2459,1.515,2460,1.515,2461,1.376,2462,1.515,2463,1.515,2464,1.515,2465,1.515,2466,1.515,2467,1.515,2468,1.515,2469,1.515,2470,1.515,2471,1.515,2472,1.515,2473,1.515,2474,1.515,2475,1.515,2476,1.515,2477,1.515,2478,1.515,2479,1.515,2480,1.515,2481,1.515,2482,1.515,2483,1.515,2484,1.515,2485,1.515,2486,1.515,2487,1.515,2488,1.515,2489,1.515,2490,1.515,2491,1.515,2492,1.515,2493,1.515,2494,1.515,2495,1.515,2496,1.515,2497,1.515,2498,1.515,2499,1.515,2500,1.515,2501,1.515,2502,1.515,2503,1.515,2504,1.515,2505,1.515,2506,1.515,2507,1.515,2508,1.515,2509,1.515,2510,1.515,2511,1.515,2512,1.376,2513,1.376,2514,1.376,2515,1.515,2516,1.515,2517,1.515,2518,1.515,2519,1.726,2520,1.726,2521,1.726,2522,1.726,2523,2.906,2524,1.515,2525,1.515,2526,1.726,2527,1.726,2528,1.726,2529,1.726,2530,1.726,2531,1.726,2532,1.726,2533,1.726,2534,1.726,2535,1.726,2536,1.726,2537,1.726,2538,2.906,2539,2.906,2540,2.551,2541,1.726,2542,1.726,2543,1.726,2544,1.726,2545,2.906,2546,1.726,2547,1.726,2548,2.551,2549,1.515,2550,1.272,2551,1.726,2552,1.515,2553,2.317,2554,2.906,2555,2.906,2556,2.906,2557,3.765,2558,1.726,2559,2.906,2560,1.12,2561,1.726,2562,1.726,2563,1.726,2564,1.726,2565,1.726,2566,1.726,2567,1.726,2568,1.726,2569,1.726,2570,1.376,2571,1.726,2572,2.906,2573,2.906,2574,1.726,2575,1.726,2576,1.726,2577,1.726,2578,1.726,2579,1.726]],["title/components/NetworkStatusComponent.html",[202,0.594,339,1.363]],["body/components/NetworkStatusComponent.html",[3,0.111,4,0.087,5,0.063,8,1.439,10,0.39,11,1.025,12,0.744,21,0.522,24,0.011,27,1.018,48,0.99,73,1.137,84,0.111,85,0.006,86,0.007,87,0.006,88,0.087,100,2.215,104,0.937,111,0.885,113,0.935,115,1.466,118,0.812,119,0.817,137,0.882,165,0.228,202,0.963,203,1.424,204,2.144,205,1.603,206,1.816,207,1.603,208,1.466,212,1.701,213,2.925,214,1.345,215,2.429,216,2.429,217,2.858,218,3.105,220,2.429,222,2.429,234,3.123,250,1.684,254,1.8,270,1.816,271,0.456,314,1.236,315,2.02,316,1.962,317,1.271,318,2.659,319,1.652,320,1.466,321,2.491,322,1.424,323,1.652,324,1.652,325,1.424,326,1.652,327,1.466,328,1.652,329,1.424,330,1.652,331,1.424,332,1.652,333,1.424,334,1.046,335,1.652,336,1.466,337,2.21,338,1.555,339,2.36,340,1.652,341,1.424,342,1.652,343,1.424,344,1.652,345,1.424,346,1.652,347,1.466,348,2.21,349,1.555,350,1.424,351,1.424,352,1.652,353,1.466,354,2.21,355,1.555,356,1.466,357,1.106,358,1.424,359,1.466,360,1.424,361,1.424,362,1.652,363,1.424,364,1.652,365,1.424,366,1.652,367,1.51,368,1.603,369,1.652,449,2.28,639,2.009,2580,6.704,2581,6.089,2582,3.996,2583,6.862,2584,6.09,2585,6.862,2586,7.327,2587,4.552,2588,7.327,2589,6.09,2590,6.09,2591,4.552,2592,4.552,2593,7.327,2594,6.09,2595,4.552,2596,6.09,2597,4.552,2598,4.552,2599,6.09,2600,6.09]],["title/components/OrganizationComponent.html",[202,0.594,341,1.324]],["body/components/OrganizationComponent.html",[3,0.098,4,0.076,5,0.055,8,1.317,10,0.343,11,0.938,12,0.654,21,0.595,24,0.011,27,0.894,38,1.705,48,1.212,73,2.033,84,0.098,85,0.005,86,0.007,87,0.005,88,0.076,100,1.086,104,0.858,111,0.777,113,0.989,115,1.289,118,0.714,119,0.774,137,0.807,139,1.367,148,2.831,159,1.281,165,0.321,184,1.514,202,0.901,203,1.252,204,1.963,205,1.408,206,1.596,207,1.408,208,1.289,212,1.557,213,2.735,214,1.182,215,2.224,216,2.224,217,2.831,218,3.071,220,2.224,222,2.224,227,4.73,234,2.959,238,4.11,242,3.189,243,5.572,250,1.595,252,4.422,254,1.647,257,4.488,270,1.596,271,0.4,272,2.949,273,2.138,274,1.971,281,2.949,282,4.11,310,2.979,312,4.506,314,1.086,315,1.849,316,1.796,317,1.117,318,2.519,319,1.452,320,1.289,321,2.329,322,1.252,323,1.452,324,1.452,325,1.252,326,1.452,327,1.289,328,1.452,329,1.252,330,1.452,331,1.252,332,1.452,333,1.252,334,0.919,335,1.452,336,1.289,337,2.023,338,1.367,339,1.289,340,1.452,341,2.172,342,1.452,343,1.252,344,1.452,345,1.252,346,1.452,347,1.289,348,2.023,349,1.367,350,1.252,351,1.252,352,1.452,353,1.289,354,2.023,355,1.367,356,1.289,357,0.972,358,1.252,359,1.289,360,1.252,361,1.252,362,1.452,363,1.252,364,1.452,365,1.252,366,1.452,367,1.327,368,1.408,369,1.452,639,1.765,829,5.116,831,5.534,855,4.445,1100,4.221,1259,4.894,1397,4.506,2025,5.117,2601,3.511,2602,5.819,2603,6.417,2604,5.575,2605,6.417,2606,6.417,2607,5.575,2608,4,2609,4,2610,4,2611,4,2612,4,2613,4,2614,4,2615,7.299,2616,5.116,2617,4,2618,4,2619,4,2620,4,2621,5.575,2622,5.575,2623,4.894,2624,5.575,2625,5.575,2626,5.575,2627,5.575,2628,4.894,2629,5.575,2630,5.575,2631,5.575,2632,5.575,2633,5.575,2634,5.575]],["title/classes/PGPSigner.html",[88,0.081,2635,2.747]],["body/classes/PGPSigner.html",[0,1.556,3,0.071,4,0.056,5,0.04,7,1.563,9,2.006,10,0.25,11,0.746,12,0.978,21,0.668,23,1.614,24,0.011,48,0.964,55,4.441,56,3.135,57,3.211,58,3.763,59,4.226,60,3.328,61,4.805,62,3.961,63,3.874,64,2.198,66,1.709,72,2.273,73,1.108,74,1.478,77,1.66,83,0.653,84,0.071,85,0.004,86,0.005,87,0.004,88,0.056,90,1.439,92,2.64,99,3.135,104,0.683,105,3.441,106,2.264,111,0.568,113,1.007,118,1.067,119,0.667,130,4.327,137,1.05,138,1.726,139,2.198,140,4.396,159,1.019,165,0.268,167,1.498,168,0.793,181,2.614,190,1.028,212,1.238,250,1.617,254,2.001,279,2.073,334,1.019,388,2.616,428,1.796,434,3.295,691,4.164,700,2.878,718,2.013,724,3.884,729,1.896,778,1.631,849,1.498,851,3.59,886,1.828,891,2.273,900,3.295,929,4.164,1043,4.666,1055,1.631,1207,3.591,1270,3.055,1370,2.594,1498,3.055,2560,3.479,2635,3.479,2636,5.175,2637,2.013,2638,3.268,2639,4.741,2640,3.268,2641,3.95,2642,5.216,2643,3.95,2644,3.95,2645,5.671,2646,3.892,2647,3.535,2648,4.741,2649,3.268,2650,4.434,2651,3.268,2652,4.41,2653,3.268,2654,2.921,2655,2.921,2656,2.921,2657,2.921,2658,2.921,2659,2.921,2660,4.991,2661,2.921,2662,3.95,2663,2.921,2664,3.95,2665,4.914,2666,2.921,2667,3.693,2668,3.95,2669,2.921,2670,3.95,2671,3.479,2672,3.95,2673,2.921,2674,3.693,2675,2.153,2676,2.153,2677,2.153,2678,3.268,2679,2.153,2680,2.153,2681,2.153,2682,2.153,2683,2.153,2684,2.153,2685,3.268,2686,3.268,2687,2.153,2688,2.153,2689,2.013,2690,2.153,2691,3.268,2692,2.153,2693,2.153,2694,2.153,2695,2.153,2696,2.153,2697,2.153,2698,2.153,2699,2.153,2700,2.153,2701,2.153,2702,2.153,2703,3.268,2704,2.153,2705,2.153,2706,2.153,2707,2.153,2708,2.153,2709,2.153,2710,2.153,2711,2.153]],["title/components/PagesComponent.html",[202,0.594,343,1.324]],["body/components/PagesComponent.html",[3,0.121,4,0.095,5,0.069,8,1.523,10,0.425,11,1.085,21,0.425,23,1.253,24,0.011,27,1.11,48,1.079,73,1.24,84,0.121,85,0.006,86,0.008,87,0.006,88,0.095,100,1.348,111,1.391,113,0.822,115,1.599,119,0.798,165,0.323,171,2.046,172,2.445,202,1.005,203,1.553,204,2.27,205,1.747,206,1.98,207,1.747,208,1.599,214,1.467,215,2.572,216,2.572,217,2.874,218,3.126,220,2.572,222,2.572,270,1.98,271,0.497,310,3.445,314,1.348,315,2.138,316,2.077,317,1.386,318,2.751,319,1.801,320,1.599,321,2.599,322,1.553,323,1.801,324,1.801,325,1.553,326,1.801,327,1.599,328,1.801,329,1.553,330,1.801,331,1.553,332,1.801,333,1.553,334,1.141,335,1.801,336,1.599,337,2.34,338,1.696,339,1.599,340,1.801,341,1.553,342,1.801,343,2.372,344,1.801,345,1.553,346,1.801,347,1.599,348,2.34,349,1.696,350,1.553,351,1.553,352,1.801,353,1.599,354,2.34,355,1.696,356,1.599,357,1.206,358,1.553,359,1.599,360,1.553,361,1.553,362,1.801,363,1.553,364,1.801,365,1.553,366,1.801,367,1.646,368,1.747,369,1.801,778,3.6,889,4.188,2712,4.357,2713,6.447,2714,7.16,2715,6.447,2716,6.447,2717,6.447,2718,5.14,2719,6.447]],["title/modules/PagesModule.html",[471,1.117,2720,3.119]],["body/modules/PagesModule.html",[3,0.139,4,0.109,5,0.079,24,0.011,83,1.277,84,0.139,85,0.007,86,0.009,87,0.007,88,0.109,165,0.434,168,1.914,271,0.572,314,1.552,343,2.612,471,1.509,473,2.074,474,2.815,475,4.084,476,2.929,477,3.054,482,4.113,484,3.767,485,3.054,486,2.71,488,2.905,489,4.123,490,3.19,492,3.342,494,3.342,506,4.334,507,3.514,508,4.575,509,3.709,510,3.342,511,4.334,512,3.514,513,4.334,514,3.514,517,4.857,518,3.938,2720,6.389,2721,5.016,2722,5.016,2723,5.016,2724,5.752,2725,5.714,2726,5.714,2727,5.714]],["title/modules/PagesRoutingModule.html",[471,1.117,2724,2.916]],["body/modules/PagesRoutingModule.html",[3,0.142,4,0.111,5,0.081,24,0.011,74,1.341,83,1.304,84,0.142,85,0.007,86,0.009,87,0.007,88,0.111,94,3.787,165,0.386,168,1.584,202,0.819,271,0.584,276,2.117,310,3.815,343,2.234,473,2.117,488,2.942,533,3.412,534,3.658,535,3.986,536,4.97,537,4.02,538,4.02,539,3.787,540,3.587,548,3.257,815,7.237,1100,3.257,1107,3.257,1201,3.257,2724,4.919,2728,5.833,2729,5.833,2730,5.833,2731,5.833,2732,5.833,2733,5.833,2734,5.833,2735,5.833,2736,5.833,2737,5.833,2738,5.833,2739,5.833]],["title/directives/PasswordToggleDirective.html",[317,1.182,365,1.324]],["body/directives/PasswordToggleDirective.html",[3,0.116,4,0.091,5,0.066,7,1.527,10,0.409,12,0.78,21,0.602,23,1.451,24,0.011,48,1.366,67,3.583,74,1.445,84,0.116,85,0.006,86,0.008,87,0.006,88,0.134,104,0.967,111,0.928,113,0.952,118,0.852,119,0.532,137,0.691,165,0.239,181,2.213,214,1.411,217,2.024,250,1.445,271,0.478,279,1.333,315,2.085,316,2.405,317,1.755,360,1.494,365,1.967,510,4.821,628,6.554,639,2.106,741,4.331,1055,4.735,1262,4.08,1265,5.872,1278,4.994,1294,4.331,1392,4.331,1565,4.633,1622,5.953,1628,3.806,1629,6.474,1630,5.953,1631,5.953,1633,5.179,1634,5.011,1635,5.011,1636,5.011,1637,4.633,1638,4.08,1639,4.633,1640,5.011,1641,4.633,1642,5.011,1644,3.806,1647,3.806,2740,6.81,2741,6.285,2742,7.466,2743,7.026,2744,6.285,2745,7.758,2746,4.774,2747,4.774,2748,6.285,2749,4.774,2750,4.774,2751,4.774,2752,7.026,2753,7.026,2754,7.026,2755,4.19,2756,6.285,2757,7.466,2758,6.285,2759,6.285]],["title/injectables/RegistryService.html",[910,1.182,1125,2.747]],["body/injectables/RegistryService.html",[3,0.137,4,0.107,5,0.078,10,0.482,11,1.175,21,0.598,24,0.011,48,1.223,73,1.405,84,0.137,85,0.007,86,0.009,87,0.007,88,0.107,95,4.642,104,1.075,105,2.482,106,2.672,111,1.475,113,1.012,137,0.815,138,2.248,159,1.293,165,0.408,169,3.291,170,3.877,171,2.319,172,2.772,179,3.652,184,2.061,190,1.98,271,0.563,274,2.772,279,2.12,673,2.668,910,1.949,913,2.772,927,2.772,1122,3.877,1123,3.291,1125,4.531,1295,6.332,2760,4.938,2761,8.315,2762,7.936,2763,6.98,2764,5.625,2765,6.051,2766,5.625,2767,6.327,2768,7.59,2769,5.625,2770,5.625,2771,5.625,2772,5.625,2773,5.625,2774,5.625]],["title/guards/RoleGuard.html",[876,2.602,2775,3.374]],["body/guards/RoleGuard.html",[3,0.111,4,0.087,5,0.063,7,1.67,10,0.392,12,0.998,21,0.523,24,0.011,25,2.086,31,4.293,38,2.602,57,2.896,74,1.05,84,0.111,85,0.006,86,0.007,87,0.006,88,0.131,92,2.694,104,0.94,111,0.888,113,0.779,118,1.089,119,0.681,137,1.063,138,1.967,139,2.349,144,3.754,145,4.207,146,4.5,148,2.694,152,4.867,159,1.58,165,0.344,168,1.241,181,2.42,198,2.251,202,0.857,208,1.967,212,1.276,245,4.5,254,1.804,271,0.457,276,1.658,312,3.963,534,2.896,544,5.42,552,4.835,558,3.261,579,2.089,616,5.299,639,2.016,673,2.167,820,6.097,876,4.512,877,3.643,879,4.867,880,5.359,881,5.85,883,3.643,885,5.359,886,2.516,887,5.057,888,4.207,889,3.571,890,4.207,891,3.13,892,4.011,893,6.906,894,6.441,896,5.359,898,4.5,899,4.867,900,3.754,901,5.359,902,4.867,903,6.441,904,4.512,905,5.359,906,5.359,907,6.035,910,1.705,911,2.81,912,2.81,913,2.251,915,4.011,2775,4.867,2776,4.011,2777,4.57,2778,4.57,2779,6.105,2780,6.105,2781,6.105,2782,6.105,2783,4.57,2784,4.57,2785,4.57,2786,4.57,2787,4.57,2788,4.57,2789,4.57]],["title/directives/RouterLinkDirectiveStub.html",[317,1.182,367,1.404]],["body/directives/RouterLinkDirectiveStub.html",[3,0.145,4,0.113,5,0.082,10,0.511,11,1.217,21,0.62,24,0.011,48,1.295,73,1.488,84,0.145,85,0.007,86,0.009,87,0.007,88,0.138,113,0.993,165,0.298,214,1.761,217,2.329,250,1.369,271,0.596,317,2.355,360,1.864,367,2.398,368,2.546,553,3.327,563,4.23,681,6.347,709,5.23,1009,5.23,1098,4.694,1144,6.347,1145,5.23,1278,4.446,1294,4.983,1633,5.739,2790,7.106,2791,6.454,2792,7.785,2793,7.231,2794,5.958,2795,5.958,2796,5.958,2797,5.958,2798,5.958,2799,5.958,2800,5.958,2801,5.958,2802,5.958,2803,5.958,2804,5.958]],["title/pipes/SafePipe.html",[1832,2.363,2805,2.916]],["body/pipes/SafePipe.html",[3,0.152,4,0.118,5,0.086,12,1.015,21,0.532,23,1.54,24,0.011,84,0.152,85,0.008,86,0.009,87,0.008,88,0.118,104,0.956,113,0.793,118,1.108,119,0.884,137,0.9,159,1.428,165,0.371,212,1.735,214,1.836,271,0.622,639,2.741,777,4.953,778,3.469,889,3.634,1832,4.14,1950,6.184,2805,5.11,2806,4.58,2807,5.454,2808,7.415,2809,4.953,2810,7.415,2811,6.32,2812,6.213,2813,5.912,2814,7.415,2815,6.213,2816,6.213]],["title/classes/Settings.html",[88,0.081,1100,2.363]],["body/classes/Settings.html",[0,1.538,3,0.128,4,0.1,5,0.073,7,1.626,10,0.451,11,1.126,12,0.859,21,0.685,24,0.011,48,1.143,63,3.933,64,2.514,73,1.313,83,1.175,84,0.128,85,0.006,86,0.008,87,0.006,88,0.127,90,2.591,93,5.511,95,4.678,100,2.22,111,1.022,113,1.02,116,3.414,118,0.938,119,0.586,166,4.325,178,5.634,181,1.851,301,6.175,357,1.626,908,4.192,1003,4.114,1100,4.565,1263,5.071,1413,6.175,1470,4.932,2550,5.709,2570,5.334,2817,4.192,2818,7.176,2819,6.459,2820,6.123,2821,5.873,2822,5.258,2823,6.799,2824,6.799,2825,5.258,2826,5.258,2827,5.258,2828,5.258,2829,4.616,2830,4.616,2831,4.616]],["title/components/SettingsComponent.html",[202,0.594,345,1.324]],["body/components/SettingsComponent.html",[3,0.089,4,0.069,5,0.05,8,1.572,10,0.312,11,0.877,12,0.851,21,0.673,23,1.368,24,0.011,25,1.78,27,0.813,47,4.506,48,1.133,67,2.299,73,0.908,84,0.149,85,0.004,86,0.006,87,0.004,88,0.069,100,0.987,104,0.802,106,2.144,111,0.706,113,1.04,115,1.171,118,0.929,119,0.876,137,0.963,138,1.678,160,2.935,165,0.378,184,0.987,190,1.28,202,0.855,203,1.138,204,1.834,205,1.28,206,1.45,207,1.28,208,1.171,212,1.455,213,2.596,214,1.074,215,2.079,216,2.079,217,2.808,218,3.043,219,3.204,220,2.079,222,2.079,234,2.835,250,1.684,270,1.45,271,0.364,274,1.791,275,1.864,310,2.785,314,0.987,315,1.728,316,1.678,317,1.015,318,2.414,319,1.319,320,1.171,321,2.21,322,1.138,323,1.319,324,1.319,325,1.138,326,1.319,327,1.171,328,1.319,329,1.138,330,1.319,331,1.138,332,1.319,333,1.138,334,0.836,335,1.319,336,1.171,337,1.891,338,1.242,339,1.171,340,1.319,341,1.138,342,1.319,343,1.138,344,1.319,345,2.081,346,1.319,347,1.171,348,1.891,349,1.242,350,1.138,351,1.138,352,1.319,353,1.171,354,1.891,355,1.242,356,1.171,357,0.883,358,1.138,359,1.171,360,1.138,361,1.138,362,1.319,363,1.138,364,1.319,365,1.138,366,1.319,367,1.206,368,1.28,369,1.319,375,4.197,377,4.856,379,4.197,380,4.197,382,3.591,383,4.584,391,3.591,402,4.197,411,4.197,412,3.383,413,3.591,415,4.197,416,3.591,418,2.505,419,1.864,420,1.943,421,1.943,422,2.235,436,2.68,438,2.68,439,2.505,440,2.68,441,2.505,452,2.68,453,2.505,463,3.591,548,3.714,639,1.604,658,3.401,684,2.898,685,4.506,707,3.591,716,2.898,723,4.574,930,5.346,943,6.432,978,3.191,1068,4.574,1100,3.714,2832,3.191,2833,6.09,2834,5.211,2835,5.346,2836,5.346,2837,5.211,2838,3.635,2839,3.635,2840,3.635,2841,3.635,2842,3.635,2843,3.635,2844,5.839,2845,3.635,2846,3.635,2847,3.635,2848,3.635,2849,3.635,2850,3.635,2851,3.635,2852,4.903,2853,3.635,2854,3.635,2855,3.635,2856,3.635,2857,5.211,2858,5.211,2859,5.211,2860,5.211,2861,5.211,2862,5.211,2863,5.211,2864,5.211]],["title/modules/SettingsModule.html",[471,1.117,2865,3.119]],["body/modules/SettingsModule.html",[3,0.127,4,0.099,5,0.072,24,0.011,83,1.165,84,0.127,85,0.006,86,0.008,87,0.006,88,0.099,165,0.442,168,1.807,271,0.522,273,2.786,314,1.416,341,2.552,345,2.552,419,2.672,420,2.786,421,2.786,471,1.377,473,1.892,474,2.568,475,3.917,476,2.672,477,2.786,482,4.019,484,3.556,485,2.786,486,2.472,488,2.743,489,3.892,490,2.911,492,3.049,494,3.049,501,4.319,502,4.585,503,4.905,504,3.843,505,4.585,506,4.092,507,3.206,508,4.319,509,3.384,510,3.049,511,4.092,512,3.206,513,4.092,514,3.206,515,4.319,516,3.384,517,4.585,518,3.592,527,5.305,2865,6.372,2866,4.576,2867,4.576,2868,4.576,2869,5.621,2870,5.213,2871,5.213,2872,4.576,2873,4.576,2874,6.654,2875,5.213,2876,6.654,2877,5.213]],["title/modules/SettingsRoutingModule.html",[471,1.117,2869,2.916]],["body/modules/SettingsRoutingModule.html",[3,0.152,4,0.119,5,0.086,24,0.011,74,1.43,83,1.391,84,0.152,85,0.008,86,0.009,87,0.008,88,0.119,165,0.411,168,1.69,202,1.042,271,0.623,276,2.259,341,2.323,345,2.323,473,2.259,488,3.06,533,3.641,534,3.762,535,4.145,536,4.64,537,4.289,538,4.289,539,4.04,540,3.827,2602,4.962,2869,5.115,2872,5.463,2873,5.463,2878,6.224]],["title/modules/SharedModule.html",[471,1.117,482,2.085]],["body/modules/SharedModule.html",[3,0.112,4,0.088,5,0.064,24,0.011,83,1.544,84,0.112,85,0.006,86,0.008,87,0.006,88,0.088,100,1.252,165,0.432,168,1.252,271,0.461,276,1.673,314,1.252,333,2.468,336,2.735,339,2.735,347,2.735,353,2.735,361,2.657,363,2.468,471,1.217,473,1.673,474,2.271,475,3.691,476,2.363,477,2.464,482,4.394,484,3.282,485,2.464,486,2.187,488,2.531,489,3.592,490,2.574,515,3.987,516,2.993,535,3.429,925,4.047,1323,3.398,1334,3.676,1349,4.047,1350,4.047,2581,3.676,2805,5.852,2879,4.047,2880,4.047,2881,4.047,2882,5.852,2883,5.852,2884,4.61,2885,4.61,2886,4.61,2887,4.61,2888,6.141,2889,4.61,2890,4.61,2891,4.61,2892,6.141,2893,4.61,2894,4.61,2895,4.61,2896,4.61]],["title/components/SidebarComponent.html",[202,0.594,347,1.363]],["body/components/SidebarComponent.html",[3,0.119,4,0.093,5,0.067,8,1.505,10,0.417,24,0.011,27,1.089,84,0.119,85,0.006,86,0.008,87,0.006,88,0.093,94,4.134,100,1.323,104,0.98,111,1.379,113,0.812,115,1.569,119,0.791,137,0.705,165,0.244,202,0.996,203,1.524,204,2.242,205,1.715,206,1.943,207,1.715,208,1.569,212,1.778,213,3.024,214,1.439,215,2.54,216,2.54,217,2.871,218,3.122,220,2.54,222,2.54,234,3.207,250,1.464,270,1.943,271,0.487,314,1.323,315,2.112,316,2.051,317,1.36,318,2.731,319,1.768,320,1.569,321,2.575,322,1.524,323,1.768,324,1.768,325,1.524,326,1.768,327,1.569,328,1.768,329,1.524,330,1.768,331,1.524,332,1.768,333,1.524,334,1.119,335,1.768,336,1.569,337,2.311,338,1.664,339,1.569,340,1.768,341,1.524,342,1.768,343,1.524,344,1.768,345,1.524,346,1.768,347,2.424,348,2.311,349,1.664,350,1.524,351,1.524,352,1.768,353,1.569,354,2.311,355,1.664,356,1.569,357,1.183,358,1.524,359,2.285,360,1.524,361,1.524,362,1.768,363,1.524,364,1.768,365,1.524,366,1.768,367,1.615,368,1.715,369,1.768,548,3.555,707,4.388,740,3.916,1100,3.555,1201,3.555,2897,4.275,2898,7.095,2899,6.368,2900,4.87,2901,4.87,2902,6.368]],["title/components/SidebarStubComponent.html",[202,0.594,349,1.446]],["body/components/SidebarStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.564,24,0.011,27,1.155,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.404,115,1.665,119,0.814,165,0.259,202,1.117,203,1.617,204,2.33,205,2.57,207,1.82,208,1.665,214,1.527,217,2.887,218,3.143,271,0.517,314,1.404,315,2.195,316,2.132,317,1.443,318,2.793,319,1.876,320,1.665,321,2.649,322,1.617,323,1.876,324,1.876,325,1.617,326,1.876,327,1.665,328,1.876,329,1.617,330,1.876,331,1.617,332,1.876,333,1.617,334,1.188,335,1.876,336,1.665,337,2.402,338,2.261,339,1.665,340,1.876,341,1.617,342,1.876,343,1.617,344,1.876,345,1.617,346,1.876,347,1.665,348,2.402,349,2.629,350,1.617,351,1.617,352,1.876,353,1.665,354,2.402,355,2.261,356,1.665,357,1.256,358,1.617,359,1.665,360,1.617,361,1.617,362,1.876,363,1.617,364,1.876,365,1.617,366,1.876,367,1.714,368,1.82,369,1.876,471,1.365,553,2.886,740,4.069,1418,3.81,1428,3.81,1429,3.81]],["title/interfaces/Signable.html",[0,0.973,2665,2.747]],["body/interfaces/Signable.html",[0,1.723,2,1.466,3,0.087,4,0.068,5,0.049,7,0.864,9,2.252,10,0.305,23,1.593,24,0.011,55,4.422,56,3.001,57,3.123,58,3.519,59,4.285,60,3.337,61,4.894,62,3.852,63,3.731,64,2.385,66,2.081,72,2.63,74,1.605,77,1.92,83,0.795,84,0.087,85,0.004,86,0.006,87,0.004,88,0.068,92,2.263,99,3.001,104,0.79,105,2.906,106,2.118,113,0.454,130,4.293,137,1.011,138,1.652,139,2.25,140,4.275,159,1.179,165,0.301,167,1.823,168,0.966,181,2.752,190,1.252,212,0.993,250,1.672,254,2.063,279,2.031,334,1.179,388,2.324,428,2.187,434,3.154,691,4.049,700,3.33,718,2.451,724,3.33,729,2.309,778,1.986,849,1.823,851,3.556,886,1.466,891,1.823,900,3.154,929,3.7,1043,4.146,1055,1.986,1207,3.359,1270,2.451,1370,2.081,2560,3.33,2635,3.33,2636,3.33,2637,2.451,2638,2.622,2639,4.435,2640,2.622,2641,2.622,2642,4.811,2643,2.622,2644,2.622,2645,5.362,2648,3.781,2649,2.622,2651,2.622,2652,3.781,2653,2.622,2660,4.854,2662,3.781,2664,3.781,2665,5.075,2667,3.535,2668,3.781,2670,3.781,2671,3.33,2672,3.781,2674,4.146,2675,2.622,2676,2.622,2677,2.622,2678,3.781,2679,2.622,2680,2.622,2681,2.622,2682,2.622,2683,2.622,2684,2.622,2685,3.781,2686,3.781,2687,2.622,2688,2.622,2689,2.451,2690,2.622,2691,3.781,2692,2.622,2693,2.622,2694,2.622,2695,2.622,2696,2.622,2697,2.622,2698,2.622,2699,2.622,2700,2.622,2701,2.622,2702,2.622,2703,3.781,2704,2.622,2705,2.622,2706,2.622,2707,2.622,2708,2.622,2709,2.622,2710,2.622,2711,2.622,2903,3.557]],["title/interfaces/Signature.html",[0,0.973,55,2.169]],["body/interfaces/Signature.html",[0,1.833,1,3.468,2,1.703,3,0.101,4,0.079,5,0.057,6,2.683,7,1.004,8,1.804,9,2.985,10,0.354,11,0.96,13,4.203,14,3.506,15,3.929,16,3.929,17,4.015,18,3.929,19,3.645,20,4.238,21,0.654,22,3.047,23,1.717,24,0.011,25,2.405,26,1.911,27,0.924,28,2.417,29,2.848,30,3.046,31,3.336,33,3.046,34,3.046,35,2.848,36,2.848,37,3.046,38,1.761,39,3.929,40,3.929,41,3.929,42,3.702,43,3.702,44,2.307,45,3.929,46,3.046,47,3.506,48,1.781,49,3.929,50,3.929,51,3.929,52,4.658,53,3.929,54,3.336,55,4.088,56,3.336,57,3.503,58,4.118,59,3.184,60,2.275,61,4.467,62,3.336,63,4.081,64,2.231,65,2.417,66,3.336,67,3.106,68,3.046,69,2.683,70,2.307,71,3.702,72,2.118,73,1.032,74,0.95,75,3.506,76,2.683,77,2.134,78,2.683,79,3.702,80,2.809,81,2.848,82,2.848,83,0.924,84,0.101,85,0.005,86,0.007,87,0.005]],["title/interfaces/Signature-1.html",[0,0.81,55,1.806,198,1.736]],["body/interfaces/Signature-1.html",[0,1.71,2,1.428,3,0.085,4,0.066,5,0.048,7,0.842,9,2.784,10,0.297,11,0.847,21,0.557,23,1.65,24,0.011,55,4.432,56,3.468,57,3.419,58,4.217,59,4.255,60,3.324,61,4.902,62,4.217,63,4.151,64,2.361,66,2.027,72,2.58,74,1.588,77,1.884,83,0.775,84,0.085,85,0.004,86,0.006,87,0.004,88,0.066,92,2.221,99,2.944,105,2.87,106,2.087,130,4.249,137,0.942,138,1.621,139,2.223,140,4.223,159,1.157,165,0.297,167,1.776,168,0.941,181,2.735,190,1.22,212,0.968,250,1.657,254,2.042,279,2.013,334,1.157,388,2.29,428,2.131,434,3.095,691,4,700,3.268,718,2.388,724,3.268,729,2.249,778,1.935,849,1.776,851,3.528,886,1.428,891,1.776,900,3.095,929,3.645,1043,4.085,1055,1.935,1207,3.31,1270,2.388,1370,2.027,2560,3.268,2635,3.268,2636,2.249,2637,2.388,2638,2.554,2639,4.37,2640,2.554,2641,2.554,2642,4.762,2643,2.554,2644,2.554,2645,5.314,2648,3.71,2649,2.554,2651,2.554,2652,3.71,2653,2.554,2660,4.796,2662,3.71,2664,3.71,2665,4.828,2667,3.469,2668,3.71,2670,3.71,2671,3.268,2672,3.71,2674,4.085,2675,2.554,2676,2.554,2677,2.554,2678,3.71,2679,2.554,2680,2.554,2681,2.554,2682,2.554,2683,2.554,2684,2.554,2685,3.71,2686,3.71,2687,2.554,2688,2.554,2689,2.388,2690,2.554,2691,3.71,2692,2.554,2693,2.554,2694,2.554,2695,2.554,2696,2.554,2697,2.554,2698,2.554,2699,2.554,2700,2.554,2701,2.554,2702,2.554,2703,3.71,2704,2.554,2705,2.554,2706,2.554,2707,2.554,2708,2.554,2709,2.554,2710,2.554,2711,2.554]],["title/interfaces/Signer.html",[0,0.973,130,2.602]],["body/interfaces/Signer.html",[0,1.66,2,1.303,3,0.077,4,0.06,5,0.044,7,1.512,9,2.103,10,0.271,12,1.087,21,0.57,23,1.606,24,0.011,55,4.463,56,2.752,57,2.952,58,3.287,59,4.235,60,3.348,61,4.836,62,3.641,63,3.556,64,2.273,66,1.849,72,2.411,74,1.529,77,1.761,83,0.706,84,0.077,85,0.004,86,0.006,87,0.004,88,0.06,92,2.076,99,3.287,104,0.724,105,2.746,106,1.978,113,0.89,118,1.187,119,0.742,130,4.442,137,1.118,138,1.81,139,2.273,140,4.528,159,1.081,165,0.281,167,1.62,168,0.858,181,2.671,190,1.113,212,0.883,250,1.743,254,2.194,279,2.118,334,1.081,388,2.171,428,1.943,434,3.455,691,4.289,700,3.054,718,2.178,724,3.054,729,2.052,778,1.765,849,1.62,851,3.662,886,1.303,891,1.62,900,3.455,929,3.455,1043,3.872,1055,1.765,1207,3.475,1270,2.178,1370,1.849,2560,3.647,2635,3.054,2636,4.69,2637,2.178,2638,2.33,2639,4.588,2640,2.33,2641,2.33,2642,4.585,2643,4.142,2644,4.142,2645,5.775,2646,4.129,2647,3.75,2648,4.905,2649,2.33,2651,2.33,2652,3.467,2653,2.33,2660,5.142,2662,4.142,2664,4.142,2665,5.012,2667,3.872,2668,4.142,2670,4.142,2671,3.647,2672,4.142,2674,3.872,2675,2.33,2676,3.467,2677,3.467,2678,4.142,2679,2.33,2680,2.33,2681,2.33,2682,2.33,2683,2.33,2684,2.33,2685,3.467,2686,3.467,2687,2.33,2688,2.33,2689,2.178,2690,2.33,2691,3.467,2692,2.33,2693,2.33,2694,2.33,2695,2.33,2696,2.33,2697,2.33,2698,2.33,2699,2.33,2700,2.33,2701,2.33,2702,2.33,2703,3.467,2704,2.33,2705,2.33,2706,2.33,2707,2.33,2708,2.33,2709,2.33,2710,2.33,2711,2.33,2904,3.16,2905,3.16,2906,3.16,2907,3.16,2908,3.16,2909,3.16]],["title/interfaces/Staff.html",[0,0.973,658,2.363]],["body/interfaces/Staff.html",[0,1.609,2,2.33,3,0.138,4,0.108,5,0.078,7,1.373,10,0.484,11,1.178,21,0.7,23,1.698,24,0.011,25,2.392,26,2.065,47,5.119,57,3.32,64,1.931,67,3.089,83,1.263,84,0.138,85,0.007,86,0.009,87,0.007,105,3.818,115,2.255,119,0.928,658,4.438,851,4.104,1279,4.824,2844,6.977,2910,4.961,2911,8.325,2912,7.949,2913,6.338,2914,7,2915,6.145]],["title/interfaces/Token.html",[0,0.973,27,0.946]],["body/interfaces/Token.html",[0,1.514,2,2.115,3,0.125,4,0.098,5,0.071,7,1.247,8,1.557,10,0.44,11,1.109,12,1.327,14,3.156,21,0.73,23,1.727,24,0.011,26,1.789,27,1.984,32,4.856,38,2.808,64,1.753,80,3.246,83,1.147,84,0.125,85,0.006,86,0.008,87,0.006,117,4.72,119,0.906,121,3.567,164,5.252,1210,4.539,1211,4.341,2913,6.12,2916,4.505,2917,8.123,2918,7.676,2919,7.676,2920,6.476,2921,6.587,2922,6.587,2923,6.587,2924,6.12,2925,6.587,2926,6.587,2927,5.132,2928,4.505]],["title/components/TokenDetailsComponent.html",[202,0.594,350,1.324]],["body/components/TokenDetailsComponent.html",[3,0.102,4,0.08,5,0.058,8,1.359,10,0.359,21,0.493,24,0.011,27,1.912,65,4.484,84,0.102,85,0.005,86,0.007,87,0.005,88,0.08,100,1.136,104,0.885,111,1.277,113,0.946,115,1.348,119,0.827,121,2.452,137,0.833,165,0.288,184,1.136,202,0.923,203,1.309,204,2.025,205,1.473,206,1.669,207,1.473,208,1.348,212,1.606,213,2.801,214,1.237,215,2.294,216,2.294,217,2.84,218,3.083,220,2.294,222,2.294,234,3.017,250,1.627,270,1.669,271,0.419,314,1.136,315,1.908,316,1.853,317,1.169,318,2.568,319,1.519,320,1.348,321,2.385,322,1.309,323,1.519,324,1.519,325,1.309,326,1.519,327,1.348,328,1.519,329,1.309,330,1.519,331,1.309,332,1.519,333,1.309,334,0.962,335,1.519,336,1.348,337,2.088,338,1.43,339,1.348,340,1.519,341,1.309,342,1.519,343,1.309,344,1.519,345,1.309,346,1.519,347,1.348,348,2.088,349,1.43,350,2.214,351,1.309,352,1.519,353,1.348,354,2.088,355,1.43,356,1.348,357,1.017,358,1.309,359,1.348,360,1.309,361,1.309,362,1.519,363,1.309,364,1.519,365,1.309,366,1.519,367,1.388,368,1.473,369,1.519,425,2.337,469,3.734,1098,2.717,1211,3.074,1278,3.537,1294,3.964,2365,4.586,2913,4.586,2920,4.586,2924,4.586,2928,5.049,2929,6.728,2930,5.65,2931,3.336,2932,5.769,2933,5.049,2934,6.728,2935,5.049,2936,5.769,2937,5.752,2938,4.185,2939,6.212,2940,3.673,2941,3.673,2942,4.586,2943,3.673,2944,4.185,2945,5.752,2946,5.752,2947,5.752,2948,5.752,2949,5.752,2950,5.752,2951,5.752,2952,5.752,2953,5.752,2954,5.752,2955,5.752,2956,5.752,2957,5.752]],["title/pipes/TokenRatioPipe.html",[1832,2.363,2882,2.916]],["body/pipes/TokenRatioPipe.html",[3,0.154,4,0.12,5,0.087,12,1.029,21,0.54,24,0.011,48,1.625,73,1.574,77,2.799,84,0.154,85,0.008,86,0.009,87,0.008,88,0.12,104,0.97,113,0.804,118,1.124,119,0.889,137,0.912,159,1.448,165,0.315,212,1.759,214,1.861,271,0.63,469,4.853,1688,4.341,1832,4.175,2806,4.643,2809,5.022,2811,6.357,2813,5.961,2882,5.152,2958,6.563,2959,5.529,2960,7.477,2961,6.299,2962,6.299,2963,6.299]],["title/classes/TokenRegistry.html",[88,0.081,2964,3.119]],["body/classes/TokenRegistry.html",[0,0.786,3,0.083,4,0.065,5,0.047,7,1.571,8,1.794,10,0.293,11,0.839,12,0.961,21,0.615,23,1.594,24,0.011,26,2.21,27,1.968,67,1.509,74,1.352,79,2.22,80,4.043,84,0.083,85,0.004,86,0.006,87,0.004,88,0.065,90,1.685,92,2.2,93,4.455,95,4.995,96,4.376,97,4.376,98,6.664,99,2.916,100,1.866,101,4.809,102,6.298,103,6.796,104,0.767,105,3.416,106,2.838,111,0.665,112,4.376,113,0.945,115,1.606,116,3.819,117,4.837,118,1.049,119,0.766,120,5.48,121,3.614,122,2.726,131,5.721,134,5.721,135,6.298,137,1.154,138,2.311,156,4.766,159,1.486,160,1.509,164,5.721,165,0.294,166,3.61,167,1.753,168,0.929,169,2,170,2.356,171,1.409,172,1.685,173,2.726,174,3.435,175,2.726,177,2.726,178,2.356,179,2.22,180,3.002,181,2.276,182,4.376,183,3.002,184,0.929,185,3.002,186,4.376,187,3.002,190,2.071,201,3.002,1119,2,1201,4.392,1252,4.197,1257,4.376,2964,3.675,2965,6.053,2966,2.726,2967,4.985,2968,7.175,2969,4.985,2970,3.419,2971,3.419,2972,4.985,2973,3.419,2974,6.905,2975,6.465,2976,3.419,2977,3.419,2978,4.985,2979,4.985,2980,3.419,2981,7.866,2982,3.419,2983,4.985,2984,3.419,2985,3.002,2986,3.419,2987,3.419,2988,3.419,2989,3.419,2990,3.419]],["title/injectables/TokenService.html",[389,2.602,910,1.182]],["body/injectables/TokenService.html",[3,0.094,4,0.074,5,0.053,10,0.331,11,0.916,12,1.117,21,0.692,23,1.524,24,0.011,26,1.049,27,1.806,48,1.486,73,1.708,74,1.832,77,2.358,84,0.094,85,0.005,86,0.007,87,0.005,88,0.074,95,3.684,104,0.838,106,3.028,111,1.224,113,1.074,118,1.219,119,0.762,121,2.685,137,1.136,138,2.696,159,1.718,160,2.401,165,0.374,184,2.03,190,2.965,195,3.392,198,1.904,250,1.251,271,0.387,279,1.759,389,3.346,425,2.157,434,3.873,558,2.987,565,5.021,579,1.766,673,1.833,910,1.52,913,1.904,927,1.904,941,5.04,977,5.662,1065,5.021,1122,2.663,1123,2.26,1125,2.508,1126,3.081,1134,3.081,1201,3.517,1211,2.908,2767,5.021,2964,5.662,2991,3.392,2992,6.298,2993,6.298,2994,5.441,2995,5.441,2996,5.441,2997,5.441,2998,6.837,2999,6.837,3000,6.837,3001,5.441,3002,5.441,3003,3.864,3004,5.441,3005,3.864,3006,3.864,3007,3.864,3008,5.441,3009,3.864,3010,3.864,3011,3.864,3012,3.864,3013,3.864,3014,5.441,3015,3.864,3016,3.864,3017,3.864,3018,4.776,3019,3.864,3020,5.441,3021,3.864,3022,3.864,3023,3.392,3024,3.864,3025,3.864,3026,3.864,3027,3.864,3028,3.864,3029,4.776,3030,3.864,3031,3.864,3032,3.864,3033,3.864,3034,3.864,3035,3.864,3036,3.392,3037,3.864,3038,4.776,3039,3.864,3040,3.392,3041,3.864,3042,3.864,3043,3.864,3044,3.864,3045,3.864,3046,3.864,3047,3.864,3048,3.864,3049,3.864,3050,3.864,3051,6.298,3052,6.298,3053,3.864,3054,3.864,3055,3.864]],["title/classes/TokenServiceStub.html",[88,0.081,3056,3.374]],["body/classes/TokenServiceStub.html",[3,0.157,4,0.123,5,0.089,10,0.552,12,1.053,21,0.552,23,1.564,24,0.011,84,0.157,85,0.008,86,0.009,87,0.008,88,0.123,90,3.175,104,1.167,113,0.822,118,1.15,119,0.845,137,0.933,159,1.481,553,3.598,886,3.124,1211,4.05,1676,4.751,2924,5.138,3056,6.042,3057,6.652,3058,7.578,3059,7.578,3060,6.445]],["title/components/TokensComponent.html",[202,0.594,351,1.324]],["body/components/TokensComponent.html",[3,0.089,4,0.069,5,0.05,8,1.23,10,0.311,11,0.876,12,0.995,21,0.661,23,1.183,24,0.011,27,1.757,48,1.132,73,0.907,84,0.148,85,0.004,86,0.006,87,0.004,88,0.069,100,0.986,104,0.802,106,2.143,111,1.012,113,1.03,115,1.17,118,1.086,119,0.889,121,2.834,137,0.963,138,1.677,160,2.934,165,0.386,184,0.986,190,1.833,202,0.855,203,1.136,204,1.833,205,1.279,206,1.449,207,1.279,208,1.17,212,1.454,213,2.595,214,1.073,215,2.077,216,2.077,217,2.808,218,3.043,219,3.202,220,2.077,222,2.077,234,2.834,245,4.032,250,1.684,254,1.073,270,1.449,271,0.363,274,1.789,275,1.862,276,1.318,279,1.7,310,2.783,314,0.986,315,1.727,316,1.677,317,1.014,318,2.413,319,1.318,320,1.17,321,2.209,322,1.136,323,1.318,324,1.318,325,1.136,326,1.318,327,1.17,328,1.318,329,1.136,330,1.318,331,1.136,332,1.318,333,1.136,334,0.835,335,1.318,336,1.17,337,1.89,338,1.241,339,1.17,340,1.318,341,1.136,342,1.318,343,1.136,344,1.318,345,1.136,346,1.318,347,1.17,348,1.89,349,1.241,350,1.136,351,2.08,352,1.318,353,1.17,354,1.89,355,1.241,356,1.17,357,0.882,358,1.136,359,1.17,360,1.136,361,1.136,362,1.318,363,1.136,364,1.318,365,1.136,366,1.318,367,1.205,368,1.279,369,1.318,375,4.195,379,4.195,380,4.195,382,3.588,383,4.582,388,2.914,389,4.504,391,3.588,402,4.195,411,4.195,412,3.38,413,3.588,415,4.195,416,3.588,418,2.503,419,1.862,420,1.941,421,1.941,422,2.233,425,2.028,426,2.677,436,2.677,438,2.677,439,2.503,440,2.677,441,2.503,448,2.677,449,1.949,452,2.677,453,2.503,463,3.588,469,3.38,1201,4.507,1211,3.553,2920,5.301,2943,3.188,3018,3.188,3029,4.57,3036,4.57,3038,4.57,3040,4.57,3061,3.188,3062,6.087,3063,5.207,3064,6.087,3065,5.207,3066,3.632,3067,5.207,3068,3.632,3069,3.632,3070,3.632,3071,5.207,3072,3.632,3073,3.632,3074,3.632,3075,3.632,3076,3.632,3077,3.632,3078,3.632,3079,3.632,3080,3.632,3081,3.632,3082,3.632]],["title/modules/TokensModule.html",[471,1.117,3083,3.119]],["body/modules/TokensModule.html",[3,0.128,4,0.1,5,0.072,24,0.011,83,1.169,84,0.128,85,0.006,86,0.008,87,0.006,88,0.1,165,0.442,168,1.81,271,0.523,314,1.42,350,2.554,351,2.554,419,2.68,420,2.794,421,2.794,471,1.381,473,1.897,474,2.576,475,3.922,476,2.68,477,2.794,482,4.022,484,3.562,485,2.794,486,2.48,488,2.748,489,3.899,490,2.919,492,3.058,494,3.058,497,3.603,501,4.327,502,4.594,503,4.914,504,3.854,505,4.594,506,4.099,507,3.215,508,4.327,509,3.394,510,3.058,511,4.099,512,3.215,513,4.099,514,3.215,515,4.327,516,3.394,522,4.594,523,3.394,2930,3.854,3083,6.375,3084,4.589,3085,4.589,3086,4.589,3087,5.625,3088,5.228,3089,5.228,3090,4.589,3091,4.589,3092,6.666,3093,6.666,3094,5.228,3095,6.666,3096,5.228]],["title/modules/TokensRoutingModule.html",[471,1.117,3087,2.916]],["body/modules/TokensRoutingModule.html",[3,0.153,4,0.12,5,0.087,24,0.011,67,2.775,74,1.445,83,1.406,84,0.153,85,0.008,86,0.009,87,0.008,88,0.12,165,0.413,168,1.708,202,1.049,271,0.629,276,2.282,350,2.337,351,2.337,473,2.282,488,3.079,497,4.333,533,3.679,534,3.779,535,4.17,536,4.369,540,3.867,2930,4.635,3087,5.147,3090,5.52,3091,5.52,3097,6.288]],["title/components/TopbarComponent.html",[202,0.594,353,1.363]],["body/components/TopbarComponent.html",[3,0.123,4,0.096,5,0.07,8,1.54,10,0.432,24,0.011,27,1.128,84,0.123,85,0.006,86,0.008,87,0.006,88,0.096,100,1.37,104,1.003,111,1.403,113,0.831,115,1.625,119,0.805,137,0.731,165,0.253,202,1.013,203,1.579,204,2.294,205,1.777,206,2.013,207,1.777,208,1.625,212,1.82,213,3.076,214,1.491,215,2.599,216,2.599,217,2.877,218,3.13,220,2.599,222,2.599,234,3.251,250,1.498,270,2.013,271,0.505,314,1.37,315,2.161,316,2.099,317,1.409,318,2.768,319,1.831,320,1.625,321,2.619,322,1.579,323,1.831,324,1.831,325,1.579,326,1.831,327,1.625,328,1.831,329,1.579,330,1.831,331,1.579,332,1.831,333,1.579,334,1.16,335,1.831,336,1.625,337,2.365,338,1.724,339,1.625,340,1.831,341,1.579,342,1.831,343,1.579,344,1.831,345,1.579,346,1.831,347,1.625,348,2.365,349,1.724,350,1.579,351,1.579,352,1.831,353,2.457,354,2.365,355,1.724,356,1.625,357,1.226,358,1.579,359,1.625,360,1.579,361,1.579,362,1.831,363,1.579,364,1.831,365,1.579,366,1.831,367,1.674,368,1.777,369,1.831,1429,4.803,3098,4.429,3099,7.217,3100,6.516,3101,5.046,3102,5.046]],["title/components/TopbarStubComponent.html",[202,0.594,355,1.446]],["body/components/TopbarStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.564,24,0.011,27,1.155,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.404,115,1.665,119,0.814,165,0.259,202,1.117,203,1.617,204,2.33,205,2.57,207,1.82,208,1.665,214,1.527,217,2.887,218,3.143,271,0.517,314,1.404,315,2.195,316,2.132,317,1.443,318,2.793,319,1.876,320,1.665,321,2.649,322,1.617,323,1.876,324,1.876,325,1.617,326,1.876,327,1.665,328,1.876,329,1.617,330,1.876,331,1.617,332,1.876,333,1.617,334,1.188,335,1.876,336,1.665,337,2.402,338,2.261,339,1.665,340,1.876,341,1.617,342,1.876,343,1.617,344,1.876,345,1.617,346,1.876,347,1.665,348,2.402,349,2.261,350,1.617,351,1.617,352,1.876,353,1.665,354,2.402,355,2.629,356,1.665,357,1.256,358,1.617,359,1.665,360,1.617,361,1.617,362,1.876,363,1.617,364,1.876,365,1.617,366,1.876,367,1.714,368,1.82,369,1.876,471,1.365,553,2.886,740,3.178,1418,3.81,1428,3.81,1429,4.878]],["title/interfaces/Transaction.html",[0,0.973,357,1.028]],["body/interfaces/Transaction.html",[0,1.884,1,3.986,2,1.811,3,0.107,4,0.084,5,0.061,7,1.067,8,1.783,9,1.644,10,0.509,11,1.001,12,0.972,21,0.731,23,1.657,24,0.011,25,1.501,26,2.226,27,1.907,38,3.592,48,1.57,64,2.467,80,2.164,83,0.982,84,0.107,85,0.005,86,0.007,87,0.005,117,2.701,119,0.663,121,3.39,165,0.22,254,1.298,357,2.155,449,1.644,762,4.156,871,4.144,904,2.701,1107,4.67,1186,3.027,1187,3.238,1188,3.238,1189,3.238,1190,3.027,1191,3.027,1192,5.163,1193,4.382,1194,4.382,1195,4.976,1196,4.382,1197,5.323,1198,3.238,1199,5.251,1200,4.974,1201,3.319,1202,4.382,1203,3.027,1204,3.238,1205,2.851,1206,2.851,1207,2.453,1208,3.238,1209,3.238,1210,3.027,1211,3.177]],["title/components/TransactionDetailsComponent.html",[202,0.594,356,1.363]],["body/components/TransactionDetailsComponent.html",[3,0.065,4,0.097,5,0.037,8,0.979,10,0.435,11,0.697,12,0.677,21,0.604,23,1.505,24,0.011,27,1.524,65,3.341,84,0.065,85,0.003,86,0.005,87,0.003,88,0.051,100,0.726,104,0.638,106,2.784,111,0.805,113,1.009,115,0.861,118,0.739,119,0.839,121,3.3,137,0.988,138,2.381,165,0.327,184,0.726,190,2.481,202,0.712,203,0.837,204,1.458,205,0.941,206,1.066,207,0.941,208,0.861,212,1.157,213,2.162,214,0.79,215,1.652,216,1.652,217,2.724,218,2.939,220,1.652,222,1.652,234,2.435,245,3.494,250,1.313,254,0.79,270,1.066,271,0.268,274,1.317,275,1.371,276,0.97,277,1.971,278,1.971,279,1.595,314,0.726,315,1.374,316,1.334,317,0.747,318,2.073,319,0.97,320,0.861,321,1.841,322,0.837,323,0.97,324,0.97,325,0.837,326,0.97,327,0.861,328,0.97,329,0.837,330,0.97,331,0.837,332,0.97,333,0.837,334,0.614,335,0.97,336,0.861,337,1.504,338,0.913,339,0.861,340,0.97,341,0.837,342,0.97,343,0.837,344,0.97,345,0.837,346,0.97,347,0.861,348,1.504,349,0.913,350,0.837,351,0.837,352,0.97,353,0.861,354,1.504,355,0.913,356,1.84,357,1.98,358,0.837,359,1.84,360,0.837,361,0.837,362,0.97,363,0.837,364,0.97,365,0.837,366,0.97,367,0.887,368,0.941,369,0.97,381,5.436,389,4.193,426,1.971,448,1.971,449,1.551,450,2.132,451,2.132,462,5.633,467,3.054,469,2.689,530,2.132,531,1.842,686,4.193,717,1.971,762,1.429,871,2.547,883,2.132,1098,1.736,1191,4.505,1195,4.505,1199,4.244,1200,4.02,1203,2.855,1205,2.689,1206,2.689,1211,3.494,1278,2.547,1294,2.855,1638,4.244,2560,1.736,2931,2.132,2932,4.452,2933,3.636,2934,5.985,2935,3.636,2936,4.452,2939,5.014,2940,2.347,2941,2.347,2942,3.303,3103,7.003,3104,6.361,3105,5.071,3106,5.071,3107,6.18,3108,5.071,3109,4.143,3110,5.712,3111,5.712,3112,5.712,3113,5.712,3114,5.071,3115,5.712,3116,4.143,3117,2.674,3118,2.674,3119,4.143,3120,2.674,3121,2.674,3122,2.674,3123,2.674,3124,2.674,3125,2.674,3126,2.674,3127,2.674,3128,2.674,3129,2.132,3130,2.674,3131,2.674,3132,5.071,3133,2.674,3134,2.674,3135,2.674,3136,2.674,3137,2.674,3138,2.674,3139,2.674,3140,2.674,3141,2.674,3142,2.674,3143,2.674,3144,2.674,3145,2.674,3146,2.674,3147,2.674,3148,2.674,3149,2.674,3150,2.347,3151,2.674,3152,2.674,3153,2.347,3154,2.674,3155,5.712,3156,5.712,3157,3.303,3158,4.143,3159,3.303,3160,3.636,3161,4.143,3162,4.143,3163,4.143,3164,3.636,3165,4.143,3166,4.143,3167,5.712,3168,5.712,3169,5.712,3170,4.143,3171,4.143,3172,4.143,3173,5.712,3174,4.143,3175,4.143,3176,4.143,3177,4.143,3178,5.712,3179,4.143]],["title/injectables/TransactionService.html",[686,2.602,910,1.182]],["body/injectables/TransactionService.html",[3,0.065,4,0.051,5,0.037,8,1.35,9,1.552,10,0.229,11,0.698,12,1.152,21,0.645,22,1.43,23,1.537,24,0.011,25,0.914,26,2.267,48,1.532,52,1.494,73,1.427,74,1.903,75,3.514,77,1.552,84,0.065,85,0.006,86,0.005,87,0.003,88,0.051,95,2.968,104,0.638,106,2.691,111,0.805,113,1.018,118,1.257,119,0.786,121,2.907,137,1.048,138,2.27,159,1.503,165,0.412,166,3.808,169,1.565,170,1.844,171,1.103,172,1.318,174,1.844,179,1.737,184,1.679,190,2.603,198,1.318,244,4.194,250,1.313,271,0.268,277,1.972,278,1.972,279,1.905,286,1.737,298,2.215,300,3.294,305,4.045,334,1.503,357,1.502,359,1.634,388,2.635,423,1.565,424,1.372,425,1.494,427,2.856,443,3.497,445,3.12,558,2.932,579,1.223,673,1.269,685,4.194,686,2.549,716,2.133,762,2.215,786,1.43,849,1.372,910,1.158,913,1.318,927,1.318,941,4.212,948,2.133,949,5.214,974,3.305,977,1.972,988,1.844,989,2.349,991,2.349,1001,2.349,1003,1.645,1026,2.349,1055,1.494,1059,3.74,1065,4.045,1095,4.556,1096,4.82,1107,2.314,1122,1.844,1123,2.425,1125,1.737,1126,2.133,1134,2.133,1157,3.305,1159,3.638,1173,3.638,1190,1.844,1206,1.737,2642,1.844,2689,1.844,2767,4.045,2836,4.454,3023,2.349,3157,3.305,3159,3.305,3160,2.349,3164,3.638,3180,2.133,3181,5.074,3182,5.074,3183,4.145,3184,4.145,3185,4.145,3186,3.638,3187,5.714,3188,3.638,3189,3.638,3190,5.074,3191,4.145,3192,4.145,3193,7.266,3194,2.676,3195,4.145,3196,2.676,3197,2.676,3198,2.676,3199,2.676,3200,2.676,3201,3.638,3202,2.676,3203,3.638,3204,2.676,3205,2.676,3206,5.714,3207,5.714,3208,2.676,3209,5.074,3210,4.145,3211,2.676,3212,2.676,3213,4.145,3214,2.676,3215,2.676,3216,2.676,3217,2.676,3218,2.676,3219,2.676,3220,2.349,3221,2.676,3222,2.349,3223,2.676,3224,2.676,3225,2.676,3226,2.676,3227,2.676,3228,4.145,3229,2.676,3230,2.349,3231,2.133,3232,2.676,3233,2.676,3234,2.676,3235,4.145,3236,4.145,3237,2.676,3238,2.349,3239,5.074,3240,4.145,3241,5.074,3242,5.074,3243,2.676,3244,5.074,3245,5.074,3246,4.145,3247,2.676,3248,3.638,3249,2.676,3250,2.676,3251,2.676,3252,2.676,3253,2.676,3254,2.676,3255,2.676,3256,4.145,3257,4.145,3258,4.145,3259,2.676,3260,2.676,3261,2.676,3262,2.676,3263,2.676,3264,2.676,3265,4.145,3266,2.676,3267,4.145,3268,2.349,3269,4.145,3270,2.676,3271,2.676,3272,2.676,3273,2.676,3274,2.676,3275,2.676,3276,2.676,3277,2.676,3278,2.676,3279,2.676,3280,2.676,3281,2.676,3282,2.676,3283,2.676,3284,2.676,3285,2.676,3286,2.676,3287,2.676,3288,2.676,3289,2.676,3290,2.676,3291,2.676,3292,2.676,3293,2.676,3294,2.676,3295,2.676,3296,2.676,3297,2.676,3298,2.676,3299,2.676,3300,2.676,3301,2.676,3302,2.676,3303,2.676,3304,2.676,3305,2.676,3306,2.676,3307,2.676,3308,2.676,3309,2.676,3310,2.676,3311,2.676,3312,2.676,3313,2.676,3314,2.676,3315,2.676,3316,2.676,3317,2.676,3318,2.676,3319,2.676,3320,2.676,3321,2.676]],["title/classes/TransactionServiceStub.html",[88,0.081,3322,3.374]],["body/classes/TransactionServiceStub.html",[3,0.144,4,0.112,5,0.081,10,0.505,12,1.266,21,0.664,24,0.011,26,2.35,84,0.144,85,0.007,86,0.009,87,0.007,88,0.112,90,2.902,104,1.105,113,0.988,118,1.382,119,0.864,137,1.122,159,1.354,165,0.295,250,1.853,357,1.431,553,3.289,558,3.674,579,2.693,762,3.148,886,3.324,1095,4.696,1096,5.71,1157,5.725,3186,6.303,3188,6.303,3189,6.303,3193,6.799,3201,6.303,3203,6.303,3322,5.725,3323,7.078,3324,5.89,3325,5.89,3326,5.17,3327,5.89,3328,5.89]],["title/components/TransactionsComponent.html",[202,0.594,358,1.324]],["body/components/TransactionsComponent.html",[3,0.072,4,0.057,5,0.041,8,1.06,10,0.254,11,0.755,12,0.884,21,0.709,23,1.375,24,0.011,26,1.218,27,0.663,48,1.621,73,1.506,84,0.132,85,0.004,86,0.005,87,0.004,88,0.057,100,0.806,104,0.691,106,1.904,111,0.872,113,1.05,115,0.956,118,0.965,119,0.759,137,0.986,138,1.445,160,3.214,165,0.365,184,0.806,190,2.398,202,0.759,203,0.928,204,1.579,205,1.044,206,1.183,207,1.044,208,0.956,212,1.253,213,2.306,214,0.877,215,1.789,216,1.789,217,2.755,218,2.977,219,2.758,220,1.789,222,1.789,234,2.57,244,4.35,250,1.747,254,0.877,270,1.183,271,0.297,274,1.462,275,1.521,279,1.684,286,1.926,298,2.397,300,1.926,310,2.397,314,0.806,315,1.488,316,1.445,317,0.828,318,2.188,319,1.077,320,0.956,321,1.963,322,0.928,323,1.077,324,1.077,325,0.928,326,1.077,327,0.956,328,1.077,329,0.928,330,1.077,331,0.928,332,1.077,333,0.928,334,0.682,335,1.077,336,0.956,337,1.628,338,1.014,339,0.956,340,1.077,341,0.928,342,1.077,343,0.928,344,1.077,345,0.928,346,1.077,347,0.956,348,1.628,349,1.014,350,0.928,351,0.928,352,1.077,353,0.956,354,1.628,355,1.014,356,0.956,357,1.846,358,1.887,359,2.521,360,0.928,361,0.928,362,1.077,363,0.928,364,1.077,365,0.928,366,1.077,367,0.984,368,1.044,369,1.077,375,3.728,376,4.748,378,4.748,379,3.728,380,3.728,381,5.639,382,3.091,383,4.155,389,4.35,391,3.091,402,3.728,404,4.445,406,4.807,408,3.576,409,3.938,411,3.728,412,2.912,413,3.091,415,3.728,416,3.091,418,2.044,419,1.521,420,1.585,421,1.585,422,1.824,423,1.735,424,1.521,425,1.656,426,2.187,439,3.091,441,3.091,443,2.044,445,1.824,446,1.926,448,2.187,449,1.679,450,2.365,451,2.365,453,2.044,462,5.021,463,3.091,467,3.307,469,3.914,686,4.35,717,2.187,974,2.365,1084,5.021,1199,3.914,1200,3.708,2548,2.604,2616,3.576,3153,2.604,3157,3.576,3159,3.576,3238,2.604,3268,3.938,3329,2.604,3330,5.409,3331,5.409,3332,4.486,3333,5.409,3334,5.409,3335,5.409,3336,5.409,3337,6.03,3338,6.03,3339,4.486,3340,2.966,3341,4.486,3342,2.966,3343,2.966,3344,2.966,3345,2.966,3346,2.966,3347,4.486,3348,2.966,3349,2.966,3350,2.966,3351,2.966,3352,2.966,3353,2.966,3354,2.966,3355,2.966,3356,2.966,3357,2.966,3358,2.966,3359,4.486,3360,2.966,3361,2.966,3362,4.486,3363,4.486,3364,2.966,3365,2.966,3366,2.966,3367,2.966,3368,4.486,3369,4.486,3370,2.966,3371,2.966,3372,6.03,3373,4.486,3374,4.486,3375,4.486,3376,4.486,3377,4.486,3378,4.486,3379,4.486]],["title/modules/TransactionsModule.html",[471,1.117,483,2.916]],["body/modules/TransactionsModule.html",[3,0.126,4,0.098,5,0.071,24,0.011,83,1.63,84,0.126,85,0.006,86,0.008,87,0.006,88,0.098,165,0.441,168,1.794,271,0.516,314,1.4,356,2.78,358,2.545,419,2.642,420,2.754,421,2.754,471,1.361,473,1.871,474,2.539,475,3.896,476,2.642,477,2.754,482,4.007,483,5.976,484,3.53,485,2.754,486,2.444,488,2.723,489,3.864,490,2.878,492,3.015,494,3.015,497,3.552,501,4.288,502,4.552,503,4.869,504,3.799,505,4.552,506,4.062,507,3.169,508,4.288,509,3.346,510,3.015,511,4.062,512,3.169,513,4.062,514,3.169,515,4.288,516,3.346,517,4.552,518,3.552,522,4.552,523,3.346,529,5.798,530,4.109,531,3.552,3104,4.109,3380,4.524,3381,4.524,3382,4.524,3383,4.524,3384,5.604,3385,5.154,3386,5.154,3387,4.524,3388,5.154]],["title/modules/TransactionsRoutingModule.html",[471,1.117,3384,2.916]],["body/modules/TransactionsRoutingModule.html",[3,0.158,4,0.123,5,0.089,24,0.011,74,1.484,83,1.443,84,0.158,85,0.008,86,0.009,87,0.008,88,0.123,165,0.403,168,1.753,202,0.906,271,0.646,276,2.343,358,2.374,473,2.343,488,3.127,533,3.777,534,3.821,535,4.236,536,3.777,540,3.97,3384,5.228,3387,5.667,3389,6.456]],["title/interfaces/Tx.html",[0,0.973,1107,2.363]],["body/interfaces/Tx.html",[0,1.897,1,3.606,2,1.872,3,0.111,4,0.087,5,0.063,7,1.103,8,1.62,9,2.276,10,0.587,11,1.023,21,0.687,23,1.621,24,0.011,25,1.551,26,2.327,27,1.864,38,3.474,48,0.987,64,2.342,80,2.237,83,1.015,84,0.111,85,0.006,86,0.007,87,0.006,117,2.792,119,0.678,121,3.253,165,0.227,254,2.025,357,2.152,449,2.276,762,4.197,871,5.012,904,3.738,1107,4.478,1186,3.129,1187,3.347,1188,3.347,1189,3.347,1190,3.129,1191,3.129,1192,4.954,1193,4.481,1194,4.481,1195,4.723,1196,4.481,1197,5.395,1198,3.347,1199,4.449,1200,4.214,1201,2.535,1202,3.347,1203,5.044,1204,4.481,1205,4.752,1206,3.947,1207,3.395,1208,5.395,1209,5.395,1210,3.129,1211,3.249]],["title/interfaces/TxToken.html",[0,0.973,1192,2.747]],["body/interfaces/TxToken.html",[0,1.906,1,3.641,2,1.917,3,0.113,4,0.089,5,0.064,7,1.13,8,1.639,9,1.741,10,0.529,11,1.04,21,0.659,23,1.67,24,0.011,25,1.589,26,2.191,27,1.921,38,3.493,48,1.011,64,2.525,80,3.044,83,1.04,84,0.113,85,0.006,86,0.008,87,0.006,117,3.799,119,0.882,121,3.536,165,0.233,254,1.375,357,2.139,449,1.741,762,4.226,871,4.265,904,2.86,1107,4.415,1186,3.206,1187,3.429,1188,3.429,1189,3.429,1190,3.206,1191,3.206,1192,5.133,1193,4.554,1194,4.554,1195,4.78,1196,4.554,1197,5.113,1198,3.429,1199,4.503,1200,4.265,1201,2.597,1202,3.429,1203,3.206,1204,3.429,1205,3.02,1206,3.02,1207,2.597,1208,3.429,1209,3.429,1210,4.257,1211,4.226]],["title/pipes/UnixDatePipe.html",[1832,2.363,2883,2.916]],["body/pipes/UnixDatePipe.html",[3,0.153,4,0.12,5,0.087,12,1.026,21,0.538,24,0.011,26,2.162,84,0.153,85,0.008,86,0.009,87,0.008,88,0.12,104,0.966,113,0.801,118,1.12,119,0.888,137,0.909,159,1.443,165,0.314,184,1.705,212,1.753,214,1.855,271,0.628,467,5.5,1205,4.075,1832,4.166,1950,5.869,2806,4.627,2809,5.005,2811,6.348,2813,5.949,2883,5.142,3390,6.549,3391,5.51,3392,7.461,3393,6.277,3394,6.277,3395,6.277,3396,6.277]],["title/classes/UserServiceStub.html",[88,0.081,3397,3.374]],["body/classes/UserServiceStub.html",[3,0.076,4,0.059,5,0.043,10,0.266,11,0.782,12,1.008,14,4.799,17,4.799,19,1.734,21,0.706,22,1.66,23,1.467,24,0.011,25,2.913,26,1.794,27,1.038,38,1.979,42,2.016,43,2.016,48,1.01,67,3.792,73,1.16,77,2.31,84,0.076,85,0.004,86,0.006,87,0.004,88,0.059,90,1.53,104,0.715,113,0.884,118,1.101,119,0.907,121,3.327,137,0.894,139,2.454,148,3.17,159,1.418,165,0.155,171,1.28,198,3.788,298,3.298,311,5.187,406,6.222,449,2.921,541,4.96,543,5.558,544,5.236,548,2.593,553,1.734,558,2.638,579,1.42,590,3.61,592,3.702,644,6.305,645,5.417,705,4.262,851,1.473,874,4.006,886,2.961,1119,4.054,1670,3.702,1672,3.702,1673,4.92,1674,6.129,1675,4.92,1676,5.444,1677,3.702,1678,3.702,1679,4.92,1680,3.702,1681,4.253,1682,3.702,1683,3.702,1684,3.702,1685,4.549,1686,3.702,1687,3.702,1688,3.2,1689,3.702,2066,3.702,2161,3.702,2191,3.702,2348,2.476,2385,3.702,2453,2.476,2461,4.434,2512,5.727,2513,4.92,2540,4.076,2852,4.099,3326,2.727,3397,3.702,3398,6.305,3399,4.644,3400,4.644,3401,3.106,3402,5.561,3403,5.561,3404,5.561,3405,7.804,3406,5.561,3407,5.561,3408,7.804,3409,7.804,3410,4.644,3411,4.644,3412,4.644,3413,4.644,3414,4.644,3415,4.644,3416,4.644,3417,4.644,3418,4.644,3419,4.644,3420,4.644,3421,4.644,3422,4.644,3423,4.644,3424,4.644,3425,4.644,3426,4.644,3427,4.644,3428,4.644,3429,4.644,3430,4.644,3431,4.644,3432,3.106,3433,4.644,3434,3.106,3435,4.644,3436,3.106,3437,3.106,3438,4.644,3439,3.106,3440,3.106,3441,3.106,3442,3.106,3443,3.106,3444,3.106,3445,3.106,3446,3.106,3447,3.106,3448,3.106,3449,2.727,3450,3.106]],["title/interfaces/W3.html",[0,0.973,2820,3.119]],["body/interfaces/W3.html",[0,1.746,2,2.322,3,0.137,4,0.107,5,0.078,7,1.369,10,0.483,11,1.176,21,0.599,24,0.011,63,4.362,64,2.595,83,1.259,84,0.137,85,0.007,86,0.009,87,0.007,88,0.107,93,5.472,95,4.087,100,2.259,116,4.536,166,4.558,178,5.733,181,1.984,301,5.57,357,1.369,908,5.57,1003,3.464,1100,4.241,1263,5.625,1413,5.57,1470,4.153,2550,5.15,2570,4.492,2817,4.492,2818,6.667,2819,4.945,2820,6.017,2821,4.945,2823,6.133,2824,6.133,2829,4.945,2830,6.133,2831,6.133]],["title/injectables/Web3Service.html",[169,2.475,910,1.182]],["body/injectables/Web3Service.html",[3,0.148,4,0.116,5,0.084,10,0.52,11,1.23,21,0.52,24,0.011,84,0.148,85,0.007,86,0.009,87,0.007,88,0.116,104,1.125,105,2.677,111,1.525,113,1.001,137,0.879,159,1.395,165,0.393,166,4.856,169,4.277,171,2.501,172,2.989,184,1.648,271,0.607,279,2.191,673,2.878,910,2.042,913,2.989,927,2.989,1295,6.242,3451,5.326,3452,8.145,3453,7.311,3454,6.067,3455,7.847,3456,6.067]],["title/coverage.html",[3457,4.621]],["body/coverage.html",[0,1.865,1,1.445,5,0.041,6,4.183,21,0.251,22,2.377,24,0.011,27,0.656,52,1.638,55,2.28,71,1.904,75,1.804,77,3.295,85,0.004,86,0.005,87,0.004,88,0.149,89,2.338,91,4.283,130,1.804,166,2.483,169,1.716,171,2.214,174,3.065,184,0.796,202,1.177,203,0.918,209,3.904,210,2.162,211,2.574,244,1.804,257,1.804,298,4.733,317,1.8,320,0.945,322,0.918,325,0.918,327,0.945,329,0.918,331,0.918,333,0.918,334,1.378,336,0.945,338,1.002,339,0.945,341,0.918,343,0.918,345,0.918,347,0.945,349,1.002,350,0.918,351,0.918,353,0.945,355,1.002,356,0.945,357,0.713,358,0.918,361,0.918,363,0.918,365,0.918,367,0.973,370,2.574,374,2.021,388,1.133,389,1.804,422,1.804,471,1.419,496,2.338,499,2.162,541,1.804,542,2.574,550,2.338,551,2.574,552,1.716,553,4.053,587,2.574,590,1.904,616,1.904,658,1.638,672,2.574,685,1.804,686,1.804,687,1.804,762,1.567,771,2.021,772,1.904,773,2.021,774,2.021,787,2.162,788,2.021,794,2.338,824,2.574,851,2.548,862,1.904,876,2.735,878,2.574,886,2.214,910,2.18,928,2.574,929,1.804,986,2.338,988,2.021,1084,2.162,1085,2.574,1086,2.574,1100,1.638,1107,1.638,1125,1.904,1186,4.131,1192,1.904,1212,2.574,1213,2.574,1216,2.021,1217,2.162,1219,2.162,1221,2.162,1260,2.574,1261,2.574,1291,2.338,1292,2.574,1322,2.574,1323,2.162,1324,2.574,1338,2.574,1339,2.574,1357,3.507,1359,2.574,1417,2.574,1428,3.96,1430,3.96,1431,3.96,1498,5.222,1502,2.574,1503,2.574,1514,2.574,1523,2.574,1526,2.162,1564,2.574,1580,2.574,1620,3.546,1621,2.574,1647,3.546,1656,2.162,1657,5.925,1658,5.925,1832,2.999,2447,2.338,2514,2.338,2580,2.574,2581,2.338,2582,2.574,2601,2.574,2635,1.904,2636,4.574,2637,4.131,2665,1.904,2712,2.574,2740,2.574,2760,2.574,2765,2.338,2775,2.338,2776,2.574,2790,2.574,2791,2.338,2805,2.021,2807,2.574,2817,3.546,2820,2.162,2832,2.574,2882,2.021,2883,2.021,2897,2.574,2910,2.574,2916,2.574,2929,2.574,2930,2.162,2931,4.283,2958,2.574,2959,2.574,2964,2.162,2965,4.283,2966,4.283,2974,2.574,2991,2.574,3056,2.338,3057,2.574,3061,2.574,3098,2.574,3103,2.574,3104,2.338,3129,2.338,3180,3.546,3322,2.338,3323,2.574,3329,2.574,3390,2.574,3391,2.574,3397,2.338,3398,2.574,3451,2.574,3457,2.338,3458,2.933,3459,2.933,3460,5.372,3461,8.308,3462,8.381,3463,4.447,3464,7.7,3465,2.574,3466,2.574,3467,2.574,3468,2.574,3469,2.574,3470,5.372,3471,2.574,3472,4.78,3473,6.443,3474,7.978,3475,2.574,3476,2.574,3477,4.283,3478,2.574,3479,2.574,3480,2.574,3481,3.904,3482,3.904,3483,2.574,3484,2.574,3485,2.574,3486,2.574,3487,2.933,3488,4.447,3489,5.372,3490,4.715,3491,4.447,3492,2.574,3493,2.933,3494,2.933,3495,2.933,3496,4.447,3497,5.372,3498,6.443,3499,4.447,3500,5.372,3501,5.372,3502,2.933,3503,3.904,3504,2.933,3505,2.933,3506,2.933,3507,2.933,3508,5.995,3509,4.447,3510,2.933,3511,2.933,3512,2.933,3513,2.574,3514,2.574,3515,2.574,3516,2.574,3517,2.933,3518,2.933,3519,2.933]],["title/dependencies.html",[474,2.51,3520,3.524]],["body/dependencies.html",[9,2.223,22,3.174,24,0.011,52,3.316,85,0.007,86,0.009,87,0.007,166,3.316,271,0.594,273,3.174,276,2.155,474,2.926,476,3.044,490,3.316,579,2.715,620,5.213,711,4.734,712,3.855,777,5.753,778,4.029,791,4.734,792,4.734,1003,3.652,1037,4.092,1122,4.092,1123,4.221,1363,3.474,3220,5.213,3222,5.213,3231,4.734,3521,7.608,3522,5.938,3523,7.216,3524,5.938,3525,5.938,3526,5.938,3527,5.938,3528,5.938,3529,5.938,3530,5.938,3531,5.938,3532,5.938,3533,5.938,3534,5.938,3535,5.938,3536,5.938,3537,5.938,3538,5.938,3539,5.938,3540,5.938,3541,5.938,3542,5.938,3543,5.938,3544,5.938,3545,5.938,3546,5.938,3547,5.938]],["title/miscellaneous/functions.html",[2553,4.062,3548,2.597]],["body/miscellaneous/functions.html",[5,0.101,7,1.949,9,3.003,10,0.39,12,1.349,21,0.673,22,3.914,24,0.011,26,1.235,32,3.351,57,2.156,64,2.502,83,1.016,85,0.006,86,0.007,87,0.006,92,2.685,101,3.95,113,0.776,118,1.473,119,0.93,131,4.851,132,3.991,134,4.851,137,1.218,138,1.96,139,1.553,140,2.951,150,4.851,160,3.681,198,2.24,250,1.576,254,1.344,334,1.576,422,3.742,576,3.133,582,5.341,705,3.742,986,4.851,1119,3.559,1278,2.796,1363,2.66,1430,3.351,1431,4.485,1499,3.625,1688,3.133,2553,3.625,2755,6.02,2765,5.468,3129,4.851,3150,3.991,3465,3.991,3466,5.341,3467,5.341,3468,3.991,3469,5.341,3471,3.991,3472,6.086,3475,3.991,3476,5.341,3477,3.625,3478,5.341,3479,5.341,3481,3.991,3482,6.02,3483,5.341,3484,5.341,3485,3.991,3486,5.341,3548,3.351,3549,4.547,3550,4.547,3551,4.547,3552,4.547,3553,5.341,3554,6.085,3555,4.547,3556,4.547,3557,4.547,3558,6.085,3559,4.547,3560,4.547,3561,4.547,3562,4.547,3563,5.341,3564,6.858,3565,4.547,3566,6.085,3567,4.547,3568,3.991,3569,3.991,3570,4.547,3571,6.085,3572,6.858,3573,7.634,3574,6.428,3575,4.547,3576,4.547,3577,4.547,3578,4.547,3579,4.547,3580,4.547,3581,4.547,3582,4.547,3583,4.547,3584,4.547,3585,3.991,3586,4.547,3587,4.547,3588,4.547,3589,6.085,3590,4.547,3591,4.547,3592,4.547,3593,4.851,3594,4.547,3595,6.085,3596,7.323,3597,5.341,3598,6.085,3599,4.547,3600,4.547,3601,6.085,3602,6.085,3603,4.547]],["title/index.html",[10,0.302,3604,3.093,3605,3.093]],["body/index.html",[4,0.091,5,0.087,24,0.008,54,2.793,73,1.193,85,0.006,86,0.008,87,0.006,100,1.296,119,0.832,171,3.198,184,1.707,202,0.986,205,1.681,218,2.629,359,1.538,471,2.144,473,1.733,486,2.981,547,3.099,548,2.666,552,3.676,555,4.19,559,5.179,576,4.842,707,3.29,734,4.19,828,4.19,874,3.099,891,2.447,898,3.519,900,2.936,1003,2.936,1037,5.145,1078,5.872,1123,2.793,1207,2.666,1256,6.167,1262,4.08,1293,4.19,1397,4.561,1505,5.517,1582,4.19,1612,5.011,1638,3.099,2095,5.602,2671,4.561,2852,3.519,3521,4.19,3585,6.167,3606,6.285,3607,4.774,3608,7.026,3609,7.758,3610,7.63,3611,8.121,3612,5.517,3613,4.774,3614,4.774,3615,6.167,3616,8.241,3617,4.774,3618,5.517,3619,4.774,3620,4.774,3621,4.774,3622,4.774,3623,4.774,3624,4.774,3625,4.19,3626,4.774,3627,4.19,3628,4.774,3629,6.81,3630,4.774,3631,4.774,3632,4.19,3633,4.774,3634,7.965,3635,4.774,3636,4.774,3637,4.774,3638,4.774,3639,6.285,3640,4.774,3641,6.167,3642,7.026,3643,4.19,3644,4.774,3645,4.774,3646,4.19,3647,5.517,3648,6.285,3649,7.466,3650,5.517,3651,4.774,3652,6.554,3653,4.774,3654,4.774,3655,6.185,3656,4.774,3657,6.285,3658,4.774,3659,4.19,3660,4.774,3661,4.774,3662,4.774,3663,4.774,3664,4.774,3665,4.774,3666,7.026,3667,4.774,3668,4.774,3669,4.774,3670,4.774,3671,4.19,3672,6.285,3673,4.774,3674,4.774,3675,4.774,3676,4.774,3677,4.774,3678,4.19,3679,4.19,3680,4.774,3681,3.806,3682,4.774,3683,4.774]],["title/license.html",[3604,3.093,3605,3.093,3684,3.093]],["body/license.html",[0,0.994,2,1.045,4,0.147,5,0.026,9,0.949,20,1.646,21,0.159,24,0.002,25,2.059,26,0.505,28,0.606,35,3.945,36,1.283,38,1.974,44,0.578,54,4.09,57,2.632,64,2.284,65,1.089,85,0.002,86,0.002,87,0.002,88,0.02,99,1.811,100,1.258,101,2.317,104,0.159,105,3.085,113,0.132,116,2.01,121,0.441,128,0.909,141,0.909,145,2.46,146,1.869,147,3.614,149,3.489,156,1.372,159,0.238,165,0.052,184,1.175,198,1.759,202,0.501,250,0.238,279,0.289,305,0.825,312,2.01,357,1.051,404,1.869,408,0.825,423,1.089,449,0.388,486,0.491,539,0.672,547,2.317,559,5.102,562,2.468,563,0.606,565,0.825,580,1.634,581,1.634,590,0.672,616,0.672,631,0.909,658,0.578,691,0.637,700,1.208,705,2.195,724,0.672,727,0.909,729,2.317,743,0.713,809,2.631,851,0.491,874,2.317,879,1.484,881,3.169,886,0.767,898,1.372,899,0.825,902,4.1,904,1.904,911,3.014,912,3.294,997,0.909,1003,0.637,1005,0.909,1013,0.909,1014,1.634,1035,0.909,1037,2.46,1055,0.578,1096,1.372,1119,2.088,1123,0.606,1161,0.909,1162,1.634,1200,1.904,1252,1.646,1254,1.372,1265,3.949,1279,1.283,1280,3.169,1283,1.634,1305,1.634,1369,0.909,1377,0.713,1397,4.846,1398,0.909,1406,1.484,1414,2.225,1425,0.909,1426,1.634,1427,1.634,1446,2.468,1451,1.484,1461,3.693,1463,0.825,1465,2.021,1494,5.46,1612,1.484,1623,0.825,1624,0.909,1637,0.763,1638,0.672,1639,1.372,1641,0.763,1660,2.717,1663,0.909,1681,1.747,1685,0.763,1827,0.825,1959,0.825,1979,0.825,2025,1.869,2115,0.825,2134,0.825,2163,0.825,2169,0.825,2178,0.825,2186,6.769,2188,4.1,2407,0.825,2408,3.169,2524,1.634,2525,1.634,2549,0.909,2550,2.282,2552,2.225,2602,1.484,2616,0.825,2623,3.133,2628,0.909,2647,0.825,2667,3.945,2671,2.01,2718,2.021,2791,0.825,2835,0.909,2852,3.614,2915,2.225,2942,2.021,3248,1.634,3449,1.634,3457,1.484,3516,0.909,3563,5.164,3568,6.137,3569,1.634,3574,0.909,3593,0.825,3597,1.634,3610,4.066,3612,2.717,3615,0.909,3618,1.634,3625,2.717,3627,2.717,3629,0.909,3632,0.909,3643,0.909,3646,4.872,3647,2.225,3650,0.909,3652,0.909,3659,2.225,3671,0.909,3678,4.066,3679,3.797,3684,7.492,3685,6.499,3686,1.035,3687,1.035,3688,2.535,3689,7.282,3690,4.632,3691,6.596,3692,7.117,3693,3.974,3694,1.035,3695,1.035,3696,1.861,3697,3.569,3698,3.569,3699,2.535,3700,2.535,3701,1.035,3702,1.035,3703,1.861,3704,3.974,3705,1.035,3706,3.974,3707,1.035,3708,1.035,3709,4.632,3710,1.035,3711,1.035,3712,1.035,3713,5.883,3714,7.898,3715,5.883,3716,2.535,3717,2.535,3718,1.861,3719,1.861,3720,4.325,3721,4.325,3722,5.883,3723,3.569,3724,1.035,3725,1.035,3726,3.096,3727,4.632,3728,1.861,3729,4.632,3730,2.535,3731,1.035,3732,1.861,3733,1.035,3734,2.535,3735,6.499,3736,3.569,3737,1.861,3738,3.096,3739,1.035,3740,1.035,3741,1.861,3742,3.096,3743,5.55,3744,1.861,3745,6.686,3746,1.861,3747,3.096,3748,4.325,3749,3.569,3750,1.035,3751,4.632,3752,3.569,3753,7.378,3754,2.535,3755,4.325,3756,1.035,3757,1.035,3758,1.035,3759,4.632,3760,1.861,3761,5.357,3762,5.142,3763,3.569,3764,1.861,3765,1.035,3766,1.035,3767,6.028,3768,1.861,3769,1.035,3770,5.725,3771,1.861,3772,1.035,3773,2.535,3774,1.035,3775,1.035,3776,1.035,3777,1.035,3778,1.035,3779,1.035,3780,1.035,3781,1.035,3782,1.035,3783,1.861,3784,1.035,3785,1.035,3786,1.035,3787,1.861,3788,1.035,3789,1.035,3790,1.861,3791,1.861,3792,5.883,3793,1.035,3794,1.861,3795,1.861,3796,1.035,3797,1.035,3798,2.535,3799,1.861,3800,2.535,3801,1.035,3802,1.035,3803,3.974,3804,1.035,3805,1.035,3806,3.569,3807,1.035,3808,1.035,3809,3.096,3810,1.035,3811,1.035,3812,1.861,3813,2.535,3814,1.035,3815,1.035,3816,4.902,3817,1.035,3818,5.883,3819,3.096,3820,3.569,3821,3.974,3822,2.535,3823,1.035,3824,2.535,3825,6.395,3826,1.861,3827,1.035,3828,1.035,3829,1.035,3830,2.535,3831,7.798,3832,5.142,3833,1.035,3834,1.035,3835,1.861,3836,1.861,3837,1.035,3838,5.142,3839,1.035,3840,3.096,3841,4.632,3842,1.035,3843,2.535,3844,2.535,3845,1.861,3846,3.974,3847,7.712,3848,2.535,3849,4.902,3850,3.096,3851,4.325,3852,1.861,3853,1.035,3854,1.861,3855,2.535,3856,4.902,3857,3.096,3858,1.035,3859,1.861,3860,1.861,3861,3.096,3862,3.096,3863,1.035,3864,2.535,3865,1.035,3866,7.056,3867,1.861,3868,1.035,3869,4.632,3870,1.035,3871,2.535,3872,6.028,3873,3.096,3874,1.861,3875,5.357,3876,3.974,3877,1.035,3878,1.035,3879,4.632,3880,1.035,3881,1.861,3882,1.035,3883,1.861,3884,2.535,3885,2.535,3886,1.035,3887,1.035,3888,1.035,3889,2.535,3890,2.535,3891,1.035,3892,1.035,3893,1.035,3894,1.861,3895,3.974,3896,1.035,3897,2.535,3898,2.535,3899,3.974,3900,2.535,3901,2.535,3902,1.035,3903,1.035,3904,3.569,3905,3.974,3906,1.035,3907,1.035,3908,1.035,3909,2.535,3910,1.035,3911,1.035,3912,1.035,3913,1.035,3914,1.035,3915,1.861,3916,1.035,3917,6.848,3918,4.632,3919,1.035,3920,1.861,3921,1.035,3922,1.035,3923,1.861,3924,1.861,3925,1.035,3926,1.035,3927,1.035,3928,1.861,3929,2.535,3930,1.035,3931,1.861,3932,1.035,3933,1.035,3934,1.035,3935,1.035,3936,5.142,3937,4.325,3938,3.096,3939,1.035,3940,3.569,3941,1.035,3942,1.861,3943,1.035,3944,1.035,3945,1.035,3946,1.035,3947,1.035,3948,2.535,3949,2.535,3950,1.035,3951,1.035,3952,1.861,3953,1.861,3954,1.861,3955,1.035,3956,1.861,3957,1.035,3958,1.035,3959,1.035,3960,1.035,3961,1.035,3962,1.035,3963,2.535,3964,1.035,3965,1.035,3966,6.028,3967,1.035,3968,1.035,3969,1.035,3970,3.569,3971,3.569,3972,1.035,3973,1.035,3974,2.535,3975,1.035,3976,1.035,3977,3.096,3978,1.035,3979,1.861,3980,1.035,3981,1.035,3982,1.035,3983,1.035,3984,1.035,3985,1.861,3986,1.861,3987,1.035,3988,2.535,3989,1.035,3990,1.035,3991,1.861,3992,1.035,3993,1.035,3994,1.035,3995,1.035,3996,1.861,3997,1.861,3998,3.974,3999,1.035,4000,1.035,4001,1.861,4002,2.535,4003,2.535,4004,3.096,4005,3.096,4006,3.096,4007,1.861,4008,1.035,4009,3.569,4010,3.569,4011,1.035,4012,1.861,4013,1.861,4014,3.569,4015,1.861,4016,3.096,4017,3.096,4018,1.861,4019,2.535,4020,5.883,4021,3.569,4022,1.035,4023,1.035,4024,1.035,4025,2.535,4026,2.535,4027,1.861,4028,1.861,4029,1.035,4030,1.035,4031,1.035,4032,1.861,4033,1.035,4034,1.035,4035,1.035,4036,2.535,4037,1.035,4038,1.035,4039,2.535,4040,1.035,4041,1.861,4042,1.035,4043,1.035,4044,1.035,4045,1.861,4046,1.861,4047,3.974,4048,6.686,4049,2.535,4050,1.861,4051,1.861,4052,1.861,4053,1.861,4054,3.096,4055,1.861,4056,1.035,4057,1.035,4058,1.035,4059,1.035,4060,3.974,4061,1.861,4062,1.035,4063,1.035,4064,1.035,4065,1.035,4066,1.861,4067,1.035,4068,1.861,4069,1.035,4070,3.569,4071,1.035,4072,1.035,4073,1.035,4074,1.035,4075,1.035,4076,1.861,4077,1.035,4078,1.035,4079,1.035,4080,2.535,4081,3.569,4082,3.096,4083,1.861,4084,1.035,4085,1.035,4086,1.035,4087,1.035,4088,1.035,4089,1.861,4090,1.035,4091,1.035,4092,2.535,4093,3.096,4094,1.035,4095,1.035,4096,1.861,4097,1.035,4098,1.035,4099,2.535,4100,1.035,4101,1.035,4102,1.035,4103,1.035,4104,1.035,4105,1.861,4106,1.035,4107,1.035,4108,1.035,4109,1.035,4110,2.535,4111,1.035,4112,1.035,4113,1.035,4114,1.035,4115,3.569,4116,1.035,4117,1.035,4118,3.096,4119,1.035,4120,1.035,4121,1.035,4122,1.035,4123,1.035,4124,1.035,4125,2.535,4126,1.035,4127,1.035,4128,1.035,4129,2.535,4130,1.035,4131,1.035,4132,2.535,4133,1.035,4134,1.861,4135,1.035,4136,1.035,4137,1.035,4138,1.035,4139,1.035,4140,1.035,4141,1.035,4142,1.035,4143,1.861,4144,1.035,4145,1.035,4146,1.035,4147,1.861,4148,1.861,4149,1.035,4150,1.035,4151,2.535,4152,1.035,4153,2.535,4154,1.861,4155,1.035,4156,1.861,4157,1.861,4158,1.035,4159,2.535,4160,4.325,4161,1.035,4162,1.861,4163,1.634,4164,1.035,4165,1.861,4166,1.035,4167,1.035,4168,1.035,4169,1.035,4170,1.035,4171,1.861,4172,1.035,4173,3.096,4174,1.035,4175,3.569,4176,1.035,4177,1.035,4178,1.035,4179,1.035,4180,1.035,4181,1.861,4182,1.861,4183,1.861,4184,2.535,4185,1.035,4186,1.861,4187,1.861,4188,1.035,4189,2.535,4190,1.035,4191,1.861,4192,1.035,4193,1.861,4194,1.035,4195,1.861,4196,1.035,4197,1.035,4198,1.861,4199,6.848,4200,1.861,4201,1.035,4202,3.569,4203,5.142,4204,2.535,4205,1.035,4206,1.035,4207,1.035,4208,3.096,4209,1.035,4210,1.035,4211,2.535,4212,1.861,4213,1.035,4214,1.035,4215,1.035,4216,1.035,4217,1.035,4218,1.035,4219,1.035,4220,1.035,4221,3.096,4222,1.861,4223,1.861,4224,1.035,4225,1.035,4226,2.535,4227,1.035,4228,1.861,4229,2.535,4230,1.861,4231,1.035,4232,1.035,4233,1.035,4234,1.035,4235,1.861,4236,2.535,4237,1.035,4238,1.035,4239,1.861,4240,1.035,4241,1.035,4242,1.035,4243,1.035,4244,1.035,4245,1.035,4246,2.535,4247,1.861,4248,1.035,4249,1.035,4250,3.096,4251,1.035,4252,2.535,4253,1.035,4254,1.035,4255,1.861,4256,1.035,4257,1.035,4258,1.035,4259,2.535,4260,1.861,4261,1.035,4262,4.325,4263,1.861,4264,2.535,4265,3.096,4266,1.035,4267,1.035,4268,1.861,4269,1.035,4270,2.535,4271,1.035,4272,1.861,4273,1.035,4274,1.035,4275,1.035,4276,1.035,4277,2.535,4278,1.035,4279,1.861,4280,2.535,4281,1.861,4282,1.035,4283,1.861,4284,1.035,4285,1.035,4286,1.861,4287,1.861,4288,1.035,4289,1.035,4290,1.861,4291,1.035,4292,1.035,4293,1.035,4294,1.035,4295,1.035,4296,1.035,4297,1.035,4298,1.035,4299,1.035,4300,1.035,4301,1.861,4302,2.535,4303,1.035,4304,1.035,4305,1.035,4306,1.035,4307,1.035,4308,1.861,4309,1.035,4310,1.035,4311,1.035,4312,1.035,4313,1.035,4314,1.035,4315,1.035,4316,1.035,4317,1.035,4318,1.035,4319,1.035,4320,1.035,4321,1.035,4322,3.096,4323,1.035,4324,1.861,4325,1.035,4326,1.035,4327,1.035,4328,1.035,4329,1.035,4330,1.035,4331,1.035,4332,1.035,4333,1.035,4334,1.035,4335,2.535,4336,1.035,4337,1.035,4338,1.035,4339,1.035,4340,1.861,4341,1.035,4342,1.035,4343,1.035,4344,1.035,4345,1.035,4346,1.861,4347,1.861,4348,2.535,4349,1.035,4350,1.861,4351,1.035,4352,1.035,4353,1.035,4354,1.035,4355,2.535,4356,1.861,4357,1.035,4358,1.861,4359,1.861,4360,1.861,4361,1.035,4362,1.035,4363,1.035,4364,1.035,4365,1.035,4366,1.035,4367,1.861,4368,1.035,4369,1.035,4370,1.861,4371,1.035,4372,2.535,4373,1.035,4374,1.035,4375,1.035,4376,1.035,4377,1.035,4378,1.035,4379,1.035,4380,1.035,4381,1.035,4382,1.035,4383,1.035,4384,1.035,4385,1.035,4386,1.035,4387,1.035,4388,1.035,4389,1.035,4390,1.035,4391,1.035,4392,1.035,4393,1.035,4394,1.035,4395,1.035,4396,1.035,4397,1.035,4398,1.035,4399,1.035,4400,1.035,4401,1.035,4402,1.035,4403,2.535,4404,1.861,4405,1.035,4406,1.035,4407,1.035,4408,1.035,4409,1.035,4410,1.861,4411,1.035,4412,1.035,4413,1.861,4414,1.861,4415,1.035,4416,1.035,4417,1.035,4418,1.035,4419,1.035,4420,1.035,4421,1.035,4422,1.035,4423,1.035,4424,1.035,4425,1.035,4426,1.035,4427,1.035,4428,1.035,4429,1.035,4430,1.035,4431,1.035,4432,1.035,4433,1.035,4434,1.035,4435,1.035,4436,1.035,4437,1.035,4438,1.035]],["title/modules.html",[473,2.104]],["body/modules.html",[24,0.009,85,0.007,86,0.009,87,0.007,147,6.37,472,4.48,473,2.206,481,4.188,482,2.994,483,4.188,663,4.48,667,4.188,764,4.48,770,4.188,778,4.857,916,4.48,920,4.188,2718,6.936,2720,4.48,2724,4.188,2865,4.48,2869,4.188,3083,4.48,3087,4.188,3384,4.188,4439,8.699,4440,8.926,4441,8.641]],["title/overview.html",[3681,4.621]],["body/overview.html",[2,1.636,24,0.011,77,1.486,83,0.887,85,0.005,86,0.007,87,0.005,90,1.956,203,2,204,1.398,314,1.078,320,2.059,322,2,325,2,327,2.493,329,2,331,2,333,2,336,2.493,339,2.493,341,2,343,2,345,2,347,2.493,350,2,351,2,353,2.493,356,2.493,358,2,360,1.242,361,2.422,363,2,365,2,471,1.048,472,6.263,473,1.441,474,1.956,475,2.121,476,2.035,477,2.121,478,3.484,479,3.484,480,3.484,481,4.404,482,4.379,483,5.71,484,2.963,485,2.121,486,1.883,663,5.82,664,3.484,665,3.484,666,3.484,667,4.404,705,2.441,764,6.291,765,3.484,766,3.484,767,3.484,768,3.484,769,3.484,770,4.404,771,4.404,772,4.149,773,4.404,774,4.404,877,3.165,916,5.99,917,3.484,918,3.484,919,3.484,920,4.404,927,1.956,1119,2.322,1681,2.736,2720,5.82,2721,3.484,2722,3.484,2723,3.484,2724,4.404,2805,5.333,2806,2.926,2865,5.99,2866,3.484,2867,3.484,2868,3.484,2869,4.404,2879,3.484,2880,3.484,2881,3.484,2882,5.333,2883,5.333,3083,5.99,3084,3.484,3085,3.484,3086,3.484,3087,4.404,3380,3.484,3381,3.484,3382,3.484,3383,3.484,3384,4.404,3681,3.165,4163,3.484,4442,3.97,4443,3.97,4444,5.545]],["title/routes.html",[534,2.749]],["body/routes.html",[24,0.01,85,0.009,86,0.01,87,0.009,534,3.309]],["title/miscellaneous/variables.html",[3548,2.597,3655,4.062]],["body/miscellaneous/variables.html",[1,0.881,6,1.161,8,0.913,9,1.446,10,0.153,11,0.301,16,1.233,17,1.1,18,1.233,19,0.999,20,1.161,21,0.641,22,2.688,24,0.011,25,2.222,26,0.486,27,0.4,28,1.752,31,1.046,32,1.319,38,0.763,39,1.233,40,1.233,41,1.233,42,1.161,43,1.161,44,0.999,45,1.233,47,1.1,48,1.715,49,1.233,50,1.233,51,1.233,52,0.999,53,1.233,54,1.046,64,2.152,67,2.401,70,0.999,72,0.917,73,1.919,75,1.842,76,1.161,77,1.446,78,2.933,79,1.944,80,1.476,81,1.233,82,1.233,83,0.4,85,0.002,86,0.004,87,0.002,91,1.426,93,1.233,95,1.752,100,0.813,116,1.944,120,2.388,139,1.719,148,2.219,160,2.401,166,3.038,171,2.382,173,2.388,174,3.749,175,2.388,176,1.57,177,2.388,178,2.064,179,1.944,184,0.486,198,0.881,208,0.576,298,0.956,311,2.508,357,0.435,359,0.576,374,2.064,531,1.233,541,3.346,543,3.749,544,3.532,547,1.944,548,2.157,572,4.338,590,2.508,658,1.672,705,1.1,712,1.944,784,1.426,787,2.208,800,3.391,809,1.319,810,1.426,811,1.426,851,1.421,873,2.848,874,1.944,876,1.1,886,0.737,1078,1.319,1119,1.046,1216,2.064,1217,2.848,1219,2.848,1254,1.319,1263,1.233,1279,1.233,1447,2.208,1526,2.208,1656,2.208,1657,1.426,1658,5.021,1668,3.966,1669,1.57,1670,2.388,1671,1.57,1672,2.388,1673,1.426,1674,3.602,1675,1.426,1676,2.848,1677,1.426,1678,1.426,1679,2.388,1680,1.426,1681,1.233,1682,1.426,1683,1.426,1684,1.426,1685,1.319,1686,1.426,1687,1.426,1688,1.233,1689,1.426,1690,2.629,1691,3.966,1692,1.57,1693,1.57,1694,1.57,1695,1.57,1696,1.57,1697,1.57,1698,1.57,1699,1.57,1700,1.57,1701,1.57,1702,1.57,1703,1.57,1704,1.57,1705,1.57,1706,1.57,1707,2.629,1708,1.57,1709,1.57,1710,2.629,1711,1.57,1712,1.57,1713,1.57,1714,3.391,1715,3.391,1716,1.57,1717,2.629,1718,1.57,1719,2.629,1720,2.629,1721,2.629,1722,1.57,1723,1.57,1724,1.57,1725,1.57,1726,1.57,1727,1.57,1728,1.57,1729,1.57,1730,1.57,1731,1.57,1732,1.57,1733,1.57,1734,1.57,1735,1.57,1736,1.57,1737,1.57,1738,1.57,1739,1.57,1740,1.57,1741,1.57,1742,1.57,1743,1.57,1744,1.57,1745,1.57,1746,1.57,1747,1.57,1748,1.57,1749,1.57,1750,1.57,1751,1.57,1752,1.57,1753,1.57,1754,1.57,1755,2.629,1756,1.57,1757,1.57,1758,1.57,1759,1.57,1760,1.57,1761,1.57,1762,1.57,1763,1.57,1764,1.57,1765,1.57,1766,1.57,1767,1.57,1768,2.629,1769,1.57,1770,1.57,1771,1.57,1772,2.629,1773,1.57,1774,1.57,1775,1.57,1776,1.57,1777,1.57,1778,1.57,1779,1.57,1780,1.57,1781,1.57,1782,1.57,1783,1.57,1784,1.57,1785,1.57,1786,1.57,1787,1.57,1788,1.57,1789,1.57,1790,1.57,1791,1.57,1792,1.57,1793,1.57,1794,1.57,1795,1.57,1796,1.57,1797,1.57,1798,1.57,1799,3.391,1800,1.57,1801,1.57,1802,1.57,1803,1.57,1804,1.57,1805,1.57,1806,1.57,1807,1.57,1808,1.57,1809,1.57,1810,1.57,1811,1.57,1812,1.57,1813,2.629,1814,1.57,1815,1.57,1816,1.57,1817,1.57,1818,1.57,1819,1.57,1820,1.57,1821,2.629,1822,1.57,1823,1.57,1824,1.57,1825,1.57,1826,1.57,1827,1.426,1828,1.57,1829,1.57,1830,1.57,1831,1.57,1832,0.999,1833,1.57,1834,1.57,1835,1.57,1836,1.57,1837,1.57,1838,1.57,1839,1.57,1840,2.629,1841,1.57,1842,1.57,1843,2.629,1844,1.57,1845,1.57,1846,1.57,1847,1.57,1848,1.57,1849,1.57,1850,1.57,1851,1.57,1852,1.57,1853,1.57,1854,1.57,1855,1.57,1856,1.57,1857,1.57,1858,1.57,1859,1.57,1860,3.391,1861,3.966,1862,1.57,1863,1.57,1864,1.57,1865,1.57,1866,1.57,1867,1.57,1868,1.57,1869,1.57,1870,1.57,1871,1.57,1872,1.57,1873,1.57,1874,1.57,1875,1.57,1876,1.57,1877,1.57,1878,1.57,1879,1.57,1880,1.57,1881,1.57,1882,1.57,1883,1.57,1884,1.57,1885,1.57,1886,1.57,1887,1.57,1888,1.57,1889,1.57,1890,1.57,1891,1.57,1892,1.57,1893,1.57,1894,1.57,1895,1.57,1896,1.57,1897,1.57,1898,1.57,1899,1.57,1900,1.57,1901,1.57,1902,1.57,1903,1.57,1904,1.57,1905,1.57,1906,1.57,1907,2.629,1908,3.391,1909,1.57,1910,1.57,1911,1.57,1912,1.57,1913,3.391,1914,3.391,1915,1.57,1916,2.629,1917,1.57,1918,1.57,1919,1.57,1920,1.57,1921,1.57,1922,1.57,1923,1.57,1924,1.57,1925,1.57,1926,1.57,1927,1.57,1928,1.57,1929,1.57,1930,1.57,1931,3.391,1932,1.57,1933,1.57,1934,1.57,1935,1.57,1936,1.57,1937,1.57,1938,1.57,1939,1.57,1940,1.57,1941,1.57,1942,1.57,1943,1.57,1944,1.57,1945,1.57,1946,1.57,1947,1.57,1948,1.57,1949,1.57,1950,2.208,1951,2.629,1952,2.629,1953,2.629,1954,2.629,1955,1.57,1956,1.57,1957,1.57,1958,1.57,1959,1.426,1960,1.57,1961,1.57,1962,1.57,1963,1.57,1964,1.57,1965,1.57,1966,1.57,1967,1.57,1968,1.57,1969,1.57,1970,1.57,1971,1.57,1972,1.57,1973,1.57,1974,1.57,1975,1.57,1976,1.57,1977,1.57,1978,1.57,1979,1.426,1980,1.57,1981,1.57,1982,1.57,1983,1.57,1984,1.57,1985,1.57,1986,1.57,1987,1.57,1988,1.57,1989,1.57,1990,1.57,1991,1.57,1992,1.57,1993,1.57,1994,1.57,1995,1.57,1996,2.629,1997,3.966,1998,1.57,1999,1.57,2000,1.57,2001,1.57,2002,1.57,2003,1.57,2004,1.57,2005,1.57,2006,1.57,2007,1.57,2008,1.57,2009,1.57,2010,1.57,2011,1.57,2012,1.57,2013,1.57,2014,1.57,2015,1.57,2016,1.57,2017,1.57,2018,1.57,2019,1.57,2020,1.57,2021,2.629,2022,1.57,2023,1.57,2024,1.57,2025,1.319,2026,1.57,2027,1.57,2028,1.57,2029,1.57,2030,1.57,2031,1.57,2032,1.57,2033,1.57,2034,1.57,2035,1.57,2036,1.57,2037,1.57,2038,1.57,2039,1.57,2040,1.57,2041,1.57,2042,1.57,2043,1.57,2044,1.57,2045,1.57,2046,1.57,2047,1.57,2048,1.57,2049,1.57,2050,1.57,2051,1.57,2052,1.57,2053,1.57,2054,1.57,2055,2.629,2056,1.57,2057,1.57,2058,1.57,2059,1.57,2060,1.57,2061,1.57,2062,1.57,2063,1.57,2064,2.629,2065,1.57,2066,1.426,2067,1.57,2068,1.57,2069,1.57,2070,1.57,2071,1.57,2072,1.57,2073,1.57,2074,1.57,2075,1.57,2076,2.629,2077,1.57,2078,1.57,2079,1.57,2080,1.57,2081,1.57,2082,1.57,2083,1.57,2084,1.57,2085,1.57,2086,1.57,2087,1.57,2088,1.57,2089,1.57,2090,1.57,2091,1.57,2092,1.57,2093,1.57,2094,2.629,2095,2.388,2096,1.57,2097,1.57,2098,1.57,2099,1.57,2100,1.57,2101,1.57,2102,1.57,2103,1.57,2104,1.57,2105,1.57,2106,1.57,2107,1.57,2108,1.57,2109,1.57,2110,1.57,2111,1.57,2112,1.57,2113,1.57,2114,1.57,2115,1.426,2116,1.57,2117,1.57,2118,1.57,2119,1.57,2120,1.57,2121,1.57,2122,1.57,2123,1.57,2124,1.57,2125,1.57,2126,1.57,2127,1.57,2128,1.57,2129,1.57,2130,1.57,2131,1.57,2132,1.57,2133,1.57,2134,1.426,2135,1.57,2136,1.57,2137,1.57,2138,1.57,2139,1.57,2140,1.57,2141,1.57,2142,1.57,2143,1.57,2144,1.57,2145,1.57,2146,1.57,2147,1.57,2148,1.57,2149,1.57,2150,1.57,2151,1.57,2152,1.57,2153,2.629,2154,1.57,2155,1.57,2156,1.57,2157,1.57,2158,1.57,2159,1.57,2160,1.57,2161,1.426,2162,1.57,2163,1.426,2164,1.57,2165,1.57,2166,1.57,2167,1.57,2168,1.57,2169,1.426,2170,1.57,2171,1.57,2172,1.57,2173,1.57,2174,1.57,2175,1.57,2176,1.57,2177,1.57,2178,1.426,2179,1.57,2180,1.57,2181,1.57,2182,1.57,2183,1.57,2184,1.57,2185,1.57,2186,1.426,2187,1.57,2188,1.426,2189,1.57,2190,1.57,2191,2.388,2192,1.57,2193,1.57,2194,1.57,2195,1.57,2196,1.57,2197,1.57,2198,1.57,2199,1.57,2200,1.57,2201,1.57,2202,1.57,2203,1.57,2204,1.57,2205,1.57,2206,1.57,2207,1.57,2208,1.57,2209,1.57,2210,1.57,2211,1.57,2212,1.57,2213,1.57,2214,1.57,2215,1.57,2216,1.57,2217,1.57,2218,1.57,2219,1.57,2220,1.57,2221,1.57,2222,1.57,2223,1.57,2224,1.57,2225,1.57,2226,1.57,2227,1.57,2228,1.57,2229,1.57,2230,1.57,2231,1.57,2232,1.57,2233,1.57,2234,1.57,2235,1.57,2236,1.57,2237,1.57,2238,1.57,2239,2.629,2240,1.57,2241,1.57,2242,1.57,2243,1.57,2244,1.57,2245,1.57,2246,1.57,2247,1.57,2248,1.57,2249,1.57,2250,1.57,2251,1.57,2252,1.57,2253,1.57,2254,1.57,2255,1.57,2256,1.57,2257,3.391,2258,1.57,2259,1.57,2260,1.57,2261,1.57,2262,1.57,2263,1.57,2264,1.57,2265,1.57,2266,1.57,2267,1.57,2268,1.57,2269,1.57,2270,1.57,2271,1.57,2272,1.57,2273,1.57,2274,1.57,2275,1.57,2276,1.57,2277,1.57,2278,1.57,2279,1.57,2280,1.57,2281,1.57,2282,1.57,2283,1.57,2284,1.57,2285,1.57,2286,1.57,2287,1.57,2288,1.57,2289,1.57,2290,1.57,2291,1.57,2292,1.57,2293,1.57,2294,1.57,2295,1.57,2296,1.57,2297,1.57,2298,1.57,2299,1.57,2300,1.57,2301,1.57,2302,1.57,2303,1.57,2304,1.57,2305,1.57,2306,1.57,2307,1.57,2308,1.57,2309,1.57,2310,1.57,2311,1.57,2312,1.57,2313,1.57,2314,1.57,2315,1.57,2316,1.57,2317,1.57,2318,1.57,2319,1.57,2320,1.57,2321,1.57,2322,1.57,2323,1.57,2324,1.57,2325,1.57,2326,1.57,2327,1.57,2328,1.57,2329,1.57,2330,1.57,2331,1.57,2332,1.57,2333,1.57,2334,1.57,2335,1.57,2336,1.57,2337,1.57,2338,1.57,2339,1.57,2340,1.57,2341,1.57,2342,1.57,2343,1.57,2344,1.57,2345,1.57,2346,2.629,2347,1.57,2348,2.388,2349,1.57,2350,1.57,2351,1.57,2352,1.57,2353,1.57,2354,1.57,2355,1.57,2356,1.57,2357,1.57,2358,1.57,2359,1.57,2360,1.57,2361,1.57,2362,1.57,2363,1.57,2364,1.57,2365,1.426,2366,1.57,2367,1.57,2368,1.57,2369,1.57,2370,1.57,2371,1.57,2372,1.57,2373,1.57,2374,1.57,2375,1.57,2376,1.57,2377,2.629,2378,2.629,2379,1.57,2380,1.57,2381,1.57,2382,1.57,2383,1.57,2384,1.57,2385,2.388,2386,1.57,2387,1.57,2388,1.57,2389,1.57,2390,1.57,2391,1.57,2392,1.57,2393,1.57,2394,1.57,2395,1.57,2396,1.57,2397,1.57,2398,1.57,2399,1.57,2400,1.57,2401,1.57,2402,1.57,2403,1.57,2404,1.57,2405,1.57,2406,1.57,2407,1.426,2408,1.426,2409,1.57,2410,1.57,2411,1.57,2412,2.629,2413,1.57,2414,1.57,2415,1.57,2416,1.57,2417,1.57,2418,1.57,2419,1.57,2420,2.629,2421,1.57,2422,1.57,2423,1.57,2424,1.57,2425,1.57,2426,1.57,2427,1.57,2428,1.57,2429,1.57,2430,1.57,2431,1.57,2432,1.57,2433,1.57,2434,1.57,2435,1.57,2436,1.57,2437,1.57,2438,1.57,2439,1.57,2440,1.57,2441,1.57,2442,1.57,2443,1.57,2444,1.57,2445,1.57,2446,1.57,2447,1.426,2448,1.57,2449,1.57,2450,1.57,2451,1.57,2452,1.57,2453,2.388,2454,1.57,2455,1.57,2456,1.57,2457,1.57,2458,1.57,2459,1.57,2460,1.57,2461,1.426,2462,1.57,2463,1.57,2464,1.57,2465,1.57,2466,1.57,2467,1.57,2468,1.57,2469,1.57,2470,1.57,2471,1.57,2472,1.57,2473,1.57,2474,1.57,2475,1.57,2476,1.57,2477,1.57,2478,1.57,2479,1.57,2480,1.57,2481,1.57,2482,1.57,2483,1.57,2484,1.57,2485,1.57,2486,1.57,2487,1.57,2488,1.57,2489,1.57,2490,1.57,2491,1.57,2492,1.57,2493,1.57,2494,1.57,2495,1.57,2496,1.57,2497,1.57,2498,1.57,2499,1.57,2500,1.57,2501,1.57,2502,1.57,2503,1.57,2504,1.57,2505,1.57,2506,1.57,2507,1.57,2508,1.57,2509,1.57,2510,1.57,2511,1.57,2512,1.426,2513,1.426,2514,2.388,2515,1.57,2516,1.57,2517,1.57,2518,1.57,2636,1.161,2674,1.233,2965,1.426,2966,3.08,2985,1.57,3180,1.426,3230,2.629,3231,2.388,3472,2.388,3477,1.426,3480,2.629,3490,2.629,3492,3.391,3503,1.57,3513,1.57,3514,1.57,3515,1.57,3548,1.319,3553,1.57,3593,1.426,3641,3.391,3655,1.426,4445,2.995,4446,2.995,4447,6.059,4448,1.789,4449,1.789,4450,1.789,4451,1.789,4452,1.789,4453,1.789,4454,1.789,4455,3.863,4456,3.863,4457,3.863,4458,3.863,4459,3.863,4460,3.863,4461,3.863,4462,3.863,4463,3.863,4464,3.863,4465,3.863,4466,3.863,4467,3.863,4468,3.863,4469,3.863,4470,3.863,4471,3.863,4472,3.863,4473,3.863,4474,3.863,4475,3.863,4476,3.863,4477,3.863,4478,3.863,4479,3.863,4480,1.789,4481,1.789,4482,1.789,4483,1.789,4484,1.789]]],"invertedIndex":[["",{"_index":24,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":77,"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/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":637,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3533,"title":{},"body":{"dependencies.html":{}}}],["0.1.6",{"_index":3527,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3547,"title":{},"body":{"dependencies.html":{}}}],["0.12.3",{"_index":3536,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":638,"title":{},"body":{"components/AdminComponent.html":{}}}],["0/1",{"_index":3474,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3496,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3500,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3499,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":3510,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3507,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3501,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3502,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3506,"title":{},"body":{"coverage.html":{}}}],["0/19",{"_index":3512,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3518,"title":{},"body":{"coverage.html":{}}}],["0/22",{"_index":3495,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3508,"title":{},"body":{"coverage.html":{}}}],["0/38",{"_index":3504,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3498,"title":{},"body":{"coverage.html":{}}}],["0/47",{"_index":3505,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3497,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3511,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3509,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3413,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3424,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3406,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3444,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3445,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":2927,"title":{},"body":{"interfaces/Token.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":188,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3405,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":198,"title":{"interfaces/Signature-1.html":{}},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3544,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3545,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3462,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["10.2.0",{"_index":3521,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3523,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3429,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":298,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["1000",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000).tolocaledatestring('en",{"_index":3395,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["11",{"_index":3979,"title":{},"body":{"license.html":{}}}],["11/11",{"_index":3487,"title":{},"body":{"coverage.html":{}}}],["11/16/2020",{"_index":3419,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12",{"_index":4444,"title":{},"body":{"overview.html":{}}}],["12987",{"_index":3407,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4337,"title":{},"body":{"license.html":{}}}],["14/14",{"_index":3493,"title":{},"body":{"coverage.html":{}}}],["15",{"_index":4162,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3448,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3442,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4163,"title":{},"body":{"license.html":{},"overview.html":{}}}],["17",{"_index":4442,"title":{},"body":{"overview.html":{}}}],["1996",{"_index":3984,"title":{},"body":{"license.html":{}}}],["2",{"_index":1119,"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":3543,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3541,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3531,"title":{},"body":{"dependencies.html":{}}}],["2/2",{"_index":3470,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3688,"title":{},"body":{"license.html":{}}}],["2021",{"_index":4410,"title":{},"body":{"license.html":{}}}],["22",{"_index":4443,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3447,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3412,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3404,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3428,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["254700000000",{"_index":81,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["25498765432",{"_index":3418,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3423,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["26/26",{"_index":3491,"title":{},"body":{"coverage.html":{}}}],["28",{"_index":4318,"title":{},"body":{"license.html":{}}}],["29",{"_index":3686,"title":{},"body":{"license.html":{}}}],["3",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":82,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3538,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3464,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3517,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4217,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3152,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1355,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3312,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":2982,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;hello",{"_index":3565,"title":{},"body":{"miscellaneous/functions.html":{}}}],["39;sarafu'",{"_index":2976,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.2.1",{"_index":3539,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3532,"title":{},"body":{"dependencies.html":{}}}],["4/4",{"_index":3488,"title":{},"body":{"coverage.html":{}}}],["400",{"_index":2571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["403",{"_index":1410,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3420,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3535,"title":{},"body":{"dependencies.html":{}}}],["5/5",{"_index":3489,"title":{},"body":{"coverage.html":{}}}],["50",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["5000",{"_index":2598,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["56",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3425,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3414,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3540,"title":{},"body":{"dependencies.html":{}}}],["6/6",{"_index":3473,"title":{},"body":{"coverage.html":{}}}],["60",{"_index":3516,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4067,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4087,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":662,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":4007,"title":{},"body":{"license.html":{}}}],["7/7",{"_index":3494,"title":{},"body":{"coverage.html":{}}}],["768px",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["8/8",{"_index":3463,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3296,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3430,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9/9",{"_index":3460,"title":{},"body":{"coverage.html":{}}}],["_models",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["_pipes/unix",{"_index":2895,"title":{},"body":{"modules/SharedModule.html":{}}}],["abi",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4131,"title":{},"body":{"license.html":{}}}],["above",{"_index":2552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":4008,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4392,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4422,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1299,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3786,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4222,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":896,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4221,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2780,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":881,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4289,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":4049,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4396,"title":{},"body":{"license.html":{}}}],["accompanying",{"_index":2748,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["accord",{"_index":4006,"title":{},"body":{"license.html":{}}}],["according",{"_index":1463,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["accordingly",{"_index":1393,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/variables.html":{}}}],["account'},{'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/NetworkStatusComponent.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":500,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:14",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:15",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1227,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:28",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:60",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:64",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":458,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":499,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":320,"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/NetworkStatusComponent.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":89,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"coverage.html":{}}}],["accountinfo",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3271,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":323,"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/NetworkStatusComponent.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":372,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":200,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":454,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":303,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["accountscomponent",{"_index":322,"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/NetworkStatusComponent.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":203,"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/NetworkStatusComponent.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":472,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":481,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":461,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4402,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3946,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4268,"title":{},"body":{"license.html":{}}}],["action",{"_index":541,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":655,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":659,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":654,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":653,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find((action",{"_index":2555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroutesnapshot",{"_index":893,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":550,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":554,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":908,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["activities",{"_index":3864,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4314,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4294,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":369,"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/NetworkStatusComponent.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":4109,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3837,"title":{},"body":{"license.html":{}}}],["add",{"_index":562,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3223,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3317,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":2915,"title":{},"body":{"interfaces/Staff.html":{},"license.html":{}}}],["additional",{"_index":4020,"title":{},"body":{"license.html":{}}}],["address",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["addressed",{"_index":3834,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":2967,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":2977,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":2986,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2972,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addresssearchform",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":189,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoken",{"_index":2994,"title":{},"body":{"injectables/TokenService.html":{}}}],["addtoken(token",{"_index":3002,"title":{},"body":{"injectables/TokenService.html":{}}}],["addtransaction",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3192,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtrusteduser",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["addtrusteduser(user",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["admin",{"_index":548,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin's",{"_index":546,"title":{},"body":{"interfaces/Action.html":{}}}],["admin'},{'name",{"_index":326,"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/NetworkStatusComponent.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":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":588,"title":{},"body":{"components/AdminComponent.html":{}}}],["admincomponent",{"_index":325,"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/NetworkStatusComponent.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":663,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":667,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":3982,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4139,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4384,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4140,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4335,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4251,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3943,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3330,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":728,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3597,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["age",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":4036,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4330,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4371,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4280,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3782,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1412,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":304,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["algo",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["algorithm",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["alleging",{"_index":4258,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3804,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1414,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":4010,"title":{},"body":{"license.html":{}}}],["alpha.6",{"_index":3534,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4063,"title":{},"body":{"license.html":{}}}],["although",{"_index":3778,"title":{},"body":{"license.html":{}}}],["amani",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":1195,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["ancillary",{"_index":4224,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3763,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4426,"title":{},"body":{"license.html":{}}}],["angular",{"_index":1078,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["angular/animations",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3522,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3614,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":490,"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":786,"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/TransactionService.html":{}}}],["angular/compiler",{"_index":3524,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":271,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{},"injectables/Web3Service.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":273,"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":3525,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":512,"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":514,"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":504,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":523,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1334,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":509,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":516,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":507,"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":2877,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":420,"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":525,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2875,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":518,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3094,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":530,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":421,"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":419,"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":521,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3096,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":777,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":276,"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/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/service",{"_index":711,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{}}}],["animate",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":634,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":622,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3969,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":4017,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3850,"title":{},"body":{"license.html":{}}}],["api",{"_index":2522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":218,"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/NetworkStatusComponent.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":675,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":674,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3633,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3022,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":789,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":274,"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":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":793,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1198,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["app/_models/staff",{"_index":2849,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":795,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/KeystoreService.html":{}}}],["app/_pgp/pgp",{"_index":2675,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":275,"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/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/auth.service",{"_index":3229,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":847,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["app/_services/keystore.service",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/logging.service",{"_index":849,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3218,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/web3.service",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{}}}],["app/app",{"_index":780,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":781,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":924,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":922,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":923,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2888,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2893,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2890,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1349,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2886,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":494,"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":{}}}],["app/shared/sidebar/sidebar.component",{"_index":2887,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2885,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":327,"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/NetworkStatusComponent.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":3856,"title":{},"body":{"license.html":{}}}],["application",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{}}}],["application/json;charset=utf",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4434,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3811,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3718,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3722,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1626,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":362,"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/NetworkStatusComponent.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":1648,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":364,"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/NetworkStatusComponent.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":764,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2741,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":366,"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/NetworkStatusComponent.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":1461,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["appropriately",{"_index":4000,"title":{},"body":{"license.html":{}}}],["approuterlink",{"_index":368,"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/NetworkStatusComponent.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":{}}}],["approutingmodule",{"_index":770,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":543,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":656,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(action.id",{"_index":647,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3431,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":644,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4391,"title":{},"body":{"license.html":{}}}],["area",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.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.tolowercase().split",{"_index":1560,"title":{},"body":{"injectables/LocationService.html":{}}}],["area_name",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":46,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areanames",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames[key].includes(keyword",{"_index":1557,"title":{},"body":{"injectables/LocationService.html":{}}}],["areanameslist",{"_index":1524,"title":{},"body":{"injectables/LocationService.html":{}}}],["areanamessubject",{"_index":1525,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypes",{"_index":1526,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes[key].includes(keyword",{"_index":1563,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypeslist",{"_index":1527,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypessubject",{"_index":1528,"title":{},"body":{"injectables/LocationService.html":{}}}],["args",{"_index":2811,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["arguments",{"_index":690,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3793,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4375,"title":{},"body":{"license.html":{}}}],["around",{"_index":1635,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["arr",{"_index":3559,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4290,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4302,"title":{},"body":{"license.html":{}}}],["array",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["arraydata",{"_index":3576,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3467,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3557,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3978,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3635,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3740,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3758,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4241,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2771,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":2978,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":899,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4366,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4395,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4183,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3814,"title":{},"body":{"license.html":{}}}],["async",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["attach",{"_index":4404,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4197,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3774,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4166,"title":{},"body":{"license.html":{}}}],["auth",{"_index":814,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["auth'},{'name",{"_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":{},"components/NetworkStatusComponent.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":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.dev.grassrootseconomics.net",{"_index":4463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["authcomponent",{"_index":329,"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/NetworkStatusComponent.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":1021,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":882,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["authguard",{"_index":788,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":916,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4165,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorized",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4263,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4306,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3721,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":920,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":685,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automated",{"_index":3667,"title":{},"body":{"index.html":{}}}],["automatic",{"_index":4233,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3625,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["available",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"license.html":{},"modules.html":{}}}],["avenue",{"_index":3582,"title":{},"body":{"miscellaneous/functions.html":{}}}],["avocado",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3808,"title":{},"body":{"license.html":{}}}],["await",{"_index":190,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["away",{"_index":3708,"title":{},"body":{"license.html":{}}}],["b",{"_index":3905,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1395,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["backend.ts",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:936",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{}}}],["bamburi",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":531,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["base",{"_index":1640,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["based",{"_index":3846,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3935,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3957,"title":{},"body":{"license.html":{}}}],["behave",{"_index":1267,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["behaviorsubject",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(false",{"_index":3014,"title":{},"body":{"injectables/TokenService.html":{}}}],["behaviorsubject(this.areanames",{"_index":1541,"title":{},"body":{"injectables/LocationService.html":{}}}],["behaviorsubject(this.areatypes",{"_index":1546,"title":{},"body":{"injectables/LocationService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":1305,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["believe",{"_index":4299,"title":{},"body":{"license.html":{}}}],["below",{"_index":3964,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4293,"title":{},"body":{"license.html":{}}}],["best",{"_index":4401,"title":{},"body":{"license.html":{}}}],["between",{"_index":3933,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":4038,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":636,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["binding",{"_index":1284,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["bio",{"_index":3409,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bitwise",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":871,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["blockchain",{"_index":178,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["blockfilterbinstr",{"_index":1168,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1175,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocks",{"_index":2824,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["blocksync",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1084,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilterbinstr",{"_index":1176,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1181,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":40,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1377,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1170,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1172,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":476,"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":3768,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":1369,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["bread",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1409,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4440,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":778,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":783,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":782,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":776,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1178,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1180,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3411,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3634,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3638,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3640,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":660,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3690,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3236,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3844,"title":{},"body":{"license.html":{}}}],["calls",{"_index":3586,"title":{},"body":{"miscellaneous/functions.html":{}}}],["canactivate",{"_index":820,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":892,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1581,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":891,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["capenter",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2624,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":4012,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1406,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4105,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":432,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2702,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":710,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1385,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1217,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["category",{"_index":15,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["catering",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caught",{"_index":1379,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cause",{"_index":4041,"title":{},"body":{"license.html":{}}}],["cdr",{"_index":2590,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["cease",{"_index":4201,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["centralized",{"_index":1433,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["cereal",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cessation",{"_index":4213,"title":{},"body":{"license.html":{}}}],["chai",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":874,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3772,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":215,"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/NetworkStatusComponent.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":270,"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/NetworkStatusComponent.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":216,"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/NetworkStatusComponent.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":{}}}],["changedetectorref",{"_index":2588,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["changes",{"_index":3603,"title":{},"body":{"miscellaneous/functions.html":{}}}],["changesdescription",{"_index":3601,"title":{},"body":{"miscellaneous/functions.html":{}}}],["changing",{"_index":3701,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4128,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3727,"title":{},"body":{"license.html":{}}}],["charging",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["check",{"_index":3672,"title":{},"body":{"index.html":{}}}],["checks",{"_index":144,"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":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4350,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4354,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{},"classes/Settings.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cic_convert",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["cic_transfer",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["cicada",{"_index":707,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":761,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicnet/cic",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{}}}],["cicnet/schemas",{"_index":3528,"title":{},"body":{"dependencies.html":{}}}],["cicregistry",{"_index":2767,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cictransfer(event",{"_index":757,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3962,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3970,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4394,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4255,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4265,"title":{},"body":{"license.html":{}}}],["class",{"_index":88,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.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":{},"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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-1.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":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"overview.html":{}}}],["cleaner",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4073,"title":{},"body":{"license.html":{}}}],["clearly",{"_index":3765,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3422,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3609,"title":{},"body":{"index.html":{}}}],["click",{"_index":1633,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clipboard",{"_index":3564,"title":{},"body":{"miscellaneous/functions.html":{}}}],["close",{"_index":2934,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4390,"title":{},"body":{"license.html":{}}}],["closewindow",{"_index":2936,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["cloth",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1399,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":478,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":664,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":666,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":665,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":765,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":766,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":769,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":767,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":768,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":917,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":919,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":918,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2721,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2722,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2723,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2866,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2868,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2867,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2879,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2880,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2881,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3084,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3085,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3086,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3380,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3383,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3381,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3382,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1397,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["codebase",{"_index":3677,"title":{},"body":{"index.html":{}}}],["coffee",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":633,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4332,"title":{},"body":{"license.html":{}}}],["collection",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3064,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4339,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4336,"title":{},"body":{"license.html":{}}}],["combined",{"_index":4032,"title":{},"body":{"license.html":{}}}],["comes",{"_index":4018,"title":{},"body":{"license.html":{}}}],["command",{"_index":3682,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3884,"title":{},"body":{"license.html":{}}}],["commas",{"_index":3581,"title":{},"body":{"miscellaneous/functions.html":{}}}],["comment",{"_index":2911,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4114,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4281,"title":{},"body":{"license.html":{}}}],["common",{"_index":4108,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":489,"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":3931,"title":{},"body":{"license.html":{}}}],["community",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":4028,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":4037,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4316,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3914,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4238,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3955,"title":{},"body":{"license.html":{}}}],["component",{"_index":202,"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/NetworkStatusComponent.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/NetworkStatusComponent.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_template",{"_index":319,"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/NetworkStatusComponent.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":204,"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/NetworkStatusComponent.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":3859,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3807,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4338,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4344,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4311,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3818,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config",{"_index":1507,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts",{"_index":1503,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:10",{"_index":1506,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:21",{"_index":1508,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["configurations",{"_index":1505,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"index.html":{}}}],["confirm",{"_index":1303,"title":{},"body":{"classes/CustomValidator.html":{}}}],["confirm('approve",{"_index":646,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1251,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":649,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('new",{"_index":737,"title":{},"body":{"components/AppComponent.html":{}}}],["confirm('set",{"_index":2620,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1316,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connected",{"_index":2830,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["connection",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4226,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4374,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4432,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4185,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4272,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3440,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(arraysum([1",{"_index":3561,"title":{},"body":{"miscellaneous/functions.html":{}}}],["console.log(await",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["console.log(copytoclipboard('hello",{"_index":3567,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conspicuously",{"_index":3999,"title":{},"body":{"license.html":{}}}],["const",{"_index":74,"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":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3802,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3945,"title":{},"body":{"license.html":{}}}],["construction",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":111,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.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":{},"injectables/Web3Service.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1335,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3340,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(cdr",{"_index":2587,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["constructor(contractaddress",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1328,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1342,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1628,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1366,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":566,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2649,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1590,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1441,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1471,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":639,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{}}}],["constructor(public",{"_index":1351,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(router",{"_index":883,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2821,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["constructor(tokenservice",{"_index":3066,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4320,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4093,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4415,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1398,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3658,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4168,"title":{},"body":{"license.html":{}}}],["contains",{"_index":898,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":743,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":753,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":752,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":755,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1654,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4276,"title":{},"body":{"license.html":{}}}],["context",{"_index":3908,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4134,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4121,"title":{},"body":{"license.html":{}}}],["contract",{"_index":80,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contractual",{"_index":4182,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4326,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3710,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4262,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4264,"title":{},"body":{"license.html":{}}}],["control",{"_index":1280,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1289,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1318,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1317,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1315,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1288,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1290,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1320,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4267,"title":{},"body":{"license.html":{}}}],["controls",{"_index":1266,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["convenient",{"_index":3877,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":762,"title":{"interfaces/Conversion.html":{}},"body":{"components/AppComponent.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.trader",{"_index":3256,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3250,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["convert",{"_index":2921,"title":{},"body":{"interfaces/Token.html":{}}}],["converted",{"_index":3577,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converting",{"_index":3579,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":3592,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converttoparammap",{"_index":578,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3866,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4304,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4129,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3872,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4181,"title":{},"body":{"license.html":{}}}],["cook",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3150,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["copies",{"_index":3563,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy",{"_index":3568,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy.ts",{"_index":3469,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3109,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3119,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3819,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":1425,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["copyright",{"_index":3689,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3829,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3959,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3129,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3148,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3562,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4369,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3917,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4061,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":195,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4256,"title":{},"body":{"license.html":{}}}],["counties",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3863,"title":{},"body":{"license.html":{}}}],["country",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2617,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4427,"title":{},"body":{"license.html":{}}}],["court",{"_index":4325,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4389,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4284,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3457,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3847,"title":{},"body":{"license.html":{}}}],["create",{"_index":115,"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/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Staff.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["createaccountcomponent",{"_index":331,"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/NetworkStatusComponent.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":406,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2858,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3887,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv",{"_index":3573,"title":{},"body":{"miscellaneous/functions.html":{}}}],["csv.ts",{"_index":3472,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":635,"title":{},"body":{"components/AdminComponent.html":{}}}],["curated",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cure",{"_index":4216,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2949,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2782,"title":{},"body":{"guards/RoleGuard.html":{}}}],["currentyear",{"_index":1421,"title":{},"body":{"components/FooterComponent.html":{}}}],["custom",{"_index":1262,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"index.html":{}}}],["customarily",{"_index":4052,"title":{},"body":{"license.html":{}}}],["customer",{"_index":4057,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":257,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent(eventtype",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1291,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":4026,"title":{},"body":{"license.html":{}}}],["dagaa",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4372,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3810,"title":{},"body":{"license.html":{}}}],["danish",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2902,"title":{},"body":{"components/SidebarComponent.html":{}}}],["dashboardurl",{"_index":4478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["data",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Conversion.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/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1336,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1337,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3367,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["date",{"_index":2835,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["date().getfullyear",{"_index":1424,"title":{},"body":{"components/FooterComponent.html":{}}}],["date(timestamp",{"_index":3394,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["date.now",{"_index":76,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date.pipe",{"_index":2896,"title":{},"body":{"modules/SharedModule.html":{}}}],["date.pipe.ts",{"_index":3391,"title":{},"body":{"pipes/UnixDatePipe.html":{},"coverage.html":{}}}],["date.pipe.ts:7",{"_index":3393,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["date_registered",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3441,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["day",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["daycare",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4212,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1611,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3983,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4352,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":2917,"title":{},"body":{"interfaces/Token.html":{}}}],["declarations",{"_index":475,"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":4174,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3972,"title":{},"body":{"license.html":{}}}],["default",{"_index":73,"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":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":75,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defaults",{"_index":3580,"title":{},"body":{"miscellaneous/functions.html":{}}}],["defective",{"_index":4365,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4323,"title":{},"body":{"license.html":{}}}],["defined",{"_index":113,"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":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["defines",{"_index":1264,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["defining",{"_index":4484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["definition",{"_index":3924,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3823,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3572,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4136,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4282,"title":{},"body":{"license.html":{}}}],["denomination",{"_index":2923,"title":{},"body":{"interfaces/Token.html":{}}}],["denote",{"_index":1466,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["deny",{"_index":3777,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3739,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":474,"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":152,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{},"interfaces/Conversion.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["deprive",{"_index":4291,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":7,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.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":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{}}}],["design",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4069,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3706,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3175,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1187,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["detached",{"_index":2693,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":65,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AdminComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":321,"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/NetworkStatusComponent.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":497,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":2933,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2932,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2931,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:18",{"_index":2938,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:20",{"_index":2937,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:22",{"_index":3117,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:24",{"_index":2941,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":2940,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":3126,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:28",{"_index":3128,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:29",{"_index":3127,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:30",{"_index":3116,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3121,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:59",{"_index":3124,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:63",{"_index":3123,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:67",{"_index":3125,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:71",{"_index":3122,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:80",{"_index":3120,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:86",{"_index":3118,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4424,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":496,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2930,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3104,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4103,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3620,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4398,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3754,"title":{},"body":{"license.html":{}}}],["development",{"_index":3615,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3776,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2641,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1325,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["dialog'},{'name",{"_index":335,"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/NetworkStatusComponent.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":1350,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1327,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1326,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1324,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1329,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:11",{"_index":1331,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":848,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1339,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:11",{"_index":1347,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:13",{"_index":1346,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1344,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1323,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1353,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1356,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":880,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4343,"title":{},"body":{"license.html":{}}}],["different",{"_index":1446,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["differently",{"_index":4161,"title":{},"body":{"license.html":{}}}],["digest",{"_index":61,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":3958,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4074,"title":{},"body":{"license.html":{}}}],["directive",{"_index":317,"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/NetworkStatusComponent.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":360,"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/NetworkStatusComponent.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":3630,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3852,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1256,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":804,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":657,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2615,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3994,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4355,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4158,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4308,"title":{},"body":{"license.html":{}}}],["dispatcher",{"_index":1378,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["dispensary",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":4027,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4167,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displaying",{"_index":1269,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{}}}],["displays",{"_index":3874,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3637,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4345,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3698,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4411,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4312,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3820,"title":{},"body":{"license.html":{}}}],["divone",{"_index":864,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":866,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3700,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":744,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":865,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":742,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":746,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":867,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2751,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2750,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3458,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4144,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3403,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dom",{"_index":207,"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/NetworkStatusComponent.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":3795,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2814,"title":{},"body":{"pipes/SafePipe.html":{}}}],["donald",{"_index":3417,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":556,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4104,"title":{},"body":{"license.html":{}}}],["dough",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["download",{"_index":3575,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downloadcsv",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downloaded",{"_index":3578,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downstream",{"_index":4235,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["duka",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":4051,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3151,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["during",{"_index":68,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["dwelling",{"_index":4102,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3526,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3926,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":700,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":749,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3653,"title":{},"body":{"index.html":{}}}],["each",{"_index":3832,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3845,"title":{},"body":{"license.html":{}}}],["east",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1427,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4387,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3992,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3973,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3812,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4249,"title":{},"body":{"license.html":{}}}],["egg",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1575,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4416,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":316,"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":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.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":{}}}],["element.style.display",{"_index":872,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1629,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":47,"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":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":4046,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4429,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3907,"title":{},"body":{"license.html":{}}}],["enabled",{"_index":807,"title":{},"body":{"modules/AppModule.html":{}}}],["enables",{"_index":3868,"title":{},"body":{"license.html":{}}}],["encryption",{"_index":62,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["end",{"_index":3652,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":725,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4283,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3996,"title":{},"body":{"license.html":{}}}],["engine",{"_index":63,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/W3.html":{}}}],["engineer",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":875,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4317,"title":{},"body":{"license.html":{}}}],["entire",{"_index":4016,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4334,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4239,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1257,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":2983,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2979,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1582,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3660,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3661,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3217,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":171,"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":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.dashboardurl",{"_index":2717,"title":{},"body":{"components/PagesComponent.html":{}}}],["environment.dev.ts",{"_index":3664,"title":{},"body":{"index.html":{}}}],["environment.loggingurl}/api/logs",{"_index":803,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":799,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3665,"title":{},"body":{"index.html":{}}}],["environment.production",{"_index":808,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.registryaddress",{"_index":2769,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":801,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.trusteddeclaratoraddress",{"_index":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment.web3provider",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3948,"title":{},"body":{"license.html":{}}}],["err",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1387,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1394,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1061,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1402,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1062,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3775,"title":{},"body":{"license.html":{}}}],["error",{"_index":334,"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/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.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":{},"miscellaneous/functions.html":{}}}],["error's",{"_index":1469,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error('the",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1480,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1477,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1482,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1479,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.statustext",{"_index":1501,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1478,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":333,"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/NetworkStatusComponent.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":687,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1389,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":779,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":771,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1386,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errors",{"_index":1302,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorstatematcher",{"_index":1271,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1455,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1486,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1488,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3909,"title":{},"body":{"license.html":{}}}],["establish",{"_index":177,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2629,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3443,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3222,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2630,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":691,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["event.detail.tx",{"_index":758,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":2939,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["events",{"_index":1565,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["eventtype",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["everyone",{"_index":3696,"title":{},"body":{"license.html":{}}}],["evm",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3842,"title":{},"body":{"license.html":{}}}],["example",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["except",{"_index":3857,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1434,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["exceptions",{"_index":4148,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3155,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4091,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4321,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4407,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4273,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3953,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4327,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3898,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3650,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3858,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4250,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3993,"title":{},"body":{"license.html":{}}}],["existing",{"_index":1285,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["expand",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4112,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4111,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3766,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3942,"title":{},"body":{"license.html":{}}}],["export",{"_index":84,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{}}}],["exportcsv",{"_index":422,"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":3570,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":460,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":652,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3082,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3371,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2855,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":83,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"interfaces/Transaction.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["express",{"_index":4279,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4357,"title":{},"body":{"license.html":{}}}],["expression",{"_index":1311,"title":{},"body":{"classes/CustomValidator.html":{}}}],["expressly",{"_index":4196,"title":{},"body":{"license.html":{}}}],["extend",{"_index":1639,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["extended",{"_index":4307,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1436,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["extensions",{"_index":4031,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3876,"title":{},"body":{"license.html":{}}}],["external",{"_index":3446,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2757,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4179,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3954,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1415,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":1060,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3408,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4209,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4382,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3947,"title":{},"body":{"license.html":{}}}],["faith",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["falcon",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":148,"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":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4097,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1255,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3839,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4106,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3632,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3747,"title":{},"body":{"license.html":{}}}],["feels",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.cicmetaurl",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetch(environment.cicmetaurl).then((response",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetch(environment.publickeysurl).then((res",{"_index":1076,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":2975,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetching",{"_index":3583,"title":{},"body":{"miscellaneous/functions.html":{}}}],["fia",{"_index":3427,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":510,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"classes/CustomValidator.html":{},"modules/PagesModule.html":{},"directives/PasswordToggleDirective.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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2761,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3571,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3627,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":463,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1167,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filters",{"_index":1166,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3337,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["final",{"_index":1193,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["finalize",{"_index":1569,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3248,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":4076,"title":{},"body":{"license.html":{}}}],["fingerprint",{"_index":2645,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4360,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2700,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":4050,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2678,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3932,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3822,"title":{},"body":{"license.html":{}}}],["following",{"_index":4277,"title":{},"body":{"license.html":{}}}],["food",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1418,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":337,"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/NetworkStatusComponent.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":1420,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1419,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":336,"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/NetworkStatusComponent.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":338,"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/NetworkStatusComponent.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":3991,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1411,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3950,"title":{},"body":{"license.html":{}}}],["form",{"_index":1265,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["form.submitted",{"_index":1287,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":3574,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["format:lint",{"_index":3675,"title":{},"body":{"index.html":{}}}],["formatting",{"_index":3666,"title":{},"body":{"index.html":{}}}],["formbuilder",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1274,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":252,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1275,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":4042,"title":{},"body":{"license.html":{}}}],["forward",{"_index":2531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["forwarded",{"_index":1509,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{}}}],["found",{"_index":305,"title":{},"body":{"components/AccountSearchComponent.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["foundation",{"_index":3693,"title":{},"body":{"license.html":{}}}],["free",{"_index":3691,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3709,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3750,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3224,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3298,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1188,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["fruit",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3976,"title":{},"body":{"license.html":{}}}],["full",{"_index":539,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":1498,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functionality",{"_index":2638,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["functioning",{"_index":4122,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2553,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3780,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3678,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3799,"title":{},"body":{"license.html":{}}}],["g",{"_index":3613,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gb",{"_index":3396,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["ge",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":17,"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":1219,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1494,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1468,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3922,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3629,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":1207,"title":{},"body":{"interfaces/Conversion.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"index.html":{}}}],["ger",{"_index":2631,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2632,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["get(`${environment.cicmetaurl}/areanames",{"_index":1550,"title":{},"body":{"injectables/LocationService.html":{}}}],["get(`${environment.cicmetaurl}/areatypes",{"_index":1558,"title":{},"body":{"injectables/LocationService.html":{}}}],["getaccountdetailsfrommeta(await",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo",{"_index":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":444,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3433,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":268,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1529,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanamebylocation(location",{"_index":1534,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1530,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1531,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypebyarea(area",{"_index":1537,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1532,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3058,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3059,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getgenders",{"_index":1247,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getinstance",{"_index":3452,"title":{},"body":{"injectables/Web3Service.html":{}}}],["getkeyformstub",{"_index":845,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeystore",{"_index":1515,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["getnamesearchformstub",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2612,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["getprivatekeyinfo",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{}}}],["getpublickeys",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["getregistry",{"_index":2762,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getsessiontoken",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["getter.ts",{"_index":3476,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3604,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":2995,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3004,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbyaddress",{"_index":2996,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbyaddress(address",{"_index":3006,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2997,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":3008,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenname",{"_index":2998,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2999,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokensymbol",{"_index":3000,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{}}}],["gettrustedusers",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3399,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3435,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3400,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3438,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getwithtoken",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["githeri",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":4009,"title":{},"body":{"license.html":{}}}],["given",{"_index":1252,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":4023,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3760,"title":{},"body":{"license.html":{}}}],["global",{"_index":1443,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["globalerrorhandler",{"_index":772,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3685,"title":{},"body":{"license.html":{}}}],["go",{"_index":3680,"title":{},"body":{"index.html":{}}}],["goats",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4151,"title":{},"body":{"license.html":{}}}],["government",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3755,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4175,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3937,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4229,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4441,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1426,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3746,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4399,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3415,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3712,"title":{},"body":{"license.html":{}}}],["guard",{"_index":876,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4428,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":731,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":1392,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{}}}],["handled",{"_index":2551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1438,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1444,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handlenetworkchange",{"_index":2586,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["handler",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handler.ts",{"_index":1431,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["handler.ts:104",{"_index":1460,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:16",{"_index":1513,"title":{},"body":{"classes/HttpError.html":{}}}],["handler.ts:41",{"_index":1442,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:58",{"_index":1445,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:84",{"_index":1453,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleroute",{"_index":2535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handlers",{"_index":2534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handles",{"_index":1361,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handling",{"_index":1435,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hanje",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1497,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":1206,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":193,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":3952,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["height",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{}}}],["help",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["hera",{"_index":3421,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4269,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":629,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4203,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4157,"title":{},"body":{"license.html":{}}}],["holding",{"_index":2652,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["holel",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":310,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hook",{"_index":1432,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hope",{"_index":4412,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":709,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2801,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":760,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":756,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":681,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4077,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4098,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_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":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.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":{}}}],["htmlelement",{"_index":741,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1363,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["http://localhost:4200",{"_index":3624,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":784,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":785,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":773,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":862,"title":{"classes/HttpError.html":{}},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror('unknown",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperror('you",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperror.message",{"_index":863,"title":{},"body":{"components/AuthComponent.html":{}}}],["httperrorresponse",{"_index":1380,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1491,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1381,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2765,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1373,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1382,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1372,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1568,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3132,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":4479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3695,"title":{},"body":{"license.html":{}}}],["https://meta",{"_index":4462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://user.dev.grassrootseconomics.net",{"_index":4473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4414,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4437,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4425,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2745,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2758,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2756,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2743,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":67,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4297,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2974,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identifiers",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["identifying",{"_index":37,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["identities",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2719,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2753,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":1641,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["implementation",{"_index":879,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.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":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{}}}],["implied",{"_index":4322,"title":{},"body":{"license.html":{}}}],["import",{"_index":165,"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":{},"interfaces/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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then((m",{"_index":816,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then((m",{"_index":2734,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then((m",{"_index":2738,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then((m",{"_index":818,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then((m",{"_index":2732,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then((m",{"_index":2736,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then((m",{"_index":2730,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["importing",{"_index":4261,"title":{},"body":{"license.html":{}}}],["imports",{"_index":168,"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":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4184,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4324,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4376,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4379,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3694,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4373,"title":{},"body":{"license.html":{}}}],["include",{"_index":3899,"title":{},"body":{"license.html":{}}}],["included",{"_index":3901,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3862,"title":{},"body":{"license.html":{}}}],["including",{"_index":3918,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":4040,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2948,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2953,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3781,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4430,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4101,"title":{},"body":{"license.html":{}}}],["indemnification",{"_index":4180,"title":{},"body":{"license.html":{}}}],["independent",{"_index":4029,"title":{},"body":{"license.html":{}}}],["index",{"_index":10,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4232,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4194,"title":{},"body":{"license.html":{}}}],["individual",{"_index":1283,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["individuals",{"_index":3787,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":1827,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{}}}],["inform",{"_index":4084,"title":{},"body":{"license.html":{}}}],["information",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4230,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4259,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3855,"title":{},"body":{"license.html":{}}}],["init",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["initial",{"_index":1194,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["initialization",{"_index":1368,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["initialize",{"_index":1470,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["initialized",{"_index":549,"title":{},"body":{"interfaces/Action.html":{}}}],["initializing",{"_index":2651,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["initialparams",{"_index":569,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4253,"title":{},"body":{"license.html":{}}}],["initiator",{"_index":1196,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["inject",{"_index":1332,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1330,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":910,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.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/KeystoreService.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":{},"injectables/Web3Service.html":{},"coverage.html":{}}}],["injectables",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{},"overview.html":{}}}],["input",{"_index":1278,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2799,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":1294,"title":{},"body":{"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":1637,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["install",{"_index":3612,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4118,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4132,"title":{},"body":{"license.html":{}}}],["instance",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["instanceof",{"_index":1388,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":885,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4436,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":4003,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3711,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3995,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3871,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3873,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1365,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1371,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":1357,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["interceptors",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercepts",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":4053,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4247,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4124,"title":{},"body":{"license.html":{}}}],["intern",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["internal",{"_index":2533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["internally",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interpretation",{"_index":4386,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3916,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3930,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{}}}],["invalidate",{"_index":4024,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3939,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1608,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1340,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{}}}],["iserrorstate",{"_index":1272,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1273,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1286,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkeycheck",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1439,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1452,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["it's",{"_index":1456,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":1624,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"license.html":{}}}],["items",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["itself",{"_index":4137,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3410,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3402,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3537,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2783,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify",{"_index":1403,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3687,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kadongo",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kandongo",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3651,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasauni",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2625,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3219,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":4002,"title":{},"body":{"license.html":{}}}],["keki",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2626,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3910,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":851,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["keyform",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":834,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyring",{"_index":3492,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["keys",{"_index":724,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["keystore",{"_index":2642,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["keystore.getprivatekey",{"_index":3305,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keystoreservice",{"_index":988,"title":{"injectables/KeystoreService.html":{}},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["keystoreservice.getkeystore",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["keystoreservice.mutablekeystore",{"_index":1520,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["keyword",{"_index":1554,"title":{},"body":{"injectables/LocationService.html":{}}}],["keywords",{"_index":1552,"title":{},"body":{"injectables/LocationService.html":{}}}],["khaimati",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":78,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3867,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3703,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3732,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4286,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4295,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kokotoni",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3894,"title":{},"body":{"license.html":{}}}],["larger",{"_index":4033,"title":{},"body":{"license.html":{}}}],["last",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":729,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3826,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4257,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3631,"title":{},"body":{"index.html":{}}}],["leader",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3761,"title":{},"body":{"license.html":{}}}],["legend",{"_index":314,"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/NetworkStatusComponent.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":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4435,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":798,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4438,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4160,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3854,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3897,"title":{},"body":{"license.html":{}}}],["library",{"_index":4092,"title":{},"body":{"license.html":{}}}],["license",{"_index":3684,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3830,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3833,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3835,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3704,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4234,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4173,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4227,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limitation",{"_index":4370,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4358,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4159,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4408,"title":{},"body":{"license.html":{}}}],["line:directive",{"_index":2797,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["line:no",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["lines",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2791,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3927,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4433,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2800,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["linting",{"_index":3676,"title":{},"body":{"index.html":{}}}],["list",{"_index":3883,"title":{},"body":{"license.html":{}}}],["literal",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Token.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4254,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":434,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TokenService.html":{}}}],["loadchildren",{"_index":815,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":900,"title":{},"body":{"guards/AuthGuard.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["loading",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loan",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":3618,"title":{},"body":{"index.html":{},"license.html":{}}}],["localstorage",{"_index":909,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":914,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.removeitem(btoa('cicada_private_key",{"_index":1064,"title":{},"body":{"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["located",{"_index":3656,"title":{},"body":{"index.html":{}}}],["location",{"_index":19,"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":{}}}],["location.tolowercase().split",{"_index":1553,"title":{},"body":{"injectables/LocationService.html":{}}}],["locationservice",{"_index":1221,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1440,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1459,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":792,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":790,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":797,"title":{},"body":{"modules/AppModule.html":{}}}],["logging",{"_index":1370,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["logginginterceptor",{"_index":774,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":388,"title":{"injectables/LoggingService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.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/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresult",{"_index":859,"title":{},"body":{"components/AuthComponent.html":{}}}],["loginview",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["logs",{"_index":1462,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["long",{"_index":3949,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":43,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4377,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4380,"title":{},"body":{"license.html":{}}}],["lower",{"_index":2951,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":197,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":72,"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/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2735,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2739,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":817,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":819,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2733,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2737,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2731,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":4043,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":1279,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Staff.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["madewani",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongoni",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4418,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4072,"title":{},"body":{"license.html":{}}}],["maize",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3904,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3715,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3967,"title":{},"body":{"license.html":{}}}],["makina",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3841,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2857,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3607,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":890,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4270,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3779,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["map",{"_index":1313,"title":{},"body":{"classes/CustomValidator.html":{}}}],["march",{"_index":4319,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3771,"title":{},"body":{"license.html":{}}}],["market",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4178,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3828,"title":{},"body":{"license.html":{}}}],["mason",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1333,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":511,"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":513,"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":1304,"title":{},"body":{"classes/CustomValidator.html":{}}}],["matcheckboxmodule",{"_index":503,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1261,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:17",{"_index":1277,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2779,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":86,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1343,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2892,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1348,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2667,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2684,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4138,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":508,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.min(this.transactions.length",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["math.pow(10",{"_index":2963,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":515,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":506,"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":2876,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":505,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":524,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3092,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2874,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":522,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":517,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3093,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3115,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":529,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":502,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":437,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":642,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(tokens",{"_index":3081,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3361,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattabledatasource(users",{"_index":2851,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattablemodule",{"_index":501,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":520,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3095,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3416,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4188,"title":{},"body":{"license.html":{}}}],["means",{"_index":3825,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3975,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3988,"title":{},"body":{"license.html":{}}}],["meat",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":676,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1645,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":701,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3998,"title":{},"body":{"license.html":{}}}],["meet",{"_index":4011,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3886,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1623,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":361,"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/NetworkStatusComponent.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":363,"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/NetworkStatusComponent.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":4359,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3870,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4243,"title":{},"body":{"license.html":{}}}],["meru",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":60,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1481,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["messages",{"_index":1270,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["met",{"_index":3941,"title":{},"body":{"license.html":{}}}],["meta",{"_index":52,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":214,"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/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{}}}],["metal",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":71,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":561,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["methods",{"_index":104,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["methodsignature",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2952,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mined",{"_index":1204,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["minheight",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["mining",{"_index":1197,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["minting",{"_index":2925,"title":{},"body":{"interfaces/Token.html":{}}}],["minyenzeni",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3548,"title":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4169,"title":{},"body":{"license.html":{}}}],["miti",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjinga",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlaleo",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyuchi",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mock",{"_index":572,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mockbackendinterceptor",{"_index":1656,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":787,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1612,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{},"license.html":{}}}],["model",{"_index":4058,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3821,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3889,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3770,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":4015,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3743,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3860,"title":{},"body":{"license.html":{}}}],["module",{"_index":471,"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":473,"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":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":903,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["more",{"_index":3679,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4214,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1578,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoro",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mshomoroni",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":811,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mulunguni",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutablekeystore",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":794,"title":{},"body":{"modules/AppModule.html":{},"injectables/KeystoreService.html":{},"coverage.html":{}}}],["mutumba",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":50,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":119,"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":{},"interfaces/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":{},"components/NetworkStatusComponent.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["name(s",{"_index":1253,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1254,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["namesearchform",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["native",{"_index":1636,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["nature",{"_index":4030,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3623,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2792,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":887,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["navigator.online",{"_index":2593,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["nazi",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4367,"title":{},"body":{"license.html":{}}}],["need",{"_index":3736,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3800,"title":{},"body":{"license.html":{}}}],["network",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.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":{},"interfaces/W3.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["networkstatuscomponent",{"_index":339,"title":{"components/NetworkStatusComponent.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/NetworkStatusComponent.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":{}}}],["new",{"_index":184,"title":{},"body":{"classes/AccountIndex.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":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newevent",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newevent(tx",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":563,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/RouterLinkDirectiveStub.html":{},"license.html":{}}}],["next.handle(request",{"_index":1512,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1384,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1573,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3616,"title":{},"body":{"index.html":{}}}],["ngafterviewinit",{"_index":3338,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1276,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":488,"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":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":234,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.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":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":791,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1591,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nobody",{"_index":1495,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["nointernetconnection",{"_index":2585,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["non",{"_index":3816,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4065,"title":{},"body":{"license.html":{}}}],["none",{"_index":873,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1319,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3902,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4096,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4228,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3879,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3875,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4215,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4210,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4156,"title":{},"body":{"license.html":{}}}],["now",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3611,"title":{},"body":{"index.html":{}}}],["null",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["number",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/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":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2962,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4347,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{}}}],["numbers",{"_index":3560,"title":{},"body":{"miscellaneous/functions.html":{}}}],["nurse",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.challenge",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3480,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":64,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"classes/CustomValidator.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["object.keys(areanames).find((key",{"_index":1556,"title":{},"body":{"injectables/LocationService.html":{}}}],["object.keys(areatypes).find((key",{"_index":1562,"title":{},"body":{"injectables/LocationService.html":{}}}],["object.keys(res",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["objects",{"_index":1448,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["obligate",{"_index":4331,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4079,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3977,"title":{},"body":{"license.html":{}}}],["observable",{"_index":558,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.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":577,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4064,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1391,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4225,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":1451,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["of('hello",{"_index":3327,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3759,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4086,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4068,"title":{},"body":{"license.html":{}}}],["office",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3891,"title":{},"body":{"license.html":{}}}],["offline",{"_index":2599,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["offset",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanames",{"_index":2565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypes",{"_index":2566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categories",{"_index":2567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3662,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2802,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3895,"title":{},"body":{"license.html":{}}}],["oninit",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.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":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["online",{"_index":2600,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["onmenuselect",{"_index":1627,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1649,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":236,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":680,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":698,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2643,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2676,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2644,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2677,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1341,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1345,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2674,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2685,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.keyring",{"_index":4481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["openpgp.signature",{"_index":2705,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2710,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4383,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4071,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3912,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3569,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["option",{"_index":4153,"title":{},"body":{"license.html":{}}}],["optional",{"_index":12,"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":{},"components/NetworkStatusComponent.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":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["options).then((response",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{}}}],["opts",{"_index":2691,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4223,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2621,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2602,"title":{},"body":{"components/OrganizationComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":342,"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/NetworkStatusComponent.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":2604,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2603,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":341,"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/NetworkStatusComponent.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":2605,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2606,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3836,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4170,"title":{},"body":{"license.html":{}}}],["original",{"_index":4171,"title":{},"body":{"license.html":{}}}],["others",{"_index":3738,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":486,"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":1362,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["outlet",{"_index":901,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":2942,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["outputs",{"_index":2935,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["outside",{"_index":3960,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3681,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4266,"title":{},"body":{"license.html":{}}}],["owner",{"_index":2913,"title":{},"body":{"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{}}}],["package",{"_index":3520,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":4022,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3903,"title":{},"body":{"license.html":{}}}],["page",{"_index":734,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2713,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":344,"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/NetworkStatusComponent.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":2729,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2715,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2714,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":498,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":669,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":670,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2726,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2727,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2873,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2871,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2872,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3091,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3089,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3090,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3388,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3386,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3387,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":519,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":343,"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/NetworkStatusComponent.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":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2720,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2724,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4417,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4200,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4278,"title":{},"body":{"license.html":{}}}],["param",{"_index":181,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{}}}],["parameters",{"_index":118,"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":{},"components/NetworkStatusComponent.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":{},"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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":557,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":567,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["parrafin",{"_index":2505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsed",{"_index":3589,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parsedata",{"_index":3478,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3587,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3231,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["parses",{"_index":3588,"title":{},"body":{"miscellaneous/functions.html":{}}}],["part",{"_index":3838,"title":{},"body":{"license.html":{}}}],["particular",{"_index":902,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3869,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":912,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4245,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["password",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2754,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1296,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1298,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":365,"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/NetworkStatusComponent.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":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4199,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3803,"title":{},"body":{"license.html":{}}}],["path",{"_index":536,"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":538,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3785,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1297,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1306,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4313,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4082,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4085,"title":{},"body":{"license.html":{}}}],["peku",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["perform",{"_index":1293,"title":{},"body":{"classes/CustomValidator.html":{},"index.html":{}}}],["performance",{"_index":4363,"title":{},"body":{"license.html":{}}}],["performed",{"_index":545,"title":{},"body":{"interfaces/Action.html":{}}}],["performing",{"_index":3923,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4208,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3762,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3936,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":4005,"title":{},"body":{"license.html":{}}}],["permit",{"_index":4039,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4190,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3697,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4127,"title":{},"body":{"license.html":{}}}],["person",{"_index":3596,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{}}}],["personvalidation",{"_index":3483,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3594,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4329,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2635,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":311,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":231,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":4047,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4062,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3731,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":1832,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(delay(500",{"_index":2529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(first",{"_index":445,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["pipe(materialize",{"_index":2528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipes",{"_index":2806,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2813,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["pk",{"_index":2686,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2690,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2688,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4070,"title":{},"body":{"license.html":{}}}],["plastic",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":727,"title":{},"body":{"components/AppComponent.html":{},"license.html":{}}}],["plumb",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4248,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4409,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popperjs/core",{"_index":3530,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3663,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4089,"title":{},"body":{"license.html":{}}}],["posho",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":4059,"title":{},"body":{"license.html":{}}}],["possession",{"_index":4019,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4385,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4400,"title":{},"body":{"license.html":{}}}],["post",{"_index":2541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3990,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3705,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3791,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3702,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3817,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3788,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4246,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3888,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":813,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":822,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2646,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2664,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4342,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3882,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4164,"title":{},"body":{"license.html":{}}}],["prettier",{"_index":3668,"title":{},"body":{"index.html":{}}}],["prettierrc",{"_index":3673,"title":{},"body":{"index.html":{}}}],["prevent",{"_index":3737,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4123,"title":{},"body":{"license.html":{}}}],["previous",{"_index":581,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3726,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4315,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["prior",{"_index":4211,"title":{},"body":{"license.html":{}}}],["private",{"_index":279,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["privatekey",{"_index":3304,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":3307,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":3306,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3310,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2692,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3773,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4119,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4303,"title":{},"body":{"license.html":{}}}],["prod",{"_index":3622,"title":{},"body":{"index.html":{}}}],["produce",{"_index":3915,"title":{},"body":{"license.html":{}}}],["product",{"_index":4048,"title":{},"body":{"license.html":{}}}],["production",{"_index":3641,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3714,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3997,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3723,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4397,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":732,"title":{},"body":{"components/AppComponent.html":{}}}],["progressive",{"_index":3644,"title":{},"body":{"index.html":{}}}],["prohibit",{"_index":3790,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3986,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4310,"title":{},"body":{"license.html":{}}}],["project",{"_index":3608,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3885,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3878,"title":{},"body":{"license.html":{}}}],["promise",{"_index":138,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":1074,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1518,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["propagate",{"_index":3849,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4231,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3861,"title":{},"body":{"license.html":{}}}],["properties",{"_index":11,"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":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.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/Signature-1.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"miscellaneous/variables.html":{}}}],["property",{"_index":4095,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3813,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3734,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3783,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3764,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4142,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3654,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4364,"title":{},"body":{"license.html":{}}}],["provide",{"_index":809,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{}}}],["providedin",{"_index":913,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["provider",{"_index":1263,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["providers",{"_index":477,"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":92,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["provision",{"_index":3798,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4205,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4351,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4353,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["publicity",{"_index":4172,"title":{},"body":{"license.html":{}}}],["publickeys",{"_index":718,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4143,"title":{},"body":{"license.html":{}}}],["publish",{"_index":4001,"title":{},"body":{"license.html":{}}}],["published",{"_index":4348,"title":{},"body":{"license.html":{}}}],["pump",{"_index":584,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3806,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4099,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4300,"title":{},"body":{"license.html":{}}}],["pwa",{"_index":3642,"title":{},"body":{"index.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3450,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4220,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4362,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":1555,"title":{},"body":{"injectables/LocationService.html":{}}}],["queriedareatype",{"_index":1561,"title":{},"body":{"injectables/LocationService.html":{}}}],["queriedtoken",{"_index":3047,"title":{},"body":{"injectables/TokenService.html":{}}}],["querying",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2787,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["r",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio",{"_index":2926,"title":{},"body":{"interfaces/Token.html":{}}}],["ratio.pipe",{"_index":2891,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2959,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2961,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2622,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":726,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":527,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":3593,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["readable",{"_index":4044,"title":{},"body":{"license.html":{}}}],["readarmored(signature.data",{"_index":2706,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["readcsv",{"_index":3479,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3590,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4288,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4146,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":564,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["reads",{"_index":3591,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ready",{"_index":3797,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":677,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":678,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["reason",{"_index":4298,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4060,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4218,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3729,"title":{},"body":{"license.html":{}}}],["received",{"_index":3751,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4236,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4305,"title":{},"body":{"license.html":{}}}],["recently",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1200,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4296,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3105,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3748,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamations",{"_index":2518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3892,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1079,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":537,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4403,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3683,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3725,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3824,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4333,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4152,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":4021,"title":{},"body":{"license.html":{}}}],["regards",{"_index":1268,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["regenerate",{"_index":3934,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1312,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1321,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1307,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["registry",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.ts",{"_index":2966,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":2970,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":2971,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2969,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":2973,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":2980,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":2984,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1125,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.filegetter",{"_index":2770,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.getregistry",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["registryservice.registry",{"_index":2768,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2773,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.registry.load",{"_index":2774,"title":{},"body":{"injectables/RegistryService.html":{}}}],["regular",{"_index":1310,"title":{},"body":{"classes/CustomValidator.html":{}}}],["reinstated",{"_index":4204,"title":{},"body":{"license.html":{}}}],["reject",{"_index":1075,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{}}}],["reject(rejectbody(res",{"_index":1080,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejectbody",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["rejectbody(error",{"_index":1499,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"miscellaneous/functions.html":{}}}],["relationship",{"_index":3961,"title":{},"body":{"license.html":{}}}],["released",{"_index":3719,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":4013,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4191,"title":{},"body":{"license.html":{}}}],["religious",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3626,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4287,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4078,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3717,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":180,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4155,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4154,"title":{},"body":{"license.html":{}}}],["rename",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["render",{"_index":3815,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4378,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1630,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1631,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["rendering",{"_index":1642,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":573,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4116,"title":{},"body":{"license.html":{}}}],["represents",{"_index":906,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1364,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1510,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1511,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1576,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1577,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requests",{"_index":1375,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2623,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":175,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":312,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":4014,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4081,"title":{},"body":{"license.html":{}}}],["requires",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3840,"title":{},"body":{"license.html":{}}}],["res",{"_index":300,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1077,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3167,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":2924,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{}}}],["reserveratio",{"_index":2918,"title":{},"body":{"interfaces/Token.html":{}}}],["reserves",{"_index":2919,"title":{},"body":{"interfaces/Token.html":{}}}],["reset",{"_index":485,"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":3187,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":739,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1519,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["resolve(keystoreservice.mutablekeystore",{"_index":1522,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["resolve(res.text",{"_index":1081,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["resource",{"_index":1413,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["resources",{"_index":3584,"title":{},"body":{"miscellaneous/functions.html":{}}}],["respect",{"_index":3744,"title":{},"body":{"license.html":{}}}],["response",{"_index":70,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["response.headers.get('token",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.headers.get('www",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.ok",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.status",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{}}}],["responsebody",{"_index":2577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4237,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3805,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3987,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4189,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4186,"title":{},"body":{"license.html":{}}}],["result",{"_index":85,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3843,"title":{},"body":{"license.html":{}}}],["results",{"_index":87,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4130,"title":{},"body":{"license.html":{}}}],["return",{"_index":159,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["returned",{"_index":1314,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":137,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2788,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3169,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3110,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4388,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4340,"title":{},"body":{"license.html":{}}}],["revokeaction(action.id",{"_index":650,"title":{},"body":{"components/AdminComponent.html":{}}}],["rewards",{"_index":2517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4125,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3735,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4361,"title":{},"body":{"license.html":{}}}],["road",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":544,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2775,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2781,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4133,"title":{},"body":{"license.html":{}}}],["root",{"_index":673,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["root'},{'name",{"_index":328,"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/NetworkStatusComponent.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":552,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2784,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2785,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":245,"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":2793,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["routerlinkdirectivestub",{"_index":367,"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/NetworkStatusComponent.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":535,"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":540,"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":821,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":894,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":534,"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":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1493,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1490,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":492,"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":533,"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":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":651,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4252,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":3671,"title":{},"body":{"index.html":{},"license.html":{}}}],["run",{"_index":3610,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3647,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3913,"title":{},"body":{"license.html":{}}}],["runtime",{"_index":1450,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["rural",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":579,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.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":424,"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":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s.signature",{"_index":2699,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":733,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2808,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2805,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4405,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3769,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4260,"title":{},"body":{"license.html":{}}}],["sales",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3749,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2815,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":79,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["satisfy",{"_index":4080,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savedindex",{"_index":1065,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["savings",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4075,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3628,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2818,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["sch",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schema",{"_index":3598,"title":{},"body":{"miscellaneous/functions.html":{}}}],["school",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4309,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3639,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3919,"title":{},"body":{"license.html":{}}}],["search",{"_index":219,"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":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/NetworkStatusComponent.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":528,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":260,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":255,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:43",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:47",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:50",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:53",{"_index":269,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:57",{"_index":249,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:67",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:87",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["searching",{"_index":2823,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["secondarily",{"_index":3853,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3309,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3966,"title":{},"body":{"license.html":{}}}],["sections",{"_index":1465,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["security",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3659,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["select",{"_index":2532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["selection",{"_index":1625,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive",{"_index":2889,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1621,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:25",{"_index":1643,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:8",{"_index":1632,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":217,"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/NetworkStatusComponent.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":4275,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3449,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3827,"title":{},"body":{"license.html":{}}}],["send",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1583,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1593,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1199,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["senderaddress",{"_index":3206,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3106,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1584,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1595,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1585,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1597,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1586,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1599,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1587,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1601,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendsignedchallenge",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendsignedchallenge(hobaresponseencoded",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1588,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1603,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1589,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1605,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentence",{"_index":1464,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sentencesforwarninglogging",{"_index":1437,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4088,"title":{},"body":{"license.html":{}}}],["separate",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":4025,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2981,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["serve",{"_index":3617,"title":{},"body":{"index.html":{}}}],["server",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":802,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":800,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3906,"title":{},"body":{"license.html":{}}}],["service",{"_index":886,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["services",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["serviceworkermodule",{"_index":796,"title":{},"body":{"modules/AppModule.html":{}}}],["serviceworkermodule.register('ngsw",{"_index":805,"title":{},"body":{"modules/AppModule.html":{}}}],["servicing",{"_index":4368,"title":{},"body":{"license.html":{}}}],["session",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":576,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["setconversion",{"_index":3188,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":560,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":574,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["sets",{"_index":1301,"title":{},"body":{"classes/CustomValidator.html":{}}}],["setsessiontoken",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["setsessiontoken(token",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["settimeout",{"_index":2595,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["setting",{"_index":1504,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["settings",{"_index":1100,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":346,"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/NetworkStatusComponent.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":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2834,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2833,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter",{"_index":1182,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":345,"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/NetworkStatusComponent.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":2865,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2869,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2653,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3220,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3971,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":580,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3925,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":482,"title":{"modules/SharedModule.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":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4420,"title":{},"body":{"license.html":{}}}],["show",{"_index":3752,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1390,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":740,"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":348,"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/NetworkStatusComponent.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":2899,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2898,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":751,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":750,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":754,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1653,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":745,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":747,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":748,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1655,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":347,"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/NetworkStatusComponent.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":349,"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/NetworkStatusComponent.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":2709,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2647,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2668,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(opts",{"_index":2694,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signable",{"_index":2665,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":55,"title":{"interfaces/Signature.html":{},"interfaces/Signature-1.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signatureobject",{"_index":3308,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3314,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(0",{"_index":3311,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3313,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signer",{"_index":130,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2637,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts:109",{"_index":2669,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:11",{"_index":2903,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:144",{"_index":2673,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2904,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:34",{"_index":2905,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:36",{"_index":2906,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:42",{"_index":2907,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:48",{"_index":2908,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:54",{"_index":2909,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:60",{"_index":2654,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:62",{"_index":2655,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:64",{"_index":2656,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:66",{"_index":2657,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:68",{"_index":2658,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:70",{"_index":2659,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:72",{"_index":2661,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:74",{"_index":2650,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:90",{"_index":2663,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:99",{"_index":2666,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4117,"title":{},"body":{"license.html":{}}}],["signing",{"_index":2639,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signs",{"_index":2670,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["silc",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3426,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3985,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4328,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4301,"title":{},"body":{"license.html":{}}}],["size",{"_index":4482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2759,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smallest",{"_index":2922,"title":{},"body":{"interfaces/Token.html":{}}}],["smokie",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3168,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3114,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2954,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socket",{"_index":2831,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["socks",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3692,"title":{},"body":{"license.html":{}}}],["soko",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4100,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3951,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3963,"title":{},"body":{"license.html":{}}}],["something",{"_index":730,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":2323,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1189,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["south",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":3724,"title":{},"body":{"license.html":{}}}],["special",{"_index":3809,"title":{},"body":{"license.html":{}}}],["specific",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3929,"title":{},"body":{"license.html":{}}}],["specified",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4346,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4349,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":526,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4341,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3549,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3550,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3551,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../global",{"_index":3555,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3552,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3553,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3554,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../sync.ts",{"_index":3556,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:122",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:22",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:24",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:26",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:58",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:79",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:96",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":2965,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":878,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:21",{"_index":884,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:38",{"_index":895,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2776,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:21",{"_index":2777,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:38",{"_index":2778,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3465,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3468,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1260,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1292,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:13",{"_index":1300,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:28",{"_index":1309,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3471,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1430,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/http",{"_index":3475,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3477,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3481,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/sync.ts",{"_index":3485,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:21",{"_index":1367,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:42",{"_index":1374,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1502,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1564,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1566,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:35",{"_index":1567,"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":542,"title":{},"body":{"interfaces/Action.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2817,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:10",{"_index":2828,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:13",{"_index":2822,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:4",{"_index":2825,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2826,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2827,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2910,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2916,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1186,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["src/app/_pgp/pgp",{"_index":2636,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:128",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:138",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:166",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:172",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:18",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:184",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:19",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:190",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:20",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:202",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:206",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:23",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:31",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:46",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:50",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:72",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:93",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1338,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/keystore.service.ts",{"_index":1514,"title":{},"body":{"injectables/KeystoreService.html":{},"coverage.html":{}}}],["src/app/_services/keystore.service.ts:12",{"_index":1517,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["src/app/_services/keystore.service.ts:8",{"_index":1516,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["src/app/_services/location.service.ts",{"_index":1523,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:11",{"_index":1540,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:12",{"_index":1542,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:13",{"_index":1544,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:15",{"_index":1545,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1547,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:17",{"_index":1533,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:21",{"_index":1536,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1535,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:40",{"_index":1539,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:47",{"_index":1538,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1580,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1604,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1594,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1600,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1602,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1606,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1596,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1598,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1607,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1592,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2760,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2766,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2763,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:16",{"_index":2764,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":2991,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:12",{"_index":3015,"title":{},"body":{"injectables/TokenService.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":3019,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:18",{"_index":3021,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:19",{"_index":3001,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:23",{"_index":3013,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:31",{"_index":3003,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:43",{"_index":3011,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:51",{"_index":3007,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:62",{"_index":3009,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:72",{"_index":3005,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:77",{"_index":3010,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:82",{"_index":3012,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:110",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:143",{"_index":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:158",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:163",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:170",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3211,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3214,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:32",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:33",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:44",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:50",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:54",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:58",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3503,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/web3.service.ts",{"_index":3451,"title":{},"body":{"injectables/Web3Service.html":{},"coverage.html":{}}}],["src/app/_services/web3.service.ts:13",{"_index":3454,"title":{},"body":{"injectables/Web3Service.html":{}}}],["src/app/_services/web3.service.ts:9",{"_index":3453,"title":{},"body":{"injectables/Web3Service.html":{}}}],["src/app/app",{"_index":812,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:18",{"_index":708,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:19",{"_index":706,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:20",{"_index":704,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:21",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:34",{"_index":697,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:57",{"_index":699,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:82",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:88",{"_index":694,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":775,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2740,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":926,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":842,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":844,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:18",{"_index":843,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:19",{"_index":835,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:28",{"_index":837,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:37",{"_index":846,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:41",{"_index":838,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:53",{"_index":836,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:66",{"_index":839,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:73",{"_index":841,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":921,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":532,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:27",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:30",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:39",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:65",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:69",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:75",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:86",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:94",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":671,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:35",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:46",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:50",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:54",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:65",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:76",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:80",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":668,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2728,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2712,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:11",{"_index":2716,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2725,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2601,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2610,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2611,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2607,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:18",{"_index":2608,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:26",{"_index":2613,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2609,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2878,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2832,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2843,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2842,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2845,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2847,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:20",{"_index":2848,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2846,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:23",{"_index":2837,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:27",{"_index":2841,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:38",{"_index":2838,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:42",{"_index":2839,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:46",{"_index":2840,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2870,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2929,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3097,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3061,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:17",{"_index":3074,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3073,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3075,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3076,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3077,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3067,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3070,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:46",{"_index":3068,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:50",{"_index":3072,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:54",{"_index":3069,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3088,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3103,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3389,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3329,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3354,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3355,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:25",{"_index":3349,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3350,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3356,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:28",{"_index":3353,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:29",{"_index":3357,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:30",{"_index":3358,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:31",{"_index":3352,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:33",{"_index":3351,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:34",{"_index":3341,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:43",{"_index":3346,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3348,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:70",{"_index":3342,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:74",{"_index":3344,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:87",{"_index":3345,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:92",{"_index":3343,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3385,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1620,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2807,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:10",{"_index":2812,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2958,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/unix",{"_index":3390,"title":{},"body":{"pipes/UnixDatePipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1322,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1417,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:10",{"_index":1422,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1423,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/network",{"_index":2580,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2884,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2897,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:12",{"_index":2901,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2900,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3098,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:12",{"_index":3102,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3101,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3226,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3657,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["src/environments/environment.dev.ts",{"_index":3513,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3514,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3515,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":551,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2790,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1428,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3057,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3323,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3398,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stack",{"_index":1457,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["stadium",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":658,"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.userid",{"_index":1067,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3796,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3890,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3893,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4406,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3619,"title":{},"body":{"index.html":{}}}],["start:prod",{"_index":3621,"title":{},"body":{"index.html":{}}}],["start:pwa",{"_index":3645,"title":{},"body":{"index.html":{}}}],["started",{"_index":3605,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4421,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1572,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":630,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2789,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3940,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4193,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3459,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2628,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1295,"title":{},"body":{"classes/CustomValidator.html":{},"injectables/KeystoreService.html":{},"injectables/RegistryService.html":{},"injectables/Web3Service.html":{}}}],["stating",{"_index":4004,"title":{},"body":{"license.html":{}}}],["station",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":449,"title":{},"body":{"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["status'},{'name",{"_index":340,"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/NetworkStatusComponent.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":{}}}],["status.component",{"_index":2894,"title":{},"body":{"modules/SharedModule.html":{}}}],["status.component.html",{"_index":2584,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.scss",{"_index":2583,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts",{"_index":2582,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["status.component.ts:10",{"_index":2589,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:16",{"_index":2592,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:18",{"_index":2591,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status/network",{"_index":2581,"title":{},"body":{"components/NetworkStatusComponent.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["statustext",{"_index":1500,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["steps",{"_index":3757,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":4035,"title":{},"body":{"license.html":{}}}],["store",{"_index":66,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":3490,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["stored",{"_index":3636,"title":{},"body":{"index.html":{}}}],["string",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{}}}],["stringfromurl",{"_index":2578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":553,"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:10",{"_index":2796,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:103",{"_index":3436,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:11",{"_index":568,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:124",{"_index":3434,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:13",{"_index":2795,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:134",{"_index":3432,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":571,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3060,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":575,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:4",{"_index":3326,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3325,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:72",{"_index":3401,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":3324,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:87",{"_index":3439,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:9",{"_index":2794,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["student",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["styles",{"_index":206,"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/NetworkStatusComponent.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":220,"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/NetworkStatusComponent.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":{}}}],["styling",{"_index":3670,"title":{},"body":{"index.html":{}}}],["subdividing",{"_index":4242,"title":{},"body":{"license.html":{}}}],["subject",{"_index":565,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/TokenService.html":{},"license.html":{}}}],["sublicenses",{"_index":4271,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3965,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1259,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3928,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4431,"title":{},"body":{"license.html":{}}}],["subscribe",{"_index":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["subscribe((res",{"_index":446,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TransactionsComponent.html":{}}}],["subscribe(async",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["subscribers",{"_index":583,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4066,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4113,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3794,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1574,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1203,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["successful",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/functions.html":{}}}],["successfully",{"_index":2560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3745,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4285,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4120,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":2798,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["sugar",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum",{"_index":3558,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sum.ts",{"_index":3466,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1475,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1472,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4147,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":2920,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["support",{"_index":2718,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":3643,"title":{},"body":{"index.html":{},"license.html":{}}}],["sure",{"_index":3716,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3741,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4192,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4381,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4439,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1405,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{}}}],["swupdate",{"_index":688,"title":{},"body":{"components/AppComponent.html":{}}}],["symbol",{"_index":1211,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["sync.service.ts",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:109",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:16",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:27",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:45",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:80",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:88",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2772,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountsindex.json",{"_index":176,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2985,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncable",{"_index":3602,"title":{},"body":{"miscellaneous/functions.html":{}}}],["system",{"_index":547,"title":{},"body":{"interfaces/Action.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3784,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3519,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2912,"title":{},"body":{"interfaces/Staff.html":{}}}],["tags",{"_index":2914,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3707,"title":{},"body":{"license.html":{}}}],["tangible",{"_index":4094,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1570,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3974,"title":{},"body":{"license.html":{}}}],["tel",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3880,"title":{},"body":{"license.html":{}}}],["template",{"_index":205,"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/NetworkStatusComponent.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":222,"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/NetworkStatusComponent.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":3938,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4419,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4198,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4219,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4207,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4195,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3753,"title":{},"body":{"license.html":{}}}],["test",{"_index":555,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"index.html":{}}}],["tests",{"_index":3649,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":2755,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then((s",{"_index":2695,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["then((sig",{"_index":2707,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["therefore",{"_index":3742,"title":{},"body":{"license.html":{}}}],["thika",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3733,"title":{},"body":{"license.html":{}}}],["third",{"_index":911,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":442,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter((account",{"_index":457,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":455,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":447,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":643,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":307,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":308,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":306,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3249,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtrusteduser(key.users[0].userid",{"_index":1073,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.algo",{"_index":2698,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1246,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.areanameslist.asobservable",{"_index":1543,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areanameslist.next(res",{"_index":1551,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areatypeslist.asobservable",{"_index":1548,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areatypeslist.next(res",{"_index":1559,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.authservice.getprivatekey",{"_index":852,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getprivatekeyinfo",{"_index":2854,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":719,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":721,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.init",{"_index":716,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{}}}],["this.authservice.login",{"_index":860,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.loginview",{"_index":853,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2856,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":720,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":858,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.trusteduserssubject.subscribe((users",{"_index":2850,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3365,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.blocksyncservice.init",{"_index":3364,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.cdr.detectchanges",{"_index":2597,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.closewindow.emit(this.token",{"_index":2944,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.closewindow.emit(this.transaction",{"_index":3154,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.contract",{"_index":183,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.add(address).send",{"_index":192,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":2989,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entry(i).call",{"_index":199,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":2990,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":201,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.have(address).call",{"_index":194,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contractaddress",{"_index":182,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1249,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1250,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":436,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":456,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":452,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":438,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":440,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.dgst",{"_index":2683,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1354,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2697,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":722,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.formbuilder.group",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1248,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey().users[0].userid",{"_index":1083,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getsessiontoken",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.gettokens",{"_index":3045,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.handlenetworkchange",{"_index":2594,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.haveaccount(address",{"_index":191,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient",{"_index":1549,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/user/${address}/${offset}/${limit",{"_index":3234,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.isdialogopen",{"_index":1352,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1483,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":850,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":854,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":856,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2679,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2682,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2687,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2708,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2804,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.load.next(true",{"_index":3026,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":857,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.areanamessubject.subscribe((res",{"_index":1245,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.locationservice.getareanames",{"_index":1244,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1476,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1614,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1618,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1619,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1615,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1616,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1613,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1617,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1059,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/TransactionService.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":433,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2703,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1404,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1485,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3319,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3321,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1579,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1571,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":648,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(tokens",{"_index":3080,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1484,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginview",{"_index":1063,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addeventlistener('change",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1082,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach((key",{"_index":1072,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":1521,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["this.name",{"_index":1474,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":290,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2803,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.nointernetconnection",{"_index":2596,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.onmenuselect",{"_index":1646,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1652,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onresize(this.mediaquery",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2680,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2701,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2704,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2681,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2711,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2614,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2618,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2619,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":439,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":459,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":288,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":295,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":296,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3136,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":3023,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(address",{"_index":3035,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.addtoken(await",{"_index":3051,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3025,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1644,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.router.navigate",{"_index":2786,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":915,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":861,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl",{"_index":302,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1408,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3140,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3141,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3142,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.url",{"_index":1489,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2816,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2829,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["this.senderbloxberglink",{"_index":3134,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1610,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendsignedchallenge(r).then((response",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1487,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.setparammap(initialparams",{"_index":585,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setsessiontoken(tokenresponse",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setstate('click",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2696,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":186,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3149,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":441,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1473,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":570,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":586,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":855,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.swupdate.available.subscribe",{"_index":736,"title":{},"body":{"components/AppComponent.html":{}}}],["this.swupdate.isenabled",{"_index":735,"title":{},"body":{"components/AppComponent.html":{}}}],["this.toggledisplay(divone",{"_index":868,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":869,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2749,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2943,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["this.tokenname",{"_index":3138,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3024,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3052,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3033,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3018,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["this.tokens.findindex((tk",{"_index":3027,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens.splice(savedindex",{"_index":3030,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens.unshift(token",{"_index":3031,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenservice.gettokenname",{"_index":3139,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3078,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokensymbol",{"_index":451,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.tokenservice.init",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.tokenservice.load.subscribe(async",{"_index":448,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.tokenservice.tokenssubject.subscribe((tokens",{"_index":3079,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenslist.asobservable",{"_index":3020,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenslist.next(this.tokens",{"_index":3032,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenssubject.subscribe((tokens",{"_index":3046,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokensymbol",{"_index":450,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.totalaccounts",{"_index":196,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3131,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3153,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3146,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3145,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3144,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3147,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3135,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3137,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3133,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3130,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3360,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3369,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3362,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3363,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter",{"_index":3370,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find((cachedtx",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.findindex((tx",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.splice(savedindex",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.init",{"_index":717,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":763,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":759,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe((transactions",{"_index":3359,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3143,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3368,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3366,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["this.trustedusers.findindex((staff",{"_index":1066,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trustedusers.splice(savedindex",{"_index":1069,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trustedusers.unshift(user",{"_index":1070,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trusteduserslist.asobservable",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trusteduserslist.next(this.trustedusers",{"_index":1071,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.userinfo",{"_index":2853,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice",{"_index":443,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.userservice.accountssubject.subscribe((accounts",{"_index":435,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe((actions",{"_index":641,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.addaccount(accountinfo",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.addaccount(defaultaccount",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.categoriessubject.subscribe((res",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":309,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getactions",{"_index":640,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.init",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":431,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":293,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3320,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3318,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3792,"title":{},"body":{"license.html":{}}}],["though",{"_index":4150,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3801,"title":{},"body":{"license.html":{}}}],["three",{"_index":4055,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1496,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{},"license.html":{}}}],["throw",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1383,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1416,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":1449,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3956,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":904,"title":{},"body":{"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"guards/RoleGuard.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"license.html":{}}}],["timestamp",{"_index":1205,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{}}}],["tissue",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":679,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1258,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["tk.address",{"_index":3028,"title":{},"body":{"injectables/TokenService.html":{}}}],["todo",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["toggle",{"_index":1622,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["toggle.directive",{"_index":925,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1647,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2746,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:15",{"_index":2744,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":1651,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:30",{"_index":2747,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":1650,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggledisplay",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":840,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2742,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3225,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":27,"title":{"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":3029,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.decimals",{"_index":3042,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.balanceof(address).call",{"_index":3053,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.name().call",{"_index":3054,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.symbol().call",{"_index":3055,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.name",{"_index":3036,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.supply",{"_index":3040,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":3038,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token?.address",{"_index":2947,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.name",{"_index":2945,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.owner",{"_index":2957,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.reserveratio",{"_index":2956,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.supply",{"_index":2955,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.symbol",{"_index":2946,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["tokenaddress",{"_index":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokencontract",{"_index":3034,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.decimals().call",{"_index":3043,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.name().call",{"_index":3037,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.symbol().call",{"_index":3039,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.totalsupply().call",{"_index":3041,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokendetailscomponent",{"_index":350,"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/NetworkStatusComponent.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":{}}}],["tokenname",{"_index":3107,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["tokenratio",{"_index":469,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2882,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2964,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"coverage.html":{}}}],["tokenresponse",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["tokens",{"_index":1201,"title":{},"body":{"interfaces/Conversion.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tokens'},{'name",{"_index":352,"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/NetworkStatusComponent.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":3063,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3062,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find((token",{"_index":3048,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokenscomponent",{"_index":351,"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/NetworkStatusComponent.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":389,"title":{"injectables/TokenService.html":{}},"body":{"components/AccountsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3056,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokenslist",{"_index":2992,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensmodule",{"_index":3083,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3087,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tokenssubject",{"_index":2993,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject",{"_index":3044,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject.asobservable",{"_index":3050,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject.next(queriedtoken",{"_index":3049,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensymbol",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tom",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tools",{"_index":3921,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1429,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":354,"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/NetworkStatusComponent.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":3100,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3099,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":353,"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/NetworkStatusComponent.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":355,"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/NetworkStatusComponent.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":164,"title":{},"body":{"classes/AccountIndex.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":2968,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1190,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tovalue(value",{"_index":3300,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1458,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1609,"title":{},"body":{"injectables/LoggingService.html":{}}}],["tracks",{"_index":1281,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["trade",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4176,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4177,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1191,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["traderbloxberglink",{"_index":3108,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2950,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transacted",{"_index":1202,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["transaction",{"_index":357,"title":{"interfaces/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["transaction.destinationtoken.address",{"_index":3176,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3177,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3178,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3157,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.fromvalue",{"_index":3174,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3158,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3156,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3171,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3172,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3173,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3159,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.token._address",{"_index":3161,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3179,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3170,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3162,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3165,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3166,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3164,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3163,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3160,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3375,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3374,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3377,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3378,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3379,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3376,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3333,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":356,"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/NetworkStatusComponent.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":3334,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":359,"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/NetworkStatusComponent.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":3332,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3331,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":358,"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/NetworkStatusComponent.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":686,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3322,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1185,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1184,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1183,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":483,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3384,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3335,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3336,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3373,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2616,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferauthorization",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4126,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3190,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4240,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3372,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2809,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["transform(timestamp",{"_index":3392,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["transform(url",{"_index":2810,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2960,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":632,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4083,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":905,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4149,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3981,"title":{},"body":{"license.html":{}}}],["tree",{"_index":208,"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/NetworkStatusComponent.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":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["trigger('detailexpand",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{}}}],["triggered",{"_index":2660,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["true",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.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":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":723,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trusteduserslist",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["trusteduserssubject",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2752,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3542,"title":{},"body":{"dependencies.html":{}}}],["tslint",{"_index":3669,"title":{},"body":{"index.html":{}}}],["tslint.json",{"_index":3674,"title":{},"body":{"index.html":{}}}],["tslint:disable",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["tudor",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":3756,"title":{},"body":{"license.html":{}}}],["tx",{"_index":1107,"title":{"interfaces/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"modules/PagesRoutingModule.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3301,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3303,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3315,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3297,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.tx.txhash",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3299,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1208,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txhelper",{"_index":2819,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["txindex",{"_index":1209,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txmsg",{"_index":3302,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1192,"title":{"interfaces/TxToken.html":{}},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3316,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":21,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature.html":{},"interfaces/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["typed",{"_index":1376,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["typeerror",{"_index":1492,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["types",{"_index":1447,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["typescript",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["typical",{"_index":4107,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2633,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2634,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1171,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1179,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unacceptable",{"_index":3789,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":645,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1407,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":301,"title":{},"body":{"components/AccountSearchComponent.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["under",{"_index":3831,"title":{},"body":{"license.html":{}}}],["unga",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unique",{"_index":1210,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["unit",{"_index":3648,"title":{},"body":{"index.html":{}}}],["united",{"_index":2627,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unixdate",{"_index":467,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{}}}],["unixdatepipe",{"_index":2883,"title":{"pipes/UnixDatePipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/UnixDatePipe.html":{},"coverage.html":{},"overview.html":{}}}],["unknown",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/UnixDatePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4115,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3944,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3848,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3968,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4145,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1396,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4206,"title":{},"body":{"license.html":{}}}],["updates",{"_index":4135,"title":{},"body":{"license.html":{}}}],["updatesyncable",{"_index":3486,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["updatesyncable(changes",{"_index":3600,"title":{},"body":{"miscellaneous/functions.html":{}}}],["uploaded",{"_index":897,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":462,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":889,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":907,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":559,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":810,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["useful",{"_index":4413,"title":{},"body":{"license.html":{}}}],["usehash",{"_index":823,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["user",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["user.email",{"_index":2864,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2863,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from",{"_index":3243,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":1068,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":468,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":466,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":470,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":464,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":465,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2844,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":2836,"title":{},"body":{"components/SettingsComponent.html":{},"injectables/TransactionService.html":{}}}],["userinfo?.email",{"_index":2862,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userinfo?.name",{"_index":2861,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userinfo?.userid",{"_index":2859,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userkey",{"_index":3437,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2860,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2852,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3397,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4110,"title":{},"body":{"license.html":{}}}],["using",{"_index":2671,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{},"license.html":{}}}],["ustadh",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utange",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3221,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1173,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1174,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"miscellaneous/functions.html":{}}}],["validates",{"_index":3595,"title":{},"body":{"miscellaneous/functions.html":{}}}],["validation",{"_index":1282,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["validation.ts",{"_index":3482,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1308,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3529,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":48,"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":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.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":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":453,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":582,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"miscellaneous/functions.html":{}}}],["var",{"_index":318,"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/NetworkStatusComponent.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":3461,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3655,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":22,"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":3272,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcardvalidation",{"_index":3484,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3599,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3699,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2662,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verify",{"_index":2648,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2672,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verifying",{"_index":2640,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3713,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3585,"title":{},"body":{"miscellaneous/functions.html":{},"index.html":{}}}],["viatu",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":1638,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"components/TransactionDetailsComponent.html":{},"index.html":{},"license.html":{}}}],["view_in_ar",{"_index":313,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3111,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":888,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3112,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3065,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3071,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3113,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3339,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3347,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4141,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4202,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":628,"title":{},"body":{"components/AdminComponent.html":{},"directives/PasswordToggleDirective.html":{}}}],["visible",{"_index":631,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":250,"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/LocationService.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.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":4034,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1165,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2820,"title":{"interfaces/W3.html":{}},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3989,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4393,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3730,"title":{},"body":{"license.html":{}}}],["ward",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warning",{"_index":1454,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warnings",{"_index":1467,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warranties",{"_index":3881,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3767,"title":{},"body":{"license.html":{}}}],["wash",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3720,"title":{},"body":{"license.html":{}}}],["ways",{"_index":4045,"title":{},"body":{"license.html":{}}}],["web",{"_index":3606,"title":{},"body":{"index.html":{}}}],["web3",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":3456,"title":{},"body":{"injectables/Web3Service.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":2987,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":187,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":185,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":2988,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["web3service",{"_index":169,"title":{"injectables/Web3Service.html":{}},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{},"coverage.html":{}}}],["web3service.getinstance",{"_index":179,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["web3service.web3",{"_index":3455,"title":{},"body":{"injectables/Web3Service.html":{}}}],["weight",{"_index":2928,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{}}}],["welcome",{"_index":4423,"title":{},"body":{"license.html":{}}}],["welder",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3865,"title":{},"body":{"license.html":{}}}],["went",{"_index":1400,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4244,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3900,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4090,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3896,"title":{},"body":{"license.html":{}}}],["width",{"_index":661,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3911,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1169,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1177,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newevent(transaction",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":870,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload",{"_index":738,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2689,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":682,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":683,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3980,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3728,"title":{},"body":{"license.html":{}}}],["within",{"_index":4187,"title":{},"body":{"license.html":{}}}],["without",{"_index":3851,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3920,"title":{},"body":{"license.html":{}}}],["worker",{"_index":712,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["worker.js",{"_index":806,"title":{},"body":{"modules/AppModule.html":{}}}],["working",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3646,"title":{},"body":{"index.html":{},"license.html":{}}}],["world",{"_index":3328,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["world!'",{"_index":3566,"title":{},"body":{"miscellaneous/functions.html":{}}}],["worldwide",{"_index":4274,"title":{},"body":{"license.html":{}}}],["wote",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["wrapper",{"_index":1634,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["write",{"_index":69,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["writing",{"_index":4356,"title":{},"body":{"license.html":{}}}],["written",{"_index":4054,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1401,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":4056,"title":{},"body":{"license.html":{}}}],["yes",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4292,"title":{},"body":{"license.html":{}}}],["youth",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3546,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":484,"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 Description\n \n \n Account data interface \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 Age of user \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 Token balance on account \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 Business category of user. \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 Account registration day \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 User's gender \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 Account identifiers \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 User's location \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 Products or services provided by user. \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 Type of account \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 Personal identifying information of user \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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:26\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:22\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:24\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:26\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:58\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:79\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:96\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:122\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 { Web3Service } from '@app/_services/web3.service';\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/AccountsIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = Web3Service.getInstance();\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.have(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;\n if (lowest = [];\n for (let i = count - 1; i >= lowest; i--) {\n const account: string = await this.contract.methods.entry(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.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"},"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 Async\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 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/accounts/account-search/account-search.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 \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:87\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:57\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:67\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:47\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:50\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:53\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 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 async ngOnInit(): Promise {\n await this.userService.init();\n }\n\n get nameSearchFormStub(): any {\n return this.nameSearchForm.controls;\n }\n get phoneSearchFormStub(): any {\n return this.phoneSearchForm.controls;\n }\n get addressSearchFormStub(): any {\n return this.addressSearchForm.controls;\n }\n\n onNameSearch(): void {\n this.nameSearchSubmitted = true;\n if (this.nameSearchForm.invalid) {\n return;\n }\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) {\n return;\n }\n this.phoneSearchLoading = true;\n (\n await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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) {\n return;\n }\n this.addressSearchLoading = true;\n (\n await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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 Accounts \n \n \n \n \n \n Search \n \n Phone Number is required.\n phone\n Phone Number\n \n \n SEARCH\n \n \n \n \n \n \n Search \n \n Account Address is required.\n view_in_ar\n Account Address\n \n \n SEARCH\n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 tokenSymbol\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 Async\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, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:30\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 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 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:65\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:94\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:75\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/accounts/accounts.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 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:86\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:69\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:29\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:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:27\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, TokenService, 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 tokenSymbol: string;\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 private tokenService: TokenService\n ) {}\n\n async ngOnInit(): Promise {\n await this.userService.init();\n await this.tokenService.init();\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 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 this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n }\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(\n `/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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 Accounts \n \n \n \n ACCOUNT TYPE \n \n ALL\n \n {{ accountType | uppercase }}\n \n \n \n \n SEARCH\n \n \n EXPORT\n \n \n\n \n Filter \n \n search\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 | unixDate }} \n \n\n \n BALANCE \n \n {{ user?.balance | tokenRatio }} {{ tokenSymbol | uppercase }}\n \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 | unixDate }} BALANCE {{ user?.balance | tokenRatio }} {{ tokenSymbol | uppercase }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_imports\n\n\n\ncluster_AccountsModule_declarations\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 { 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@NgModule({\n declarations: [\n AccountsComponent,\n AccountDetailsComponent,\n CreateAccountComponent,\n AccountSearchComponent,\n ],\n imports: [\n CommonModule,\n AccountsRoutingModule,\n SharedModule,\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 Description\n \n \n Action object interface \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 Action performed \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 Action approval status. \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 Action ID \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 Admin's role in the system \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 Admin who initialized the action. \n\n \n \n \n \n \n \n\n\n \n interface Action {\n /** Action performed */\n action: string;\n /** Action approval status. */\n approval: boolean;\n /** Action ID */\n id: number;\n /** Admin's role in the system */\n role: string;\n /** Admin who initialized the action. */\n user: string;\n}\n\n/** @exports */\nexport { Action };\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 Async\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:50\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:54\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:65\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: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 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:80\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:76\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 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/admin/admin.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 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(private userService: UserService, private loggingService: LoggingService) {}\n\n async ngOnInit(): Promise {\n await this.userService.init();\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 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?')) {\n return;\n }\n this.userService\n .approveAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) {\n return;\n }\n this.userService\n .revokeAction(action.id)\n .pipe(first())\n .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 \n EXPORT\n \n \n \n \n \n Filter \n \n search\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 \n {{ approvalStatus(action.approval) }}\n \n \n {{ approvalStatus(action.approval) }}\n \n \n \n\n \n APPROVE \n \n \n Approve\n \n \n Disapprove\n \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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_imports\n\n\n\ncluster_AdminModule_declarations\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@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 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-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 Async\n ngOnInit\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, swUpdate: SwUpdate)\n \n \n \n \n Defined in src/app/app.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 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 swUpdate\n \n \n SwUpdate\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:88\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:82\n \n \n\n\n \n \n\n \n \n \n Methods\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/app.component.ts:34\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 onResize\n \n \n \n \n \n \n \nonResize(e)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:57\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:21\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:20\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:19\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:18\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';\nimport {\n AuthService,\n ErrorDialogService,\n LoggingService,\n TransactionService,\n} from '@app/_services';\nimport { catchError } from 'rxjs/operators';\nimport { SwUpdate } from '@angular/service-worker';\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 implements OnInit {\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 private swUpdate: SwUpdate\n ) {\n this.mediaQuery.addEventListener('change', this.onResize);\n this.onResize(this.mediaQuery);\n }\n\n async ngOnInit(): Promise {\n await this.authService.init();\n await this.transactionService.init();\n try {\n const publicKeys = await this.authService.getPublicKeys();\n await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n this.authService.getTrustedUsers();\n } catch (error) {\n this.errorDialogService.openDialog({\n message: 'Trusted keys endpoint cannot be reached. Please try again later.',\n });\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\n if (!this.swUpdate.isEnabled) {\n this.swUpdate.available.subscribe(() => {\n if (confirm('New Version available. Load New Version?')) {\n window.location.reload();\n }\n });\n }\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_bootstrap\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AppModule_declarations\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 { GlobalErrorHandler, MockBackendProvider } from '@app/_helpers';\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';\nimport { ServiceWorkerModule } from '@angular/service-worker';\n\n@NgModule({\n declarations: [AppComponent],\n imports: [\n BrowserModule,\n AppRoutingModule,\n BrowserAnimationsModule,\n HttpClientModule,\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 ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }),\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 {\n path: '',\n loadChildren: () => \"import('@pages/pages.module').then((m) => m.PagesModule)\",\n canActivate: [AuthGuard],\n },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [\n RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules,\n useHash: true,\n }),\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"},"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 Async\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, errorDialogService: ErrorDialogService)\n \n \n \n \n Defined in src/app/auth/auth.component.ts:19\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 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 \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n login\n \n \n \n \n \n \n \n \n login()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:53\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 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:28\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:41\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: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 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:73\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:16\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:18\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:19\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:17\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:37\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 { ErrorDialogService } from '@app/_services/error-dialog.service';\nimport { LoggingService } from '@app/_services/logging.service';\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 private errorDialogService: ErrorDialogService\n ) {}\n\n async ngOnInit(): Promise {\n this.keyForm = this.formBuilder.group({\n key: ['', Validators.required],\n });\n if (this.authService.getPrivateKey()) {\n this.authService.loginView();\n }\n }\n\n get keyFormStub(): any {\n return this.keyForm.controls;\n }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) {\n return;\n }\n\n this.loading = true;\n await this.authService.setKey(this.keyFormStub.key.value);\n this.loading = false;\n }\n\n async login(): Promise {\n try {\n const loginResult = await this.authService.login();\n if (loginResult) {\n this.router.navigate(['/home']);\n }\n } catch (HttpError) {\n this.errorDialogService.openDialog({\n message: HttpError.message,\n });\n }\n }\n\n switchWindows(): void {\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 \n CICADA\n \n \n \n \n Add Private Key\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 Login\n \n \n\n \n \n \n Change private key?\n Enter private key\n \n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 \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:21\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:38\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 {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} 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@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuard implements CanActivate {\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\n ): 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 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\nSharedModule\n\nSharedModule\n\nAuthModule -->\n\nSharedModule->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 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 { 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';\nimport { SharedModule } from '@app/shared/shared.module';\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 SharedModule,\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 trustedUsers\n \n \n Private\n trustedUsersList\n \n \n trustedUsersSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addTrustedUser\n \n \n getChallenge\n \n \n getPrivateKey\n \n \n getPrivateKeyInfo\n \n \n Async\n getPublicKeys\n \n \n getSessionToken\n \n \n getTrustedUsers\n \n \n getWithToken\n \n \n Async\n init\n \n \n Async\n login\n \n \n loginView\n \n \n logout\n \n \n sendSignedChallenge\n \n \n Async\n setKey\n \n \n setSessionToken\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:23\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 addTrustedUser\n \n \n \n \n \n \n \naddTrustedUser(user: Staff)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:172\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n user\n \n Staff\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 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 : Promise\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:202\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 getPrivateKeyInfo\n \n \n \n \n \n \n \ngetPrivateKeyInfo()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:206\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:190\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 getSessionToken\n \n \n \n \n \n \n \ngetSessionToken()\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 Returns : string\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:184\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 getWithToken\n \n \n \n \n \n \n \ngetWithToken()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:50\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 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:31\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 login\n \n \n \n \n \n \n \n \n login()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:93\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 loginView\n \n \n \n \n \n \n \nloginView()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:128\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:166\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 sendSignedChallenge\n \n \n \n \n \n \n \nsendSignedChallenge(hobaResponseEncoded: any)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:72\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:138\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n privateKeyArmored\n\n \n No\n \n\n\n \n \nPrivate key.\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 setSessionToken\n \n \n \n \n \n \n \nsetSessionToken(token)\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 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 : void\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:46\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:18\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 Default value : []\n \n \n \n \n Defined in src/app/_services/auth.service.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n trustedUsersList\n \n \n \n \n \n \n Type : BehaviorSubject>\n\n \n \n \n \n Default value : new BehaviorSubject>(\n this.trustedUsers\n )\n \n \n \n \n Defined in src/app/_services/auth.service.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n trustedUsersSubject\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.trustedUsersList.asObservable()\n \n \n \n \n Defined in src/app/_services/auth.service.ts:23\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 } from '@app/_pgp';\nimport { ErrorDialogService } from '@app/_services/error-dialog.service';\nimport { HttpClient } from '@angular/common/http';\nimport { HttpError, rejectBody } from '@app/_helpers/global-error-handler';\nimport { Staff } from '@app/_models';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { KeystoreService } from '@app/_services/keystore.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthService {\n mutableKeyStore: MutableKeyStore;\n trustedUsers: Array = [];\n private trustedUsersList: BehaviorSubject> = new BehaviorSubject>(\n this.trustedUsers\n );\n trustedUsersSubject: Observable> = this.trustedUsersList.asObservable();\n\n constructor(\n private httpClient: HttpClient,\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService\n ) {}\n\n async init(): Promise {\n this.mutableKeyStore = await KeystoreService.getKeystore();\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n }\n }\n\n getSessionToken(): string {\n return sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n }\n\n setSessionToken(token): void {\n sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), token);\n }\n\n setState(s): void {\n document.getElementById('state').innerHTML = s;\n }\n\n getWithToken(): Promise {\n const headers = {\n Authorization: 'Bearer ' + this.getSessionToken,\n 'Content-Type': 'application/json;charset=utf-8',\n 'x-cic-automerge': 'none',\n };\n const options = {\n headers,\n };\n return fetch(environment.cicMetaUrl, options).then((response) => {\n if (!response.ok) {\n this.loggingService.sendErrorLevelMessage('failed to get with auth token.', this, {\n error: '',\n });\n\n return false;\n }\n return true;\n });\n }\n\n // TODO rename to send signed challenge and set session. Also separate these responsibilities\n sendSignedChallenge(hobaResponseEncoded: any): Promise {\n const headers = {\n Authorization: 'HOBA ' + hobaResponseEncoded,\n 'Content-Type': 'application/json;charset=utf-8',\n 'x-cic-automerge': 'none',\n };\n const options = {\n headers,\n };\n return fetch(environment.cicMetaUrl, options);\n }\n\n getChallenge(): Promise {\n return fetch(environment.cicMetaUrl).then((response) => {\n if (response.status === 401) {\n const authHeader: string = response.headers.get('WWW-Authenticate');\n return hobaParseChallengeHeader(authHeader);\n }\n });\n }\n\n async login(): Promise {\n if (this.getSessionToken()) {\n sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n } else {\n const o = await this.getChallenge();\n\n const r = await signChallenge(\n o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore\n );\n\n const tokenResponse = await this.sendSignedChallenge(r).then((response) => {\n const token = response.headers.get('Token');\n if (token) {\n return token;\n }\n if (response.status === 401) {\n throw new HttpError('You are not authorized to use this system', response.status);\n }\n if (!response.ok) {\n throw new HttpError('Unknown error from authentication server', response.status);\n }\n });\n\n if (tokenResponse) {\n this.setSessionToken(tokenResponse);\n this.setState('Click button to log in');\n return true;\n }\n return false;\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 - Private key.\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(\n `Failed to set key: ${err.message || err.statusText}`,\n this,\n { error: err }\n );\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 localStorage.removeItem(btoa('CICADA_PRIVATE_KEY'));\n window.location.reload();\n }\n\n addTrustedUser(user: Staff): void {\n const savedIndex = this.trustedUsers.findIndex((staff) => staff.userid === user.userid);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.trustedUsers.splice(savedIndex, 1);\n }\n this.trustedUsers.unshift(user);\n this.trustedUsersList.next(this.trustedUsers);\n }\n\n getTrustedUsers(): void {\n this.mutableKeyStore.getPublicKeys().forEach((key) => {\n this.addTrustedUser(key.users[0].userId);\n });\n }\n\n async getPublicKeys(): Promise {\n return new Promise((resolve, reject) => {\n fetch(environment.publicKeysUrl).then((res) => {\n if (!res.ok) {\n // TODO does angular recommend an error interface?\n return reject(rejectBody(res));\n }\n return resolve(res.text());\n });\n });\n }\n\n getPrivateKey(): any {\n return this.mutableKeyStore.getPrivateKey();\n }\n\n getPrivateKeyInfo(): any {\n return this.getPrivateKey().users[0].userId;\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 Async\n blockSync\n \n \n fetcher\n \n \n Async\n init\n \n \n newEvent\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)\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:16\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 \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n blockSync\n \n \n \n \n \n \n \n \n blockSync(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:27\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 : Promise\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:109\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 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/block-sync.service.ts:23\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 newEvent\n \n \n \n \n \n \n \nnewEvent(tx: any, eventType: string)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:80\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 eventType\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 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: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 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:88\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:16\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:15\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 '@cicnet/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';\nimport { Web3Service } from '@app/_services/web3.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 ) {}\n\n async init(): Promise {\n await this.transactionService.init();\n }\n\n async blockSync(address: string = null, offset: number = 0, limit: number = 100): Promise {\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 = Web3Service.getInstance();\n settings.registry = await 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.newEvent(transaction, 'cic_transfer'));\n };\n settings.txHelper.onconversion = async (transaction: any): Promise => {\n window.dispatchEvent(this.newEvent(transaction, 'cic_convert'));\n };\n this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n }\n\n readyStateProcessor(\n settings: Settings,\n bit: number,\n address: string,\n offset: number,\n limit: number\n ): void {\n // tslint:disable-next-line:no-bitwise\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\n .getAllTransactions(offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService\n .getAddressTransactions(address, offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n }\n }\n }\n\n newEvent(tx: any, eventType: string): any {\n return new CustomEvent(eventType, {\n detail: {\n tx,\n },\n });\n }\n\n async scan(\n settings: Settings,\n lo: number,\n hi: number,\n bloomBlockBytes: Uint8Array,\n bloomBlocktxBytes: Uint8Array,\n bloomRounds: any\n ): 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: [bloomBlockBytes, bloomBlocktxBytes],\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(\n settings,\n transactionsInfo.low,\n transactionsInfo.high,\n bOne,\n bTwo,\n transactionsInfo.filter_rounds\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/Conversion.html":{"url":"interfaces/Conversion.html","title":"interface - Conversion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Conversion object interface \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 Properties\n \n \n \n \n \n destinationToken\n \n \n \n \n destinationToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Final transaction token information. \n\n \n \n \n \n \n \n \n \n \n fromValue\n \n \n \n \n fromValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Initial transaction token amount. \n\n \n \n \n \n \n \n \n \n \n sourceToken\n \n \n \n \n sourceToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Initial transaction token information. \n\n \n \n \n \n \n \n \n \n \n toValue\n \n \n \n \n toValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Final transaction token amount. \n\n \n \n \n \n \n \n \n \n \n trader\n \n \n \n \n trader: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the initiator of the conversion. \n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n Conversion mining information. \n\n \n \n \n \n \n \n \n \n \n user\n \n \n \n \n user: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the initiator of the conversion. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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 Async\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:20\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 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/accounts/create-account/create-account.component.ts:28\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 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:64\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:19\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:18\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:17\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:14\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:20\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:15\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:16\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:60\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';\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 async ngOnInit(): Promise {\n await this.userService.init();\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();\n this.userService.categoriesSubject.subscribe((res) => {\n this.categories = Object.keys(res);\n });\n this.locationService.getAreaNames();\n this.locationService.areaNamesSubject.subscribe((res) => {\n this.areaNames = Object.keys(res);\n });\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.userService\n .getGenders()\n .pipe(first())\n .subscribe((res) => (this.genders = res));\n }\n\n get createFormStub(): any {\n return this.createForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) {\n return;\n }\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 CREATE A USER ACCOUNT \n \n \n \n \n Account Type: \n \n \n {{ accountType | uppercase }}\n \n \n Account type is required. \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 Given Name(s):* \n \n Given Names are required. \n \n\n \n \n Family/Surname: \n \n Surname is required. \n \n\n \n \n Directory Entry: \n \n Directory Entry is required. \n \n\n \n \n Location: \n \n \n {{ area | uppercase }}\n \n \n Location is required. \n \n\n \n \n Gender: \n \n \n {{ gender | uppercase }}\n \n \n Gender is required. \n \n\n \n \n Referrer Phone Number: \n \n Referrer is required. \n \n\n \n \n Business Category: \n \n \n {{ category | titlecase }}\n \n \n Business Category is required.\n \n \n\n \n Submit\n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 \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:17\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 { ErrorStateMatcher } from '@angular/material/core';\nimport { FormControl, FormGroupDirective, NgForm } from '@angular/forms';\n\n/**\n * Custom provider that defines how form controls behave with regards to displaying error messages.\n *\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:11\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 constructor(@Inject(MAT_DIALOG_DATA) public data: any) {}\n}\n\n \n\n \n \n \n Message: {{ data.message }}\n Status: {{ data?.status }}\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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:13\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:11\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(public dialog: MatDialog) {}\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 Description\n \n \n Intercepts and handles errors from outgoing HTTP request. \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:21\n \n \n\n \n \n Initialization of the error interceptor.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \nA service that provides a dialog box for displaying errors to the user.\n\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 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:42\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 error caught from the request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpErrorResponse,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Third party imports\nimport { Observable, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\n// Application imports\nimport { ErrorDialogService, LoggingService } from '@app/_services';\n\n/** Intercepts and handles errors from outgoing HTTP request. */\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n /**\n * Initialization of the error interceptor.\n *\n * @param errorDialogService - A service that provides a dialog box for displaying errors to the user.\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 errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\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 error caught from the request.\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(\n err.error\n )}`;\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 Properties\n \n \n \n \n \n \n currentYear\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()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:10\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 Properties\n \n \n \n \n \n \n \n \n currentYear\n \n \n \n \n \n \n Default value : new Date().getFullYear()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:10\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 currentYear = new Date().getFullYear();\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n Copyleft \n 🄯.\n {{ currentYear }}\n 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 = ' Copyleft 🄯. {{ currentYear }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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:41\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:58\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:84\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:104\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:41\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 */\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(private loggingService: LoggingService, private router: Router) {\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 */\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: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\nexport function rejectBody(error): { status: any; statusText: any } {\n return {\n status: error.status,\n statusText: error.statusText,\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 Description\n \n \n Intercepts and handles setting of configurations to outgoing HTTP request. \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:10\n \n \n\n \n \n Initialization of http config interceptor. \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:21\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 forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/** Intercepts and handles setting of configurations to outgoing HTTP request. */\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n /** Initialization of http config interceptor. */\n constructor() {}\n\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 forwarded request.\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 */\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(private loggingService: LoggingService, private router: Router) {\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 */\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: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\nexport function rejectBody(error): { status: any; statusText: any } {\n return {\n status: error.status,\n statusText: error.statusText,\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/KeystoreService.html":{"url":"injectables/KeystoreService.html","title":"injectable - KeystoreService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n KeystoreService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/keystore.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Static\n mutableKeyStore\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n Async\n getKeystore\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/keystore.service.ts:8\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n Async\n getKeystore\n \n \n \n \n \n \n \n \n getKeystore()\n \n \n\n\n \n \n Defined in src/app/_services/keystore.service.ts:12\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 Private\n Static\n mutableKeyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_services/keystore.service.ts:8\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { MutableKeyStore, MutablePgpKeyStore } from '@app/_pgp';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class KeystoreService {\n private static mutableKeyStore: MutableKeyStore;\n\n constructor() {}\n\n public static async getKeystore(): Promise {\n return new Promise(async (resolve, reject) => {\n if (!KeystoreService.mutableKeyStore) {\n this.mutableKeyStore = new MutablePgpKeyStore();\n await this.mutableKeyStore.loadKeyring();\n return resolve(KeystoreService.mutableKeyStore);\n }\n return resolve(KeystoreService.mutableKeyStore);\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/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 Properties\n \n \n \n \n \n \n areaNames\n \n \n Private\n areaNamesList\n \n \n areaNamesSubject\n \n \n areaTypes\n \n \n Private\n areaTypesList\n \n \n areaTypesSubject\n \n \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: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 \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, areaNames: object)\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 location\n \n string\n \n\n \n No\n \n\n\n \n \n areaNames\n \n object\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 getAreaNames\n \n \n \n \n \n \n \ngetAreaNames()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:21\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 getAreaTypeByArea\n \n \n \n \n \n \n \ngetAreaTypeByArea(area: string, areaTypes: object)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.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 area\n \n string\n \n\n \n No\n \n\n\n \n \n areaTypes\n \n object\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 getAreaTypes\n \n \n \n \n \n \n \ngetAreaTypes()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:40\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 areaNames\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in src/app/_services/location.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n areaNamesList\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(this.areaNames)\n \n \n \n \n Defined in src/app/_services/location.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaNamesSubject\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.areaNamesList.asObservable()\n \n \n \n \n Defined in src/app/_services/location.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaTypes\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in src/app/_services/location.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n areaTypesList\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(this.areaTypes)\n \n \n \n \n Defined in src/app/_services/location.service.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaTypesSubject\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.areaTypesList.asObservable()\n \n \n \n \n Defined in src/app/_services/location.service.ts:17\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject, 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 areaNames: object = {};\n private areaNamesList: BehaviorSubject = new BehaviorSubject(this.areaNames);\n areaNamesSubject: Observable = this.areaNamesList.asObservable();\n\n areaTypes: object = {};\n private areaTypesList: BehaviorSubject = new BehaviorSubject(this.areaTypes);\n areaTypesSubject: Observable = this.areaTypesList.asObservable();\n\n constructor(private httpClient: HttpClient) {}\n\n getAreaNames(): void {\n this.httpClient\n .get(`${environment.cicMetaUrl}/areanames`)\n .pipe(first())\n .subscribe((res: object) => this.areaNamesList.next(res));\n }\n\n getAreaNameByLocation(location: string, areaNames: object): string {\n const keywords = location.toLowerCase().split(' ');\n for (const keyword of keywords) {\n const queriedAreaName: string = Object.keys(areaNames).find((key) =>\n areaNames[key].includes(keyword)\n );\n if (queriedAreaName) {\n return queriedAreaName;\n }\n }\n }\n\n getAreaTypes(): void {\n this.httpClient\n .get(`${environment.cicMetaUrl}/areatypes`)\n .pipe(first())\n .subscribe((res: object) => this.areaTypesList.next(res));\n }\n\n getAreaTypeByArea(area: string, areaTypes: object): string {\n const keywords = area.toLowerCase().split(' ');\n for (const keyword of keywords) {\n const queriedAreaType: string = Object.keys(areaTypes).find((key) =>\n areaTypes[key].includes(keyword)\n );\n if (queriedAreaType) {\n return queriedAreaType;\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"},"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 Description\n \n \n Intercepts and handles of events from outgoing HTTP request. \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:20\n \n \n\n \n \n Initialization of the logging interceptor.\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 \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:35\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 forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\nimport { finalize, tap } from 'rxjs/operators';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Intercepts and handles of events from outgoing HTTP request. */\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n /**\n * Initialization of the logging interceptor.\n *\n * @param loggingService - A service that provides logging capabilities.\n */\n constructor(private loggingService: LoggingService) {}\n\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 forwarded request.\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 Description\n \n \n Toggle availability of sidebar on menu item selection. \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:8\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:25\n \n \n\n\n \n \n Toggle the availability of the sidebar. \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/** Toggle availability of sidebar on menu item selection. */\n@Directive({\n selector: '[appMenuSelection]',\n})\nexport class MenuSelectionDirective {\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\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 /** Toggle the availability of the sidebar. */\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 Description\n \n \n Toggle availability of sidebar on menu toggle click. \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:8\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:22\n \n \n\n\n \n \n Toggle the availability of the sidebar. \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/** Toggle availability of sidebar on menu toggle click. */\n@Directive({\n selector: '[appMenuToggle]',\n})\nexport class MenuToggleDirective {\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.onMenuToggle();\n });\n }\n\n /** Toggle the availability of the sidebar. */\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 Description\n \n \n Meta object interface \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 Account details \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 Meta store id \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 Signature used during write. \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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 Description\n \n \n Meta response interface \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 Meta store id \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 Meta object \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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 \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:936\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 {\n HTTP_INTERCEPTORS,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} 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 } 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: object = {\n 'Mukuru Nairobi': [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n 'Kinango Kwale': [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n 'Misc Nairobi': [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n 'Kisauni Mombasa': [\n 'bamburi',\n 'mnyuchi',\n 'kisauni',\n 'kasauni',\n 'mworoni',\n 'nyali',\n 'falcon',\n 'shanzu',\n 'bombolulu',\n 'kandongo',\n 'kadongo',\n 'mshomoro',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'magongoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n 'mjinga',\n 'mlaleo',\n 'utange',\n ],\n 'Misc Mombasa': [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n Kilifi: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n Kakuma: ['kakuma'],\n Kitui: ['kitui', 'mwingi'],\n Nyanza: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n 'Misc Rural Counties': [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n other: ['other', 'none', 'unknown'],\n};\n\nconst areaTypes: object = {\n urban: ['urban', 'nairobi', 'mombasa', 'kisauni'],\n rural: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n periurban: ['kilifi', 'periurban'],\n other: ['other'],\n};\n\n/** A mock of the user's business categories */\nconst categories: object = {\n system: ['system', 'office main', 'office main phone'],\n education: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n faith: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n government: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n ],\n environment: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n farming: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n labour: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n food: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n water: ['maji', 'water'],\n health: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n savings: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n shop: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n transport: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n 'fuel/energy': [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n other: ['other', 'none', 'unknown', 'none'],\n};\n\n/** A mock of curated genders */\nconst genders: Array = ['male', 'female', 'other'];\n\n/** A mock of curated transaction types. */\nconst transactionTypes: Array = [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamations',\n];\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@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.endsWith('/areatypes') && method === 'GET':\n return getAreaTypes();\n case url.endsWith('/categories') && method === 'GET':\n return getCategories();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\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 return ok(areaNames);\n }\n\n function getAreaTypes(): Observable> {\n return ok(areaTypes);\n }\n\n function getCategories(): Observable> {\n return ok(categories);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\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/** Exports the MockBackendInterceptor as an Angular provider. */\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"},"components/NetworkStatusComponent.html":{"url":"components/NetworkStatusComponent.html","title":"component - NetworkStatusComponent","body":"\n \n\n\n\n\n\n Components\n NetworkStatusComponent\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/network-status/network-status.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-network-status\n \n\n \n styleUrls\n ./network-status.component.scss\n \n\n\n\n \n templateUrl\n ./network-status.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 noInternetConnection\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleNetworkChange\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(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in src/app/shared/network-status/network-status.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 cdr\n \n \n ChangeDetectorRef\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 handleNetworkChange\n \n \n \n \n \n \n \nhandleNetworkChange()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.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 ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:16\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 noInternetConnection\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : !navigator.onLine\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\n\n@Component({\n selector: 'app-network-status',\n templateUrl: './network-status.component.html',\n styleUrls: ['./network-status.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class NetworkStatusComponent implements OnInit {\n noInternetConnection: boolean = !navigator.onLine;\n\n constructor(private cdr: ChangeDetectorRef) {\n this.handleNetworkChange();\n }\n\n ngOnInit(): void {}\n\n handleNetworkChange(): void {\n setTimeout(() => {\n if (!navigator.onLine !== this.noInternetConnection) {\n this.noInternetConnection = !navigator.onLine;\n this.cdr.detectChanges();\n }\n this.handleNetworkChange();\n }, 5000);\n }\n}\n\n \n\n \n \n \n \n \n OFFLINE \n \n \n \n ONLINE \n \n \n \n\n\n \n\n \n \n ./network-status.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 = ' OFFLINE ONLINE '\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'NetworkStatusComponent'};\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/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: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 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:26\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(private formBuilder: FormBuilder) {}\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 {\n return this.organizationForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) {\n return;\n }\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 \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Description\n \n \n Provides functionality for signing and verifying signed messages. \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:74\n \n \n\n \n \n Initializing the Signer.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n keyStore\n \n \n MutableKeyStore\n \n \n \n No\n \n \n \n \nA keystore holding pgp keys.\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 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:60\n \n \n\n \n \n Encryption algorithm used \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:62\n \n \n\n \n \n Message digest \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:64\n \n \n\n \n \n Encryption engine used. \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:66\n \n \n\n \n \n A keystore holding pgp keys. \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:68\n \n \n\n \n \n A service that provides logging capabilities. \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:70\n \n \n\n \n \n Event triggered on successful signing of message. \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:72\n \n \n\n \n \n Event triggered on successful verification of a signature. \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:74\n \n \n\n \n \n Generated signature \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:90\n \n \n\n\n \n \n Get the private key fingerprint.\n\n\n \n \n \n Returns : string\n\n \n \n A private key fingerprint.\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:99\n \n \n\n\n \n \n Load the message digest.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \nA signable object.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If digest has been loaded successfully.\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:109\n \n \n\n\n \n \n Signs a message using a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message to be signed.\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:144\n \n \n\n\n \n \n Verify that signature is valid.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message that was signed.\n\n\n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \nThe generated signature.\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 * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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:11\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 : environment.dashboardUrl\n \n \n \n \n Defined in src/app/pages/pages.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { environment } from '@src/environments/environment';\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 = environment.dashboardUrl;\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 { 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@NgModule({\n declarations: [PagesComponent],\n imports: [\n CommonModule,\n PagesRoutingModule,\n SharedModule,\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 {\n path: 'tx',\n loadChildren: () =>\n \"import('@pages/transactions/transactions.module').then((m) => m.TransactionsModule)\",\n },\n {\n path: 'settings',\n loadChildren: () => \"import('@pages/settings/settings.module').then((m) => m.SettingsModule)\",\n },\n {\n path: 'accounts',\n loadChildren: () => \"import('@pages/accounts/accounts.module').then((m) => m.AccountsModule)\",\n },\n {\n path: 'tokens',\n loadChildren: () => \"import('@pages/tokens/tokens.module').then((m) => m.TokensModule)\",\n },\n {\n path: 'admin',\n loadChildren: () => \"import('@pages/admin/admin.module').then((m) => m.AdminModule)\",\n },\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 Description\n \n \n Toggle password form field input visibility \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:15\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:15\n \n \n \n \n The password form field icon id \n\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:11\n \n \n \n \n The password form field id \n\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:30\n \n \n\n\n \n \n Toggle the visibility of the password input field value and accompanying icon. \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/** Toggle password form field input visibility */\n@Directive({\n selector: '[appPasswordToggle]',\n})\nexport class PasswordToggleDirective {\n /** The password form field id */\n @Input()\n id: string;\n\n /** The password form field icon id */\n @Input()\n iconId: string;\n\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.togglePasswordVisibility();\n });\n }\n\n /** Toggle the visibility of the password input field value and accompanying icon. */\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 Static\n fileGetter\n \n \n Private\n Static\n registry\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n Async\n getRegistry\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:12\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n Async\n getRegistry\n \n \n \n \n \n \n \n \n getRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:16\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 Static\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:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n Static\n registry\n \n \n \n \n \n \n Type : CICRegistry\n\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 import { Injectable } from '@angular/core';\nimport { environment } from '@src/environments/environment';\nimport { CICRegistry, FileGetter } from '@cicnet/cic-client';\nimport { HttpGetter } from '@app/_helpers';\nimport { Web3Service } from '@app/_services/web3.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class RegistryService {\n static fileGetter: FileGetter = new HttpGetter();\n private static registry: CICRegistry;\n\n constructor() {}\n\n public static async getRegistry(): Promise {\n if (!RegistryService.registry) {\n RegistryService.registry = new CICRegistry(\n Web3Service.getInstance(),\n environment.registryAddress,\n 'Registry',\n RegistryService.fileGetter,\n ['../../assets/js/block-sync/data']\n );\n RegistryService.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n await RegistryService.registry.load();\n }\n return RegistryService.registry;\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 \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:21\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:38\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 {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} 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@Injectable({\n providedIn: 'root',\n})\nexport class RoleGuard implements CanActivate {\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\n ): 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 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 [appRouterLink]\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:9\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:13\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:10\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: '[appRouterLink]',\n})\n// tslint:disable-next-line:directive-class-suffix\nexport class RouterLinkDirectiveStub {\n // tslint:disable-next-line:no-input-rename\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:10\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 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 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 Description\n \n \n Settings class \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:13\n \n \n\n \n \n Initialize the settings.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n scanFilter\n \n \n any\n \n \n \n No\n \n \n \n \nA resource for searching through blocks on the blockchain network.\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 registry\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:4\n \n \n\n \n \n CIC Registry instance \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 A resource for searching through blocks on the blockchain network. \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 Transaction Helper instance \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:10\n \n \n\n \n \n Web3 Object \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n class Settings {\n /** CIC Registry instance */\n registry: any;\n /** A resource for searching through blocks on the blockchain network. */\n scanFilter: any;\n /** Transaction Helper instance */\n txHelper: any;\n /** Web3 Object */\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n\n /**\n * Initialize the settings.\n *\n * @param scanFilter - A resource for searching through blocks on the blockchain network.\n */\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n /** An active web3 instance connected to the blockchain network. */\n engine: any;\n /** The connection socket to the blockchain network. */\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\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 userInfo\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 Async\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:23\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: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 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: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 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:46\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/settings/settings.component.ts:27\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 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:22\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:23\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 \n userInfo\n \n \n \n \n \n \n Type : Staff\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:20\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 userInfo: Staff;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private authService: AuthService) {}\n\n async ngOnInit(): Promise {\n await this.authService.init();\n this.authService.trustedUsersSubject.subscribe((users) => {\n this.dataSource = new MatTableDataSource(users);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.trustedUsers = users;\n });\n this.userInfo = this.authService.getPrivateKeyInfo();\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 ACCOUNT MANAGEMENT \n \n CICADA Admin Credentials\n UserId: {{ userInfo?.userid }} \n Username: {{ userInfo?.name }} \n Email: {{ userInfo?.email }} \n \n \n \n \n LOGOUT ADMIN\n \n \n \n \n \n \n \n \n TRUSTED USERS\n \n EXPORT\n \n \n \n \n \n Filter \n \n search\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 ./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 ACCOUNT MANAGEMENT CICADA Admin Credentials UserId: {{ userInfo?.userid }} Username: {{ userInfo?.name }} Email: {{ userInfo?.email }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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@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_declarations\n\n\n\ncluster_SharedModule_exports\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\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->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\nUnixDatePipe\n\nUnixDatePipe\n\nSharedModule -->\n\nUnixDatePipe->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\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \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\nUnixDatePipe \n\nUnixDatePipe \n\nUnixDatePipe -->\n\nSharedModule->UnixDatePipe \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 NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n UnixDatePipe\n \n \n \n \n Exports\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n UnixDatePipe\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';\nimport { NetworkStatusComponent } from './network-status/network-status.component';\nimport { UnixDatePipe } from './_pipes/unix-date.pipe';\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe,\n NetworkStatusComponent,\n UnixDatePipe,\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe,\n NetworkStatusComponent,\n UnixDatePipe,\n ],\n imports: [CommonModule, RouterModule, MatIconModule, MatDialogModule],\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:12\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 constructor() {}\n\n ngOnInit(): void {}\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Description\n \n \n Signable object interface \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:11\n \n \n\n\n \n \n The message to be signed. \n\n\n \n Returns : string\n\n \n \n \n \n \n\n\n \n\n\n \n import * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Meta signature interface \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 Algorithm used \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 Data that was signed. \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 Message digest \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 Encryption engine used. \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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-1.html":{"url":"interfaces/Signature-1.html","title":"interface - Signature-1","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/_pgp/pgp-signer.ts\n \n\n \n Description\n \n \n Signature object interface \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 Encryption algorithm used \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 Data to be signed. \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 Message digest \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 Encryption engine used. \n\n \n \n \n \n \n \n\n\n \n import * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Signer interface \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:32\n \n \n\n\n \n \n Get the private key fingerprint.\n\n\n \n \n \n Returns : string\n\n \n \n A private key fingerprint.\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:34\n \n \n\n\n \n \n Event triggered on successful signing of message. \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:36\n \n \n\n\n \n \n Event triggered on successful verification of a signature. \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:42\n \n \n\n\n \n \n Load the message digest.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \nA signable object.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If digest has been loaded successfully.\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:48\n \n \n\n\n \n \n Signs a message using a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message to be signed.\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:54\n \n \n\n\n \n \n Verify that signature is valid.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message that was signed.\n\n\n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \nThe generated signature.\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 * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Staff object interface \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 Comment made on the public key. \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 Email used to create the public key. \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 Name of the owner of the public key \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 Tags added to the public key. \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 User ID of the owner of the public key. \n\n \n \n \n \n \n \n\n\n \n interface Staff {\n /** Comment made on the public key. */\n comment: string;\n /** Email used to create the public key. */\n email: string;\n /** Name of the owner of the public key */\n name: string;\n /** Tags added to the public key. */\n tag: number;\n /** User ID of the owner of the public key. */\n userid: string;\n}\n\n/** @exports */\nexport { Staff };\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 Description\n \n \n Token object interface \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 Optional\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 Address of the deployed token contract. \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 Number of decimals to convert to smallest denomination of the token. \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 Name of the token. \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 Address of account that deployed token. \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 Token reserve to token minting ratio. \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 Optional\n \n \n\n\n\n\n \n \n Token reserve information \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 Total token supply. \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 The unique token symbol. \n\n \n \n \n \n \n \n\n\n \n interface Token {\n /** Address of the deployed token contract. */\n address: string;\n /** Number of decimals to convert to smallest denomination of the token. */\n decimals: string;\n /** Name of the token. */\n name: string;\n /** Address of account that deployed token. */\n owner?: string;\n /** Token reserve to token minting ratio. */\n reserveRatio?: string;\n /** Token reserve information */\n reserves?: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n weight: string;\n balance: string;\n };\n };\n /** Total token supply. */\n supply: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Token };\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 \n Methods\n \n \n \n \n \n \n close\n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n token\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n closeWindow\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/tokens/token-details/token-details.component.ts:20\n \n \n\n \n \n\n\n \n Inputs\n \n \n \n \n \n token\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:18\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n closeWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:20\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n close\n \n \n \n \n \n \n \nclose()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/token-details/token-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 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:24\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 {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n OnInit,\n Output,\n} from '@angular/core';\nimport { Token } from '@app/_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 @Input() token: Token;\n\n @Output() closeWindow: EventEmitter = new EventEmitter();\n\n constructor() {}\n\n ngOnInit(): void {}\n\n close(): void {\n this.token = null;\n this.closeWindow.emit(this.token);\n }\n}\n\n \n\n \n \n \n \n \n TOKEN DETAILS\n \n CLOSE\n \n \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\n middle income societies.\n \n \n Supply: {{ token?.supply | tokenRatio }}\n \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 ./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 = ' TOKEN DETAILS CLOSE 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Default value\n \n \n \n \n value\n \n any\n \n\n \n No\n \n\n \n 0\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 \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 = 0, ...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';\nimport { Web3Service } from '@app/_services/web3.service';\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 = Web3Service.getInstance();\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 load\n \n \n registry\n \n \n tokenRegistry\n \n \n tokens\n \n \n Private\n tokensList\n \n \n tokensSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addToken\n \n \n Async\n getTokenBalance\n \n \n Async\n getTokenByAddress\n \n \n Async\n getTokenBySymbol\n \n \n Async\n getTokenName\n \n \n Async\n getTokens\n \n \n Async\n getTokenSymbol\n \n \n Async\n init\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/token.service.ts:19\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addToken\n \n \n \n \n \n \n \naddToken(token: Token)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.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 token\n \n Token\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 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:72\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 Async\n getTokenByAddress\n \n \n \n \n \n \n \n \n getTokenByAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.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 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 Async\n getTokenBySymbol\n \n \n \n \n \n \n \n \n getTokenBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:62\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 : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getTokenName\n \n \n \n \n \n \n \n \n getTokenName()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:77\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 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:43\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 getTokenSymbol\n \n \n \n \n \n \n \n \n getTokenSymbol()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:82\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 init\n \n \n \n \n \n \n \n \n init()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:23\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 load\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(false)\n \n \n \n \n Defined in src/app/_services/token.service.ts:19\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:12\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:13\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 \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 \n Private\n tokensList\n \n \n \n \n \n \n Type : BehaviorSubject>\n\n \n \n \n \n Default value : new BehaviorSubject>(\n this.tokens\n )\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 tokensSubject\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.tokensList.asObservable()\n \n \n \n \n Defined in src/app/_services/token.service.ts:18\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CICRegistry } from '@cicnet/cic-client';\nimport { TokenRegistry } from '@app/_eth';\nimport { RegistryService } from '@app/_services/registry.service';\nimport { Token } from '@app/_models';\nimport { BehaviorSubject, Observable, Subject } from 'rxjs';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TokenService {\n registry: CICRegistry;\n tokenRegistry: TokenRegistry;\n tokens: Array = [];\n private tokensList: BehaviorSubject> = new BehaviorSubject>(\n this.tokens\n );\n tokensSubject: Observable> = this.tokensList.asObservable();\n load: BehaviorSubject = new BehaviorSubject(false);\n\n constructor() {}\n\n async init(): Promise {\n this.registry = await RegistryService.getRegistry();\n this.tokenRegistry = new TokenRegistry(\n await this.registry.getContractAddressByName('TokenRegistry')\n );\n this.load.next(true);\n }\n\n addToken(token: Token): void {\n const savedIndex = this.tokens.findIndex((tk) => tk.address === token.address);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.tokens.splice(savedIndex, 1);\n }\n this.tokens.unshift(token);\n this.tokensList.next(this.tokens);\n }\n\n async getTokens(): Promise {\n const count: number = await this.tokenRegistry.totalTokens();\n for (let i = 0; i {\n const token: any = {};\n const tokenContract = await this.registry.addToken(address);\n token.address = address;\n token.name = await tokenContract.methods.name().call();\n token.symbol = await tokenContract.methods.symbol().call();\n token.supply = await tokenContract.methods.totalSupply().call();\n token.decimals = await tokenContract.methods.decimals().call();\n return token;\n }\n\n async getTokenBySymbol(symbol: string): Promise> {\n const tokenSubject: Subject = new Subject();\n await this.getTokens();\n this.tokensSubject.subscribe((tokens) => {\n const queriedToken = tokens.find((token) => token.symbol === symbol);\n tokenSubject.next(queriedToken);\n });\n return tokenSubject.asObservable();\n }\n\n async getTokenBalance(address: string): Promise Promise> {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.balanceOf(address).call();\n }\n\n async getTokenName(): Promise {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.name().call();\n }\n\n async getTokenSymbol(): Promise {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.symbol().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 token\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 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: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 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:54\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 viewToken\n \n \n \n \n \n \n \nviewToken(token)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:50\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 : 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 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:18\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:17\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:19\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:20\n \n \n\n\n \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/tokens.component.ts:22\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:21\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 { Token } from '@app/_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 token: Token;\n\n constructor(\n private tokenService: TokenService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\n async ngOnInit(): Promise {\n await this.tokenService.init();\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n await this.tokenService.getTokens();\n }\n });\n this.tokenService.tokensSubject.subscribe((tokens) => {\n this.loggingService.sendInfoLevelMessage(tokens);\n this.dataSource = new MatTableDataSource(tokens);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.tokens = tokens;\n });\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n viewToken(token): void {\n this.token = token;\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 \n EXPORT\n \n \n \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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_declarations\n\n\n\ncluster_TokensModule_imports\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@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:12\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 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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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"},"interfaces/Transaction.html":{"url":"interfaces/Transaction.html","title":"interface - Transaction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction object interface \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 Properties\n \n \n \n \n \n from\n \n \n \n \n from: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the transaction sender. \n\n \n \n \n \n \n \n \n \n \n recipient\n \n \n \n \n recipient: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the transaction recipient. \n\n \n \n \n \n \n \n \n \n \n sender\n \n \n \n \n sender: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the transaction sender. \n\n \n \n \n \n \n \n \n \n \n to\n \n \n \n \n to: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the transaction recipient. \n\n \n \n \n \n \n \n \n \n \n token\n \n \n \n \n token: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Transaction token information. \n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n Transaction mining information. \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 Type of transaction. \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n value: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Amount of tokens transacted. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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 tokenName\n \n \n tokenSymbol\n \n \n traderBloxbergLink\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n close\n \n \n copyAddress\n \n \n Async\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 Outputs\n \n \n \n \n \n \n closeWindow\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, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:30\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 tokenService\n \n \n TokenService\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:22\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n closeWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n close\n \n \n \n \n \n \n \nclose()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:86\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 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:80\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 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/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 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: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 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:63\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:59\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:67\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:27\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:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenName\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:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\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:30\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:28\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n OnInit,\n Output,\n} from '@angular/core';\nimport { Router } from '@angular/router';\nimport { TokenService, 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\n @Output() closeWindow: EventEmitter = new EventEmitter();\n\n senderBloxbergLink: string;\n recipientBloxbergLink: string;\n traderBloxbergLink: string;\n tokenName: string;\n tokenSymbol: string;\n\n constructor(\n private router: Router,\n private transactionService: TransactionService,\n private snackBar: MatSnackBar,\n private tokenService: TokenService\n ) {}\n\n async ngOnInit(): Promise {\n await this.transactionService.init();\n await this.tokenService.init();\n if (this.transaction?.type === 'conversion') {\n this.traderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n }\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n this.tokenName = await this.tokenService.getTokenName();\n }\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 close(): void {\n this.transaction = null;\n this.closeWindow.emit(this.transaction);\n }\n}\n\n \n\n \n \n \n \n \n TRANSACTION DETAILS\n \n CLOSE\n \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 \n Recipient: {{ transaction.recipient?.vcard.fn[0].value }}\n \n Recipient Address:\n {{ transaction.to }} \n \n \n View Recipient\n \n \n \n Amount: {{ transaction.value | tokenRatio }} {{ tokenSymbol | uppercase }}\n \n \n Token:\n \n \n \n Address:\n {{ transaction.token._address }}\n \n \n \n \n Name: {{ tokenName }}\n \n \n Symbol: {{ tokenSymbol | uppercase }}\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 | unixDate }}\n \n \n \n \n \n Resend SMS\n \n \n \n \n Reverse Transaction\n \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 \n View Trader\n \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 | uppercase }}\n \n \n Amount: {{ transaction.fromValue }}\n {{ transaction.sourceToken.symbol | uppercase }}\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 | uppercase }}\n \n \n Amount: {{ transaction.toValue }}\n {{ transaction.destinationToken.symbol | uppercase }}\n \n \n \n \n \n Resend SMS\n \n \n \n \n Reverse Transaction\n \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: {{ transaction.value | tokenRatio }} {{ tokenSymbol | uppercase }} Token: Address: {{ transaction.token._address }} Name: {{ tokenName }} Symbol: {{ tokenSymbol | uppercase }} Transaction: Block: {{ transaction.tx.block }} Index: {{ transaction.tx.txIndex }} Hash: {{ transaction.tx.txHash }} Success: {{ transaction.tx.success }} Timestamp: {{ transaction.tx.timestamp | unixDate }} 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 | uppercase }} Amount: {{ transaction.fromValue }} {{ transaction.sourceToken.symbol | uppercase }} Destination Token: Address: {{ transaction.destinationToken.address }} Name: {{ transaction.destinationToken.name }} Symbol: {{ transaction.destinationToken.symbol | uppercase }} Amount: {{ transaction.toValue }} {{ transaction.destinationToken.symbol | uppercase }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Async\n init\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)\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:33\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 \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: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 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, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:163\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 account\n \n string\n \n\n \n No\n \n\n \n \n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n \n 100\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:54\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:50\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 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/transaction.service.ts:44\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 resetTransactionsList\n \n \n \n \n \n \n \nresetTransactionsList()\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:158\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:110\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:58\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:170\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:33\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:29\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:28\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:30\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:31\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:32\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 '@cicnet/cic-client';\nimport { RegistryService } from '@app/_services/registry.service';\nimport Web3 from 'web3';\nimport { Web3Service } from '@app/_services/web3.service';\nimport { KeystoreService } from '@app/_services/keystore.service';\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 ) {\n this.web3 = Web3Service.getInstance();\n }\n\n async init(): Promise {\n await this.authService.init();\n await this.userService.init();\n this.registry = await RegistryService.getRegistry();\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/user/${address}/${offset}/${limit}`);\n }\n\n async setTransaction(transaction, cacheSize: number): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === transaction.tx.txHash)) {\n return;\n }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n if (transaction.from === environment.trustedDeclaratorAddress) {\n transaction.sender = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.from))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.sender = this.getAccountInfo(res, cacheSize);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${transaction.from} not found`,\n this,\n { error }\n );\n }\n );\n }\n if (transaction.to === environment.trustedDeclaratorAddress) {\n transaction.recipient = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.to))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.recipient = this.getAccountInfo(res, cacheSize);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${transaction.to} not found`,\n this,\n { error }\n );\n }\n );\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)) {\n return;\n }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n if (conversion.trader === environment.trustedDeclaratorAddress) {\n conversion.sender = conversion.recipient = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(conversion.trader))\n .pipe(first())\n .subscribe(\n (res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${conversion.trader} not found`,\n this,\n { error }\n );\n }\n );\n }\n } finally {\n this.addTransaction(conversion, cacheSize);\n }\n }\n\n addTransaction(transaction, cacheSize: number): void {\n const savedIndex = this.transactions.findIndex((tx) => tx.tx.txHash === transaction.tx.txHash);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.transactions.splice(savedIndex, 1);\n }\n this.transactions.unshift(transaction);\n if (this.transactions.length > cacheSize) {\n this.transactions.length = Math.min(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, cacheSize: number = 100): any {\n const accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n this.userService.addAccount(accountInfo, cacheSize);\n return accountInfo;\n }\n\n async transferRequest(\n tokenAddress: string,\n senderAddress: string,\n recipientAddress: string,\n value: number\n ): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName(\n 'TransferAuthorization'\n );\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(\n ['address', 'address', 'address', 'uint256'],\n [senderAddress, recipientAddress, tokenAddress, value]\n );\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 keystore = await KeystoreService.getKeystore();\n const privateKey = keystore.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 tokenSymbol\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 Async\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, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:34\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 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 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:70\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:92\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:74\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:87\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/transactions/transactions.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 \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:66\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:25\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: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/transactions/transactions.component.ts:33\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:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:31\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:28\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:23\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:24\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:27\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:29\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:30\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit,\n ChangeDetectionStrategy,\n Component,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { BlockSyncService, TokenService, 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 tokenSymbol: string;\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 private tokenService: TokenService\n ) {}\n\n async ngOnInit(): Promise {\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 await this.blockSyncService.init();\n await this.tokenService.init();\n await this.transactionService.init();\n await this.userService.init();\n await this.blockSyncService.blockSync();\n this.userService\n .getTransactionTypes()\n .pipe(first())\n .subscribe((res) => (this.transactionsTypes = res));\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n }\n });\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(\n (transaction) => transaction.type + 's' === this.transactionsType\n );\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 Transfers \n \n \n\n \n \n TRANSFER TYPE \n \n ALL TRANSFERS\n \n {{ transactionType | uppercase }}\n \n \n \n \n EXPORT\n \n \n\n \n Filter \n \n search\n \n\n \n \n Sender\n \n {{ transaction?.sender?.vcard.fn[0].value || transaction.from }}\n \n \n\n \n Recipient\n \n {{ transaction?.recipient?.vcard.fn[0].value || transaction.to }}\n \n \n\n \n Value\n \n {{ transaction?.value | tokenRatio }} {{ tokenSymbol | uppercase }}\n {{ transaction?.toValue | tokenRatio }} {{ tokenSymbol | uppercase }}\n \n \n\n \n Created\n \n {{ transaction?.tx.timestamp | unixDate }}\n \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 ./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 || transaction.from }} Recipient {{ transaction?.recipient?.vcard.fn[0].value || transaction.to }} Value {{ transaction?.value | tokenRatio }} {{ tokenSymbol | uppercase }} {{ transaction?.toValue | tokenRatio }} {{ tokenSymbol | uppercase }} Created {{ transaction?.tx.timestamp | unixDate }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_exports\n\n\n\ncluster_TransactionsModule_imports\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 { 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@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [TransactionDetailsComponent],\n imports: [\n CommonModule,\n TransactionsRoutingModule,\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"},"interfaces/Tx.html":{"url":"interfaces/Tx.html","title":"interface - Tx","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction data interface \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 Properties\n \n \n \n \n \n block\n \n \n \n \n block: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Transaction block number. \n\n \n \n \n \n \n \n \n \n \n success\n \n \n \n \n success: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Transaction mining status. \n\n \n \n \n \n \n \n \n \n \n timestamp\n \n \n \n \n timestamp: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Time transaction was mined. \n\n \n \n \n \n \n \n \n \n \n txHash\n \n \n \n \n txHash: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Hash generated by transaction. \n\n \n \n \n \n \n \n \n \n \n txIndex\n \n \n \n \n txIndex: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Index of transaction in block. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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/TxToken.html":{"url":"interfaces/TxToken.html","title":"interface - TxToken","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction token object interface \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 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 Address of the deployed token contract. \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 Name of the token. \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 The unique token symbol. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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/UnixDatePipe.html":{"url":"pipes/UnixDatePipe.html","title":"pipe - UnixDatePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n UnixDatePipe\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/unix-date.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n unixDate\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(timestamp: number, ...args: unknown[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/unix-date.pipe.ts:7\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n timestamp\n \n number\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 : 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({\n name: 'unixDate',\n})\nexport class UnixDatePipe implements PipeTransform {\n transform(timestamp: number, ...args: unknown[]): any {\n return new Date(timestamp * 1000).toLocaleDateString('en-GB');\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/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 {\n id: 6,\n user: 'Patience',\n role: 'enroller',\n action: 'Change user information',\n approval: false,\n },\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:72\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 {\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 id: 2,\n name: 'Jane Buck',\n phone: '+25412341234',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'vendor',\n created: '04/02/2020',\n balance: '56281',\n failedPinAttempts: 0,\n status: 'approved',\n bio: 'Groceries',\n gender: 'female',\n },\n {\n id: 3,\n name: 'Mc Donald',\n phone: '+25498765432',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'group',\n created: '11/16/2020',\n balance: '450',\n failedPinAttempts: 2,\n status: 'unapproved',\n bio: 'Food',\n gender: 'male',\n },\n {\n id: 4,\n name: 'Hera Cles',\n phone: '+25498769876',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '05/28/2020',\n balance: '5621',\n failedPinAttempts: 3,\n status: 'approved',\n bio: 'Shop',\n gender: 'female',\n },\n {\n id: 5,\n name: 'Silver Fia',\n phone: '+25462518374',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'token agent',\n created: '10/10/2020',\n balance: '817',\n failedPinAttempts: 0,\n status: 'unapproved',\n bio: 'Electronics',\n gender: 'male',\n },\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:134\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:124\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:103\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:87\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 {\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 id: 2,\n name: 'Jane Buck',\n phone: '+25412341234',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'vendor',\n created: '04/02/2020',\n balance: '56281',\n failedPinAttempts: 0,\n status: 'approved',\n bio: 'Groceries',\n gender: 'female',\n },\n {\n id: 3,\n name: 'Mc Donald',\n phone: '+25498765432',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'group',\n created: '11/16/2020',\n balance: '450',\n failedPinAttempts: 2,\n status: 'unapproved',\n bio: 'Food',\n gender: 'male',\n },\n {\n id: 4,\n name: 'Hera Cles',\n phone: '+25498769876',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '05/28/2020',\n balance: '5621',\n failedPinAttempts: 3,\n status: 'approved',\n bio: 'Shop',\n gender: 'female',\n },\n {\n id: 5,\n name: 'Silver Fia',\n phone: '+25462518374',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'token agent',\n created: '10/10/2020',\n balance: '817',\n failedPinAttempts: 0,\n status: 'unapproved',\n bio: 'Electronics',\n gender: 'male',\n },\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 {\n id: 6,\n user: 'Patience',\n role: 'enroller',\n action: 'Change user information',\n approval: false,\n },\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: ['environment', 'health', 'transport'],\n vcard:\n '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"},"interfaces/W3.html":{"url":"interfaces/W3.html","title":"interface - W3","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Web3 object interface \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 Properties\n \n \n \n \n \n engine\n \n \n \n \n engine: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n An active web3 instance connected to the blockchain network. \n\n \n \n \n \n \n \n \n \n \n provider\n \n \n \n \n provider: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n The connection socket to the blockchain network. \n\n \n \n \n \n \n \n\n\n \n class Settings {\n /** CIC Registry instance */\n registry: any;\n /** A resource for searching through blocks on the blockchain network. */\n scanFilter: any;\n /** Transaction Helper instance */\n txHelper: any;\n /** Web3 Object */\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n\n /**\n * Initialize the settings.\n *\n * @param scanFilter - A resource for searching through blocks on the blockchain network.\n */\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n /** An active web3 instance connected to the blockchain network. */\n engine: any;\n /** The connection socket to the blockchain network. */\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\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/Web3Service.html":{"url":"injectables/Web3Service.html","title":"injectable - Web3Service","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n Web3Service\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/web3.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Static\n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n getInstance\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/web3.service.ts:9\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n getInstance\n \n \n \n \n \n \n \n \n getInstance()\n \n \n\n\n \n \n Defined in src/app/_services/web3.service.ts:13\n \n \n\n\n \n \n\n \n Returns : Web3\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n Static\n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Defined in src/app/_services/web3.service.ts:9\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';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class Web3Service {\n private static web3: Web3;\n\n constructor() {}\n\n public static getInstance(): Web3 {\n if (!Web3Service.web3) {\n Web3Service.web3 = new Web3(environment.web3Provider);\n }\n return Web3Service.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"},"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/global-error-handler.ts\n \n function\n rejectBody\n \n 0 %\n (0/1)\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 0 %\n (0/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 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/_helpers/sync.ts\n \n function\n updateSyncable\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 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n AccountDetails\n \n 100 %\n (11/11)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Meta\n \n 100 %\n (4/4)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n MetaResponse\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Signature\n \n 100 %\n (5/5)\n \n \n \n \n \n src/app/_models/account.ts\n \n variable\n defaultAccount\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Action\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n class\n Settings\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n interface\n W3\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/staff.ts\n \n interface\n Staff\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/token.ts\n \n interface\n Token\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Conversion\n \n 100 %\n (8/8)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Transaction\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Tx\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n TxToken\n \n 100 %\n (4/4)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n class\n MutablePgpKeyStore\n \n 100 %\n (26/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n interface\n MutableKeyStore\n \n 100 %\n (26/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n variable\n keyring\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n class\n PGPSigner\n \n 100 %\n (14/14)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signable\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signature\n \n 100 %\n (5/5)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signer\n \n 100 %\n (7/7)\n \n \n \n \n \n src/app/_services/auth.service.ts\n \n injectable\n AuthService\n \n 0 %\n (0/22)\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/keystore.service.ts\n \n injectable\n KeystoreService\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/_services/location.service.ts\n \n injectable\n LocationService\n \n 0 %\n (0/12)\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/5)\n \n \n \n \n \n src/app/_services/token.service.ts\n \n injectable\n TokenService\n \n 0 %\n (0/16)\n \n \n \n \n \n src/app/_services/transaction.service.ts\n \n injectable\n TransactionService\n \n 0 %\n (0/17)\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/38)\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/_services/web3.service.ts\n \n injectable\n Web3Service\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/10)\n \n \n \n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n directive\n PasswordToggleDirective\n \n 100 %\n (5/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/47)\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/18)\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/13)\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/6)\n \n \n \n \n \n src/app/pages/tokens/tokens.component.ts\n \n component\n TokensComponent\n \n 0 %\n (0/12)\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/16)\n \n \n \n \n \n src/app/pages/transactions/transactions.component.ts\n \n component\n TransactionsComponent\n \n 0 %\n (0/19)\n \n \n \n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n directive\n MenuSelectionDirective\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n directive\n MenuToggleDirective\n \n 100 %\n (3/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/_pipes/unix-date.pipe.ts\n \n pipe\n UnixDatePipe\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/4)\n \n \n \n \n \n src/app/shared/network-status/network-status.component.ts\n \n component\n NetworkStatusComponent\n \n 0 %\n (0/5)\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 @angular/service-worker : ~10.2.0\n \n @cicnet/cic-client : ^0.1.6\n \n @cicnet/schemas-data-validator : *\n \n @popperjs/core : ^2.5.4\n \n bootstrap : ^4.5.3\n \n cic-client-meta : 0.0.7-alpha.6\n \n ethers : ^5.0.31\n \n http-server : ^0.12.3\n \n jquery : ^3.5.1\n \n ngx-logger : ^4.2.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 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 rejectBody   (src/.../global-error-handler.ts)\n \n \n updateSyncable   (src/.../sync.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 src/app/_helpers/global-error-handler.ts\n \n \n \n \n \n \n \n \n rejectBody\n \n \n \n \n \n \n \nrejectBody(error)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n error\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : literal type\n\n \n \n \n \n \n \n \n \n src/app/_helpers/sync.ts\n \n \n \n \n \n \n \n \n updateSyncable\n \n \n \n \n \n \n \nupdateSyncable(changes, changesDescription, syncable)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n\n \n No\n \n\n\n \n \n changesDescription\n\n \n No\n \n\n\n \n \n syncable\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 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 ng serve for a local server, npm run start:dev for a dev server and npm run start:prod for a prod server..\nNavigate 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\nRun ng build to build the project using local configurations.\nThe build artifacts will be stored in the dist/ directory.\nUse the npm run build:dev script for a development build and the npm run build:prod script for a production build.\nPWA\nThe app supports Progressive Web App capabilities.\nRun npm run start:pwa to run the project in PWA mode.\nPWA mode works using production configurations.\nRunning unit tests\nRun ng test 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\nDefault environment variables are located in the src/environments/ directory.\nCustom environment variables are contained in the .env file. See .env.example for a template.\nCustom environment variables are set via the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.dev.ts and production on environment.prod.ts.\nCode formatting\nThe system has automated code formatting using Prettier and TsLint.\nTo view the styling rules set, check out .prettierrc and tslint.json.\nRun npm run format:lint To perform formatting and linting of the codebase.\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\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nSharedModule->AuthModule\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\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \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\nUnixDatePipe \n\nUnixDatePipe \n\nUnixDatePipe -->\n\nSharedModule->UnixDatePipe \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\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\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->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\nUnixDatePipe\n\nUnixDatePipe\n\nSharedModule -->\n\nUnixDatePipe->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 22 Components\n \n \n \n \n \n \n \n 4 Directives\n \n \n \n \n \n \n \n 12 Injectables\n \n \n \n \n \n \n \n 3 Pipes\n \n \n \n \n \n \n \n 12 Classes\n \n \n \n \n \n \n \n 2 Guards\n \n \n \n \n \n \n \n 16 Interfaces\n \n \n \n \n \n \n \n \n 0 \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/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 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/AccountsIndex.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 : Web3Service.getInstance()\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 : Web3Service.getInstance()\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 : object\n\n \n \n \n \n Default value : {\n 'Mukuru Nairobi': [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n 'Kinango Kwale': [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n 'Misc Nairobi': [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n 'Kisauni Mombasa': [\n 'bamburi',\n 'mnyuchi',\n 'kisauni',\n 'kasauni',\n 'mworoni',\n 'nyali',\n 'falcon',\n 'shanzu',\n 'bombolulu',\n 'kandongo',\n 'kadongo',\n 'mshomoro',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'magongoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n 'mjinga',\n 'mlaleo',\n 'utange',\n ],\n 'Misc Mombasa': [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n Kilifi: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n Kakuma: ['kakuma'],\n Kitui: ['kitui', 'mwingi'],\n Nyanza: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n 'Misc Rural Counties': [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n other: ['other', 'none', 'unknown'],\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 : object\n\n \n \n \n \n Default value : {\n urban: ['urban', 'nairobi', 'mombasa', 'kisauni'],\n rural: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n periurban: ['kilifi', 'periurban'],\n other: ['other'],\n}\n \n \n\n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n system: ['system', 'office main', 'office main phone'],\n education: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n faith: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n government: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n ],\n environment: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n farming: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n labour: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n food: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n water: ['maji', 'water'],\n health: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n savings: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n shop: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n transport: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n 'fuel/energy': [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n other: ['other', 'none', 'unknown', 'none'],\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 transactionTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamations',\n]\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n}\n \n \n\n \n \n Default account data object \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-auth.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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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-auth.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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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-auth.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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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 An openpgp Keyring instance. \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/_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,0.973,1,2.085]],["body/interfaces/AccountDetails.html",[0,1.795,1,3.53,2,1.568,3,0.093,4,0.072,5,0.053,6,2.469,7,0.924,8,1.872,9,2.682,10,0.326,11,0.932,12,1.276,13,5.483,14,4.574,15,5.126,16,4.937,17,4.702,18,4.937,19,4.27,20,4.964,21,0.74,22,3.829,23,1.76,24,0.011,25,2.591,26,2.181,27,1.17,28,3.148,29,3.708,30,3.967,31,3.971,32,5.483,33,3.967,34,3.967,35,3.708,36,3.708,37,3.967,38,2.294,39,3.708,40,3.708,41,3.708,42,3.493,43,3.493,44,2.124,45,3.708,46,2.804,47,3.309,48,1.751,49,3.708,50,3.708,51,3.708,52,4.548,53,3.708,54,3.148,55,3.813,56,2.225,57,2.962,58,2.225,59,2.124,60,1.517,61,3.148,62,2.225,63,2.876,64,2.133,65,2.225,66,3.148,67,2.996,68,2.804,69,2.469,70,2.124,71,3.493,72,1.95,73,0.95,74,0.85,75,3.309,76,2.469,77,2.079,78,2.469,79,3.493,80,2.651,81,2.621,82,2.621,83,0.85,84,0.093,85,0.005,86,0.007,87,0.005]],["title/classes/AccountIndex.html",[88,0.081,89,3.119]],["body/classes/AccountIndex.html",[0,0.684,3,0.073,4,0.057,5,0.041,7,1.575,8,1.991,10,0.255,11,0.779,12,0.987,21,0.607,23,1.637,24,0.011,25,0.986,26,2.254,29,4.161,74,1.35,77,1.149,80,4.006,84,0.073,85,0.004,86,0.006,87,0.004,88,0.057,89,3.313,90,1.465,91,2.371,92,1.983,93,4.161,94,5.286,95,4.978,96,3.945,97,3.945,98,7.37,99,2.629,100,1.76,101,4.936,102,5.985,103,6.549,104,0.692,105,3.455,106,3.352,107,4.494,108,4.494,109,4.494,110,6.818,111,0.594,112,3.945,113,0.93,114,4.494,115,1.448,116,3.517,117,4.676,118,1.077,119,0.673,120,5.168,121,3.593,122,2.371,123,2.974,124,2.974,125,4.494,126,2.974,127,4.494,128,3.945,129,3.583,130,3.713,131,5.811,132,3.945,133,4.494,134,5.811,135,6.398,136,2.974,137,1.159,138,2.729,139,2.549,140,2.917,141,3.945,142,4.494,143,2.974,144,2.764,145,4.161,146,3.313,147,3.313,148,2.39,149,3.945,150,3.583,151,2.974,152,3.583,153,2.974,154,4.494,155,2.974,156,3.313,157,4.494,158,5.417,159,1.627,160,2.86,161,4.494,162,4.494,163,2.974,164,5.436,165,0.271,166,3.62,167,1.525,168,0.808,169,2.629,170,2.049,171,1.186,172,1.41,173,2.371,174,3.097,175,2.371,176,2.61,177,2.371,178,2.049,179,1.93,180,2.61,181,2.282,182,3.945,183,2.61,184,0.808,185,2.61,186,1.829,187,2.974,188,2.61,189,2.974,190,1.186,191,2.974,192,2.974,193,2.371,194,2.371,195,4.755,196,2.61,197,4.494,198,2.974,199,2.634,200,2.974,201,2.974,202,2.974,203,2.974,204,4.755,205,2.974,206,5.417,207,1.465,208,2.974,209,2.974,210,2.61]],["title/components/AccountSearchComponent.html",[211,0.594,212,1.324]],["body/components/AccountSearchComponent.html",[3,0.081,4,0.063,5,0.046,8,1.862,10,0.286,11,0.848,12,0.545,21,0.646,24,0.011,26,1.784,27,0.725,48,1.479,73,1.699,84,0.081,85,0.004,86,0.006,87,0.004,88,0.063,94,3.927,100,0.905,104,0.753,106,2.931,111,0.978,113,1.033,115,1.074,118,0.595,119,0.712,121,2.9,137,0.84,138,2.391,139,2.182,148,3.45,159,1.468,165,0.368,171,1.33,172,1.581,184,1.329,199,2.467,211,0.814,212,1.999,213,1.723,214,1.174,215,1.33,216,1.174,217,1.074,218,7.17,219,6.022,220,2.926,221,1.366,222,2.471,223,0.985,224,1.952,225,1.952,226,2.787,227,3.016,228,4.931,229,1.952,230,5.797,231,1.952,232,4.893,233,5.797,234,5.797,235,5.797,236,4.273,237,5.797,238,5.797,239,5.797,240,2.723,241,6.387,242,6.387,243,3.607,244,5.797,245,5.797,246,2.658,247,5.242,248,4.299,249,4.103,250,4.893,251,3.333,252,1.125,253,3.333,254,3.333,255,4.688,256,3.333,257,2.292,258,3.333,259,3.333,260,4.183,261,3.333,262,3.333,263,3.333,264,3.333,265,3.333,266,3.333,267,3.333,268,1.33,269,0.334,270,2.457,271,1.781,272,1.642,273,1.709,274,1.248,275,2.457,276,2.457,277,1.713,278,3.333,279,3.607,280,2.926,281,3.607,282,3.333,283,3.333,284,3.333,285,3.333,286,3.333,287,4.893,288,3.333,289,2.615,290,4.893,291,4.146,292,3.901,293,4.295,294,4.893,295,4.893,296,3.901,297,3.333,298,3.333,299,4.893,300,3.333,301,2.615,302,4.616,303,4.146,304,4.893,305,0.905,306,1.623,307,1.576,308,0.931,309,2.318,310,1.21,311,1.074,312,2.104,313,1.043,314,1.21,315,1.21,316,1.043,317,1.21,318,1.074,319,1.21,320,1.043,321,1.21,322,1.043,323,1.21,324,1.043,325,0.766,326,1.21,327,1.074,328,1.776,329,1.139,330,1.074,331,1.21,332,1.043,333,1.21,334,1.043,335,1.21,336,1.043,337,1.21,338,1.074,339,1.776,340,1.139,341,1.043,342,1.043,343,1.21,344,1.074,345,1.776,346,1.139,347,1.074,348,0.81,349,1.043,350,1.074,351,1.043,352,1.043,353,1.21,354,1.043,355,1.21,356,1.043,357,1.21,358,1.106,359,1.174,360,1.21]],["title/components/AccountsComponent.html",[211,0.594,313,1.324]],["body/components/AccountsComponent.html",[1,1.509,3,0.075,4,0.058,5,0.042,8,1.509,10,0.262,11,0.796,12,0.901,14,3.768,19,3.421,21,0.689,23,1.429,24,0.011,26,1.711,27,0.666,48,1.499,73,1.64,84,0.135,85,0.004,86,0.006,87,0.004,88,0.058,94,4.899,100,0.832,104,0.707,106,2.273,111,0.918,113,1.049,115,0.986,118,0.984,119,0.854,137,0.998,138,1.72,160,3.245,165,0.389,171,1.221,172,1.452,184,0.832,199,1.775,211,0.774,212,0.958,213,1.617,214,1.078,215,1.221,216,1.078,217,0.986,221,1.283,222,2.35,223,0.905,224,1.833,225,1.833,226,2.764,227,2.988,228,3.768,229,1.833,231,1.833,240,2.612,248,4.033,249,3.992,252,1.761,257,0.931,268,1.221,269,0.306,272,1.509,273,1.57,274,1.146,275,2.257,276,2.257,277,1.629,289,2.455,291,1.988,293,2.688,301,2.455,302,3.977,305,0.832,306,1.524,307,1.48,308,0.855,309,2.224,310,1.111,311,0.986,312,2.001,313,1.917,314,1.111,315,1.111,316,0.958,317,1.111,318,0.986,319,1.111,320,0.958,321,1.111,322,0.958,323,1.111,324,0.958,325,0.704,326,1.111,327,0.986,328,1.667,329,1.046,330,0.986,331,1.111,332,0.958,333,1.111,334,0.958,335,1.111,336,0.958,337,1.111,338,0.986,339,1.667,340,1.046,341,0.958,342,0.958,343,1.111,344,0.986,345,1.667,346,1.046,347,0.986,348,0.744,349,0.958,350,0.986,351,0.958,352,0.958,353,1.111,354,0.958,355,1.111,356,0.958,357,1.111,358,1.016,359,1.078,360,1.111,361,2.688,362,5.514,363,4.594,364,5.514,365,3.8,366,3.8,367,4.84,368,4.396,369,4.84,370,3.8,371,3.8,372,5.234,373,3.166,374,4.222,375,6.127,376,6.127,377,4.594,378,2.688,379,4.182,380,4.594,381,3.166,382,3.062,383,3.062,384,3.062,385,3.062,386,3.062,387,4.594,388,3.062,389,3.062,390,3.062,391,3.062,392,3.8,393,3.062,394,4.516,395,3.062,396,4.885,397,3.062,398,3.663,399,4.033,400,3.062,401,3.8,402,2.982,403,3.166,404,3.062,405,3.8,406,3.166,407,3.062,408,2.11,409,1.57,410,1.636,411,1.636,412,1.883,413,1.791,414,1.636,415,1.636,416,4.594,417,2.257,418,3.062,419,4.064,420,3.166,421,2.257,422,2.11,423,4.594,424,2.11,425,2.441,426,1.883,427,1.988,428,2.688,429,2.257,430,1.72,431,2.441,432,2.441,433,2.257,434,2.11,435,3.062,436,4.594,437,4.594,438,3.062,439,3.062,440,3.062,441,3.062,442,4.033,443,4.516,444,3.166,445,4.594,446,4.594,447,4.594,448,3.387,449,4.594,450,2.982,451,4.594]],["title/modules/AccountsModule.html",[452,1.117,453,3.119]],["body/modules/AccountsModule.html",[3,0.117,4,0.091,5,0.066,8,1.1,24,0.011,83,1.07,84,0.117,85,0.006,86,0.008,87,0.006,88,0.091,165,0.443,168,1.71,212,2.494,219,3.528,269,0.479,271,2.558,305,1.3,311,2.568,313,2.494,322,2.494,409,2.454,410,2.558,411,2.558,452,1.264,453,6.448,454,1.737,455,2.358,456,3.76,457,2.454,458,2.558,459,4.201,460,4.201,461,4.201,462,5.493,463,3.927,464,5.493,465,3.364,466,2.558,467,2.27,468,4.786,469,2.595,470,3.683,471,2.672,472,4.786,473,2.8,474,4.201,475,2.8,476,4.201,477,3.816,478,3.298,479,4.201,480,3.528,481,4.201,482,4.087,483,4.338,484,4.641,485,3.528,486,4.338,487,3.871,488,2.943,489,4.087,490,3.107,491,2.8,492,3.871,493,2.943,494,3.871,495,2.943,496,4.087,497,3.107,498,4.338,499,3.298,500,4.786,501,6.296,502,4.786,503,4.338,504,3.107,505,6.296,506,4.786,507,4.786,508,5.019,509,4.201,510,5.526,511,3.816,512,3.298]],["title/modules/AccountsRoutingModule.html",[452,1.117,462,2.916]],["body/modules/AccountsRoutingModule.html",[3,0.145,4,0.113,5,0.082,24,0.011,67,2.614,74,1.324,83,1.324,84,0.145,85,0.007,86,0.009,87,0.007,88,0.113,115,1.908,165,0.421,168,1.609,211,1.134,212,2.255,219,4.367,228,3.643,269,0.593,274,2.218,311,2.321,313,2.255,322,2.255,454,2.15,462,4.966,469,2.97,474,5.2,476,6.325,477,4.723,478,4.083,479,5.2,480,4.367,481,5.2,509,5.2,513,5.925,514,3.466,515,3.683,516,4.024,517,4.844,518,4.083,519,4.083,520,3.846,521,3.643]],["title/interfaces/Action.html",[0,0.973,522,2.602]],["body/interfaces/Action.html",[0,1.637,2,2.395,3,0.142,4,0.111,5,0.08,7,1.412,10,0.498,11,1.234,21,0.706,23,1.726,24,0.011,25,2.662,26,2.15,64,1.985,67,3.698,83,1.299,84,0.142,85,0.007,86,0.009,87,0.007,257,2.341,430,2.666,522,5.456,523,5.1,524,5.776,525,5.441,526,7.121,527,7.121,528,4.623,529,3.976,530,7.121]],["title/classes/ActivatedRouteStub.html",[88,0.081,531,3.374]],["body/classes/ActivatedRouteStub.html",[3,0.128,4,0.1,5,0.073,7,1.276,10,0.45,11,1.159,12,1.093,21,0.573,24,0.011,48,1.777,73,1.67,84,0.128,85,0.006,86,0.008,87,0.006,88,0.1,90,2.588,104,1.029,111,1.05,113,0.988,118,1.193,119,0.745,122,5.33,137,0.761,165,0.335,184,1.997,252,1.537,274,1.966,277,2.173,531,5.33,532,7.018,533,4.677,534,2.933,535,6.686,536,5.869,537,6.686,538,8.693,539,3.792,540,5.422,541,7.742,542,5.869,543,5.33,544,4.529,545,7.355,546,5.864,547,6.686,548,8.406,549,6.686,550,5.253,551,6.686,552,5.253,553,5.33,554,7.742,555,6.686,556,5.253,557,4.607,558,6.686,559,5.253,560,2.401,561,4.611,562,4.611,563,5.869,564,5.253,565,5.253,566,5.253,567,5.253]],["title/components/AdminComponent.html",[211,0.594,316,1.324]],["body/components/AdminComponent.html",[3,0.076,4,0.059,5,0.043,8,1.072,10,0.268,11,0.808,12,1.135,21,0.67,23,1.323,24,0.011,25,1.546,27,0.679,48,1.014,65,2.727,73,0.78,77,1.206,84,0.136,85,0.004,86,0.006,87,0.004,88,0.059,100,0.848,104,0.718,111,0.624,113,1.03,115,1.006,118,1.239,119,0.892,137,1.042,159,1.282,160,2.73,165,0.378,184,0.848,207,1.539,211,0.783,212,0.977,213,1.641,214,1.099,215,1.246,216,1.099,217,1.006,221,1.302,222,2.378,223,0.923,224,1.86,225,1.86,226,2.77,227,2.995,228,2.867,229,1.86,231,1.86,240,2.637,248,4.062,252,1.819,257,1.696,268,1.246,269,0.313,272,1.539,273,1.601,277,0.923,301,2.492,305,0.848,306,1.546,307,1.502,308,0.872,309,2.246,310,1.133,311,1.006,312,2.025,313,0.977,314,1.133,315,1.133,316,1.936,317,1.133,318,1.006,319,1.133,320,0.977,321,1.133,322,0.977,323,1.133,324,0.977,325,0.718,326,1.133,327,1.006,328,1.692,329,1.067,330,1.006,331,1.133,332,0.977,333,1.133,334,0.977,335,1.133,336,0.977,337,1.133,338,1.006,339,1.692,340,1.067,341,0.977,342,0.977,343,1.133,344,1.006,345,1.692,346,1.067,347,1.006,348,0.759,349,0.977,350,1.006,351,0.977,352,0.977,353,1.133,354,0.977,355,1.133,356,0.977,357,1.133,358,1.036,359,1.099,360,1.133,366,3.845,368,4.448,370,3.845,371,3.845,373,3.213,374,4.264,378,2.741,381,3.213,392,3.845,401,3.845,402,3.027,403,3.213,405,3.845,406,3.213,408,2.152,409,1.601,410,1.669,411,1.669,412,1.92,413,1.827,414,1.669,415,1.669,417,2.302,419,2.302,420,2.152,421,2.302,422,2.152,424,3.213,426,2.867,427,3.027,430,2.769,433,2.302,434,2.152,444,3.213,522,5.041,524,3.213,525,4.508,529,3.455,568,2.741,569,5.579,570,4.662,571,4.671,572,4.662,573,3.717,574,4.662,575,4.662,576,3.175,577,4.662,578,4.662,579,3.123,580,4.662,581,3.123,582,4.662,583,3.123,584,3.123,585,3.123,586,4.662,587,3.123,588,3.123,589,3.123,590,3.123,591,3.123,592,3.123,593,6.187,594,6.944,595,3.123,596,3.123,597,3.123,598,2.027,599,4.897,600,3.123,601,3.123,602,2.741,603,3.123,604,3.123,605,3.123,606,4.662,607,3.123,608,3.123,609,4.092,610,3.123,611,3.123,612,2.741,613,3.123,614,3.123,615,3.123,616,3.123,617,3.123,618,3.123,619,3.123,620,1.246,621,5.579,622,3.123,623,3.123,624,3.123,625,2.741,626,2.741,627,3.123,628,3.123,629,4.662,630,3.123,631,3.123,632,4.662,633,3.123,634,6.187,635,6.187,636,6.187,637,6.187,638,4.662,639,2.603,640,4.662,641,2.741,642,2.302,643,3.123]],["title/modules/AdminModule.html",[452,1.117,644,3.119]],["body/modules/AdminModule.html",[3,0.134,4,0.105,5,0.076,24,0.011,83,1.23,84,0.134,85,0.007,86,0.008,87,0.007,88,0.105,165,0.439,168,1.869,269,0.551,305,1.494,316,2.588,409,2.82,410,2.94,411,2.94,452,1.453,454,1.996,455,2.71,456,4.015,457,2.82,458,2.94,463,4.074,465,3.679,466,2.94,467,2.609,469,2.837,470,4.027,471,3.071,473,3.218,475,3.218,482,4.468,483,4.744,486,4.744,487,4.233,488,3.382,489,4.468,490,3.571,491,3.218,492,4.233,493,3.382,494,4.233,495,3.382,496,4.468,497,3.571,503,4.744,504,3.571,644,6.351,645,4.828,646,4.828,647,4.828,648,5.699,649,5.501,650,5.501,651,4.828]],["title/modules/AdminRoutingModule.html",[452,1.117,648,2.916]],["body/modules/AdminRoutingModule.html",[3,0.157,4,0.123,5,0.089,24,0.011,74,1.443,83,1.443,84,0.157,85,0.008,86,0.009,87,0.008,88,0.123,165,0.403,168,1.753,211,0.906,269,0.646,274,2.416,316,2.373,454,2.342,469,3.126,514,3.775,515,3.82,516,4.235,517,3.775,521,3.969,648,5.227,651,5.665,652,6.454]],["title/components/AppComponent.html",[211,0.594,318,1.363]],["body/components/AppComponent.html",[3,0.086,4,0.067,5,0.048,8,1.167,10,0.301,11,0.88,12,0.83,21,0.512,23,0.701,24,0.011,25,1.164,27,0.763,48,1.104,54,2.971,60,1.399,73,1.269,74,1.618,84,0.086,85,0.004,86,0.006,87,0.004,88,0.067,94,2.157,100,0.953,104,0.782,106,2.862,111,1.015,113,0.952,115,1.13,118,0.906,119,0.774,137,0.735,138,2.449,147,2.586,165,0.299,184,0.953,186,3.123,199,3.057,211,0.838,212,1.098,213,1.788,214,1.235,215,1.399,216,1.235,217,1.13,221,1.418,222,2.789,223,1.037,224,2.026,225,2.026,226,2.8,227,3.032,229,2.026,231,2.026,240,2.789,248,4.367,252,1.167,268,1.399,269,0.351,273,1.798,277,2.259,289,2.714,305,0.953,306,1.685,307,1.636,308,0.98,309,2.375,310,1.273,311,1.13,312,2.167,313,1.098,314,1.273,315,1.273,316,1.098,317,1.273,318,2.108,319,1.273,320,1.098,321,1.273,322,1.098,323,1.273,324,1.098,325,1.504,326,1.273,327,1.13,328,1.843,329,1.199,330,1.13,331,1.273,332,1.098,333,1.273,334,1.098,335,1.273,336,1.098,337,1.273,338,1.13,339,1.843,340,1.199,341,1.098,342,1.098,343,1.273,344,1.13,345,1.843,346,1.199,347,1.13,348,1.234,349,1.098,350,1.13,351,1.098,352,1.098,353,1.273,354,1.098,355,1.273,356,1.098,357,1.273,358,1.164,359,1.235,360,1.273,379,4.367,576,3.294,642,3.744,653,3.079,654,2.409,655,5.969,656,5.079,657,5.24,658,5.969,659,5.079,660,4.458,661,5.079,662,5.079,663,2.797,664,4.699,665,5.503,666,4.847,667,4.591,668,7.466,669,5.079,670,5.079,671,4.024,672,3.508,673,6.543,674,3.508,675,3.508,676,3.508,677,3.508,678,5.079,679,3.508,680,2.277,681,5.079,682,4.458,683,4.458,684,4.114,685,3.508,686,3.079,687,2.797,688,2.277,689,3.508,690,3.508,691,3.508,692,3.508,693,3.508,694,3.508,695,3.508,696,3.508,697,4.4,698,2.418,699,3.508,700,3.508,701,3.508,702,4.049,703,2.797,704,3.079,705,2.277,706,3.508,707,3.508,708,3.079,709,3.508,710,2.277,711,2.797,712,3.508,713,3.508,714,3.508,715,3.079,716,3.508,717,2.052,718,3.508,719,3.079,720,3.875,721,3.508,722,3.508,723,3.508,724,3.079,725,3.508,726,2.157,727,4.114,728,2.797,729,2.418,730,2.797,731,2.797,732,2.797,733,3.079,734,3.079,735,3.508,736,4.458,737,3.079,738,4.458,739,3.079,740,3.508,741,3.508,742,3.508,743,3.508,744,5.079,745,3.508,746,3.508,747,3.508,748,1.875,749,3.508]],["title/modules/AppModule.html",[452,1.117,750,3.119]],["body/modules/AppModule.html",[3,0.116,4,0.091,5,0.066,24,0.011,83,1.066,84,0.116,85,0.006,86,0.008,87,0.006,88,0.091,139,2.399,148,2.104,165,0.433,168,1.705,171,1.902,172,2.261,269,0.477,272,2.349,305,1.295,318,2.749,409,2.444,452,1.259,454,1.73,455,2.349,456,3.752,457,3.599,458,3.752,463,3.923,465,3.356,466,2.548,467,2.261,469,2.588,473,2.789,475,2.789,482,4.076,687,3.801,688,3.095,750,6.462,751,4.185,752,4.185,753,4.185,754,4.185,755,4.185,756,5.487,757,5.487,758,5.27,759,5.487,760,5.487,761,4.767,762,6.279,763,5.006,764,2.662,765,5.006,766,4.767,767,4.767,768,6.279,769,4.767,770,5.949,771,6.279,772,2.662,773,4.629,774,4.327,775,4.185,776,4.767,777,3.801,778,3.801,779,4.767,780,5.006,781,3.801,782,4.767,783,4.767,784,4.767,785,4.767,786,4.185,787,4.767,788,4.767,789,4.767,790,4.767,791,4.767,792,4.767,793,4.767,794,4.767,795,5.501,796,5.949,797,5.598]],["title/modules/AppRoutingModule.html",[452,1.117,756,2.916]],["body/modules/AppRoutingModule.html",[3,0.148,4,0.116,5,0.084,24,0.011,74,1.358,83,1.358,84,0.148,85,0.007,86,0.009,87,0.007,88,0.116,139,2.075,165,0.393,168,1.649,269,0.608,274,2.274,454,2.205,469,3.015,514,3.553,515,3.723,516,4.085,517,4.592,518,4.186,519,4.186,520,3.943,756,5.041,774,5.041,775,5.332,798,6.074,799,7.315,800,4.477,801,6.421,802,6.074,803,6.074,804,6.074,805,6.074,806,4.843,807,6.074,808,6.074,809,6.074]],["title/components/AuthComponent.html",[211,0.594,320,1.324]],["body/components/AuthComponent.html",[3,0.086,4,0.067,5,0.049,8,1.175,10,0.303,11,0.886,12,0.835,21,0.622,23,0.707,24,0.011,27,0.769,48,1.304,60,1.412,73,1.499,74,1.469,84,0.086,85,0.004,86,0.006,87,0.004,88,0.067,100,0.961,104,0.787,106,2.993,111,1.022,113,1.024,115,1.14,118,0.912,119,0.777,137,1.009,138,2.459,139,1.746,148,3.074,159,1.175,165,0.363,184,1.388,199,1.974,211,0.842,212,1.107,213,1.799,214,1.246,215,1.412,216,1.246,217,1.14,221,1.427,222,2.557,223,1.046,224,2.039,225,2.039,226,2.802,227,3.035,229,2.039,231,2.039,236,4.422,240,2.801,243,3.767,247,5.518,249,4.18,252,1.669,255,4.134,257,1.998,260,4.285,268,1.412,269,0.354,270,2.609,271,1.891,272,1.744,273,1.814,274,1.325,277,2.439,279,2.609,281,2.609,303,3.318,305,0.961,306,1.695,307,1.932,308,0.988,309,2.385,310,1.284,311,1.14,312,2.177,313,1.107,314,1.284,315,1.284,316,1.107,317,1.284,318,1.14,319,1.284,320,2.056,321,1.284,322,1.107,323,1.284,324,1.107,325,0.813,326,1.284,327,1.14,328,1.855,329,1.209,330,1.14,331,1.284,332,1.107,333,1.284,334,1.107,335,1.284,336,1.107,337,1.284,338,1.14,339,1.855,340,1.209,341,1.107,342,1.107,343,1.284,344,1.14,345,1.855,346,1.209,347,1.14,348,0.86,349,1.107,350,1.14,351,1.107,352,1.107,353,1.284,354,1.107,355,1.284,356,1.107,357,1.284,358,1.174,359,1.246,360,1.284,543,5.238,599,4.486,663,2.822,664,4.713,666,4.859,684,3.522,697,2.609,702,2.822,703,2.822,727,3.522,800,3.767,810,3.106,811,5.999,812,5.111,813,5.999,814,5.266,815,4.783,816,6.373,817,5.238,818,6.57,819,5.111,820,5.999,821,5.111,822,3.539,823,3.539,824,3.539,825,3.539,826,5.111,827,3.539,828,3.539,829,3.539,830,3.539,831,3.539,832,3.539,833,3.106,834,3.106,835,3.539,836,3.884,837,3.539,838,3.539,839,3.539,840,2.822,841,3.539,842,5.111,843,3.539,844,5.111,845,3.539,846,3.539,847,2.297,848,3.539,849,3.539,850,3.539,851,3.539,852,3.539,853,3.539,854,3.539,855,3.539,856,3.143,857,5.111,858,2.609,859,3.318,860,5.111]],["title/guards/AuthGuard.html",[774,2.916,861,2.602]],["body/guards/AuthGuard.html",[3,0.115,4,0.09,5,0.065,7,1.694,10,0.403,12,1.016,21,0.533,24,0.011,25,2.063,31,3.638,38,2.651,57,2.95,84,0.115,85,0.006,86,0.008,87,0.006,88,0.133,92,2.744,104,0.957,111,0.939,113,0.793,118,1.109,119,0.693,137,1.075,138,2.328,139,2.382,144,3.825,145,4.286,146,4.585,148,2.073,152,4.959,159,1.43,165,0.349,168,1.276,181,2.454,190,2.481,211,0.873,217,2.003,221,1.312,249,4.723,257,1.891,269,0.47,274,1.759,277,2.193,430,2.328,515,2.95,533,4.732,539,3.307,560,2.148,598,5.331,620,1.874,654,2.229,774,4.286,800,5.47,806,6.153,836,3.519,861,4.563,862,3.747,863,4.125,864,4.959,865,5.459,866,4.959,867,5.459,868,3.747,869,4.699,870,5.459,871,5.113,872,4.286,873,3.638,874,4.286,875,3.189,876,4.125,877,6.961,878,6.513,879,4.699,880,5.459,881,6.22,882,4.585,883,4.959,884,3.825,885,5.459,886,4.959,887,6.513,888,4.563,889,5.459,890,5.459,891,6.12,892,4.959,893,6.22,894,1.737,895,2.89,896,2.89,897,2.315,898,3.747,899,4.125]],["title/modules/AuthModule.html",[452,1.117,900,3.119]],["body/modules/AuthModule.html",[3,0.135,4,0.106,5,0.077,24,0.011,83,1.239,84,0.135,85,0.007,86,0.008,87,0.007,88,0.106,165,0.436,168,1.878,269,0.555,271,2.962,305,1.505,320,2.593,356,2.593,452,1.464,454,2.012,455,2.731,456,4.029,457,2.841,458,2.962,463,4.082,465,3.696,466,2.962,467,2.629,469,2.851,470,4.046,471,3.095,473,3.242,475,3.242,487,4.253,488,3.408,492,4.253,493,3.408,494,4.253,495,3.408,498,4.766,499,3.82,503,4.766,504,3.598,508,5.514,900,6.425,901,4.865,902,4.865,903,4.865,904,5.709,905,5.543,906,5.543,907,4.865,908,5.543,909,4.865]],["title/modules/AuthRoutingModule.html",[452,1.117,904,2.916]],["body/modules/AuthRoutingModule.html",[3,0.155,4,0.121,5,0.088,24,0.011,74,1.417,83,1.417,84,0.155,85,0.008,86,0.009,87,0.008,88,0.121,165,0.4,168,1.722,211,0.89,269,0.635,274,2.373,320,2.349,454,2.301,469,3.094,514,3.709,515,3.792,516,4.191,517,4.391,518,4.369,519,4.369,520,4.116,521,3.899,904,5.172,907,5.566,910,6.341]],["title/injectables/AuthService.html",[664,2.747,894,1.182]],["body/injectables/AuthService.html",[0,0.658,3,0.07,4,0.054,5,0.04,7,0.695,10,0.245,11,0.756,12,1.098,21,0.632,23,1.058,24,0.011,25,0.949,27,1.46,48,1.15,59,1.597,60,1.141,73,1.321,74,1.756,77,1.686,84,0.07,85,0.004,86,0.005,87,0.004,88,0.054,104,0.672,106,3.2,111,0.872,113,1.061,118,1.198,119,0.749,137,1.17,138,2.972,139,1.808,148,2.334,159,1.882,160,1.925,165,0.383,171,1.141,172,1.357,181,1.007,184,1.731,186,3.253,199,2.782,207,1.409,252,1.784,269,0.286,277,2.181,325,1.465,415,1.529,467,1.357,528,1.857,539,2.509,540,2.109,557,3.646,560,1.308,576,2.963,639,3.305,641,3.83,654,1.357,664,2.833,666,4.535,697,2.109,702,2.281,703,2.281,717,1.673,719,2.511,724,2.511,729,3.007,781,2.281,800,2.109,816,5.195,833,2.511,834,2.511,836,3.416,847,1.857,856,1.759,858,3.9,867,2.511,894,1.219,897,1.409,898,2.281,911,1.409,912,2.511,913,4.13,914,4.644,915,5.29,916,5.29,917,4.364,918,5.919,919,5.919,920,5.919,921,5.919,922,5.919,923,5.919,924,5.919,925,4.719,926,5.919,927,5.195,928,4.364,929,4.364,930,4.364,931,4.364,932,2.109,933,4.364,934,4.364,935,2.861,936,2.861,937,2.861,938,2.861,939,2.861,940,2.861,941,2.861,942,2.861,943,2.861,944,2.861,945,2.861,946,2.861,947,4.364,948,2.861,949,4.364,950,4.364,951,2.861,952,5.29,953,4.364,954,2.861,955,4.364,956,2.861,957,3.479,958,2.861,959,2.861,960,4.698,961,3.83,962,2.861,963,4.364,964,2.861,965,2.861,966,4.364,967,2.861,968,2.861,969,1.597,970,2.281,971,2.861,972,1.971,973,2.511,974,3.83,975,2.511,976,2.861,977,2.861,978,2.861,979,2.861,980,4.719,981,3.83,982,2.511,983,4.364,984,4.364,985,3.83,986,4.364,987,2.683,988,4.364,989,4.644,990,4.364,991,2.861,992,4.364,993,2.511,994,2.861,995,2.861,996,2.861,997,2.511,998,2.511,999,2.861,1000,2.861,1001,5.919,1002,3.83,1003,2.861,1004,2.861,1005,2.861,1006,2.861,1007,4.364,1008,2.861,1009,2.861,1010,2.511,1011,2.861,1012,2.861,1013,2.861,1014,4.364,1015,2.861,1016,2.861,1017,4.719,1018,2.861,1019,2.511,1020,2.861,1021,1.971,1022,2.861,1023,4.364,1024,4.364,1025,2.861,1026,2.861,1027,1.971,1028,2.861,1029,2.861,1030,4.364,1031,2.861,1032,4.364,1033,2.511,1034,2.861,1035,2.861,1036,4.364,1037,2.861,1038,2.861,1039,1.597,1040,2.861,1041,2.861,1042,3.83,1043,2.109,1044,3.479,1045,4.364,1046,4.364,1047,2.861,1048,2.861,1049,4.218,1050,2.861,1051,2.861,1052,2.511,1053,2.861,1054,2.861,1055,2.861,1056,2.861,1057,2.861,1058,2.861,1059,2.281,1060,2.861,1061,2.861,1062,2.109,1063,2.861,1064,2.861,1065,2.861,1066,2.861,1067,2.861]],["title/injectables/BlockSyncService.html",[665,3.119,894,1.182]],["body/injectables/BlockSyncService.html",[3,0.086,4,0.067,5,0.049,10,0.303,11,0.886,12,1.187,21,0.657,23,1.605,24,0.011,26,2.419,48,1.304,72,2.62,73,1.499,74,1.713,77,2.538,84,0.086,85,0.004,86,0.006,87,0.004,88,0.067,100,1.388,104,0.787,106,3.159,111,0.707,113,0.978,118,1.295,119,0.809,121,3.095,137,1.009,138,2.718,159,0.813,165,0.384,169,2.07,170,2.439,171,1.412,172,1.678,179,2.297,184,2.033,199,1.367,252,1.51,269,0.354,289,2.731,291,3.318,348,1.242,413,2.07,414,1.891,415,1.891,426,3.143,427,3.318,544,2.07,620,1.412,654,1.678,665,3.767,667,4.465,688,3.318,894,1.427,897,1.744,911,1.744,1068,6.854,1069,3.106,1070,5.999,1071,5.999,1072,5.111,1073,5.111,1074,5.111,1075,5.999,1076,5.999,1077,3.106,1078,5.111,1079,5.111,1080,6.11,1081,5.756,1082,3.539,1083,3.894,1084,5.111,1085,4.715,1086,5.999,1087,3.539,1088,5.111,1089,5.999,1090,3.539,1091,2.854,1092,3.539,1093,6.57,1094,3.539,1095,3.539,1096,6.57,1097,6.57,1098,6.57,1099,7.664,1100,6.57,1101,6.57,1102,3.539,1103,3.509,1104,3.539,1105,3.539,1106,2.439,1107,2.07,1108,3.539,1109,2.297,1110,2.822,1111,3.539,1112,3.539,1113,3.539,1114,5.999,1115,3.539,1116,3.539,1117,5.111,1118,2.609,1119,3.539,1120,3.539,1121,3.539,1122,5.111,1123,3.539,1124,3.539,1125,3.539,1126,3.539,1127,3.539,1128,3.106,1129,3.106,1130,3.539,1131,5.111,1132,5.111,1133,3.539,1134,5.111,1135,3.539,1136,3.539,1137,5.111,1138,3.539,1139,5.111,1140,5.111,1141,2.822,1142,5.111,1143,3.106,1144,3.539,1145,3.106,1146,3.106,1147,3.539,1148,3.539,1149,3.539,1150,3.539,1151,3.539,1152,3.539,1153,3.539,1154,5.111,1155,3.539,1156,3.539,1157,4.486,1158,5.111,1159,3.539,1160,3.539,1161,3.539,1162,5.111,1163,3.539,1164,3.539,1165,3.539,1166,3.539,1167,3.539,1168,3.539,1169,3.539]],["title/interfaces/Conversion.html",[0,0.973,748,2.261]],["body/interfaces/Conversion.html",[0,1.885,1,3.833,2,1.812,3,0.107,4,0.084,5,0.061,7,1.068,8,1.66,9,1.646,10,0.51,11,1.031,21,0.703,23,1.657,24,0.011,25,2.396,26,2.336,27,1.854,38,3.593,48,0.956,64,2.468,80,2.166,83,0.983,84,0.107,85,0.005,86,0.007,87,0.005,117,2.703,119,0.663,121,3.316,165,0.22,257,1.337,348,2.14,430,1.646,748,4.47,856,4.146,888,2.703,1091,4.671,1170,3.029,1171,5.325,1172,5.325,1173,5.325,1174,4.978,1175,4.978,1176,5.323,1177,5.325,1178,5.325,1179,5.201,1180,5.325,1181,5.325,1182,3.241,1183,4.376,1184,4.146,1185,2.455,1186,3.241,1187,3.029,1188,3.241,1189,2.854,1190,2.854,1191,2.455,1192,3.241,1193,3.241,1194,3.029,1195,3.179]],["title/components/CreateAccountComponent.html",[211,0.594,322,1.324]],["body/components/CreateAccountComponent.html",[3,0.078,4,0.061,5,0.044,8,1.849,10,0.275,11,0.825,12,0.525,15,4.837,17,4.467,19,3.742,21,0.682,24,0.011,25,1.58,26,2.165,27,0.699,28,3.671,44,2.66,48,1.036,67,2.769,73,1.19,84,0.078,85,0.004,86,0.006,87,0.004,88,0.061,94,2.929,100,0.873,104,0.733,111,0.952,113,1.003,115,2.564,118,0.573,119,0.7,137,0.69,139,1.098,148,2.504,159,1.095,160,3.292,165,0.335,184,1.294,211,0.797,212,1.006,213,1.677,214,1.132,215,1.282,216,1.132,217,1.035,221,1.33,222,2.419,223,0.95,224,1.9,225,1.9,226,2.777,227,3.004,229,1.9,231,1.9,236,4.184,240,2.675,243,3.512,246,2.563,247,5.174,248,4.249,252,1.442,255,3.911,257,1.448,260,4.121,268,1.282,269,0.322,270,2.37,271,1.718,272,1.584,273,1.648,277,1.677,279,2.37,280,2.822,281,5.715,291,3.092,301,2.546,302,4.556,303,5.461,305,0.873,306,1.58,307,1.534,308,0.898,309,2.278,310,1.167,311,1.035,312,2.06,313,1.006,314,1.167,315,1.167,316,1.006,317,1.167,318,1.035,319,1.167,320,1.006,321,1.167,322,1.964,323,1.167,324,1.006,325,0.739,326,1.167,327,1.035,328,1.729,329,1.098,330,1.035,331,1.167,332,1.006,333,1.167,334,1.006,335,1.167,336,1.006,337,1.167,338,1.035,339,1.729,340,1.098,341,1.006,342,1.006,343,1.167,344,1.035,345,1.729,346,1.098,347,1.035,348,0.781,349,1.006,350,1.035,351,1.006,352,1.006,353,1.167,354,1.006,355,1.167,356,1.006,357,1.167,358,1.066,359,1.132,360,1.167,365,3.911,413,1.88,414,1.718,424,3.283,425,2.563,426,2.929,427,3.092,428,2.822,442,4.982,443,5.174,480,5.868,815,4.525,817,5.004,840,3.798,1196,6.988,1197,2.822,1198,5.675,1199,4.764,1200,3.911,1201,4.184,1202,5.675,1203,4.184,1204,5.675,1205,5.355,1206,4.764,1207,3.215,1208,3.215,1209,3.215,1210,3.215,1211,3.215,1212,3.215,1213,3.215,1214,3.215,1215,3.215,1216,3.215,1217,3.215,1218,3.215,1219,3.215,1220,5.675,1221,3.215,1222,6.701,1223,3.215,1224,3.215,1225,3.215,1226,3.215,1227,4.764,1228,3.215,1229,3.215,1230,3.215,1231,2.822,1232,3.215,1233,3.215,1234,3.215,1235,3.215,1236,4.074,1237,4.764,1238,3.512,1239,4.764,1240,5.509,1241,5.509,1242,4.764,1243,4.182]],["title/classes/CustomErrorStateMatcher.html",[88,0.081,260,2.602]],["body/classes/CustomErrorStateMatcher.html",[3,0.125,4,0.098,5,0.071,7,1.602,10,0.44,12,0.84,21,0.44,24,0.011,48,1.434,74,1.149,84,0.125,85,0.006,86,0.008,87,0.006,88,0.098,90,2.533,104,1.015,113,0.656,118,0.917,119,0.573,137,0.955,139,2.253,144,4.055,145,4.544,159,1.182,165,0.33,181,2.322,216,2.322,221,1.842,255,4.544,257,2.214,260,4.055,271,2.747,307,2.124,325,1.868,430,2.469,504,3.337,598,4.281,1033,6.742,1083,5.275,1244,5.788,1245,4.512,1246,4.281,1247,4.544,1248,5.788,1249,6.324,1250,6.594,1251,6.594,1252,6.594,1253,6.594,1254,4.544,1255,7.281,1256,6.594,1257,6.594,1258,7.68,1259,7.68,1260,7.68,1261,5.14,1262,4.723,1263,5.6,1264,6.588,1265,6.594,1266,5.788,1267,5.788,1268,6.594,1269,6.594,1270,6.594,1271,5.14,1272,5.14,1273,5.14,1274,5.14]],["title/classes/CustomValidator.html",[88,0.081,1275,3.374]],["body/classes/CustomValidator.html",[3,0.116,4,0.09,5,0.065,7,1.7,10,0.406,12,1.022,21,0.536,23,1.399,24,0.011,48,1.359,64,2.136,74,1.565,84,0.116,85,0.006,86,0.008,87,0.006,88,0.09,90,2.333,92,2.759,99,3.657,104,1.146,113,0.798,118,1.115,119,0.697,137,1.014,139,1.618,144,4.577,150,4.985,159,1.779,165,0.237,181,2.464,252,1.437,257,1.44,271,2.531,325,1.779,491,4.812,836,2.246,1039,4.438,1044,5.934,1083,4.832,1236,4.059,1246,4.059,1248,5.488,1249,6.064,1262,4.577,1264,6.169,1266,6.976,1275,4.985,1276,4.157,1277,5.488,1278,4.308,1279,5.859,1280,6.252,1281,6.252,1282,6.252,1283,7.738,1284,4.736,1285,7.443,1286,6.064,1287,6.252,1288,7.948,1289,5.488,1290,6.252,1291,6.999,1292,7.948,1293,4.736,1294,7.443,1295,7.443,1296,6.252,1297,7.443,1298,5.488,1299,4.736,1300,6.252,1301,4.736,1302,4.736,1303,4.736,1304,4.736,1305,4.736]],["title/components/ErrorDialogComponent.html",[211,0.594,324,1.324]],["body/components/ErrorDialogComponent.html",[3,0.117,4,0.091,5,0.066,8,1.447,9,2.798,10,0.41,11,1.091,12,0.782,21,0.539,24,0.011,27,1.041,60,2.511,84,0.117,85,0.006,86,0.008,87,0.006,88,0.091,100,1.3,105,3.104,111,0.957,113,0.803,115,1.542,118,0.854,119,0.833,165,0.315,211,0.988,212,1.498,213,2.216,214,1.685,215,1.909,216,1.685,217,1.542,223,1.414,224,2.511,225,2.511,226,2.868,227,3.118,229,2.511,231,2.511,268,1.909,269,0.479,305,1.3,306,2.088,307,2.028,308,1.337,309,2.713,310,1.737,311,1.542,312,2.553,313,1.498,314,1.737,315,1.737,316,1.498,317,1.737,318,1.542,319,1.737,320,1.498,321,1.737,322,1.498,323,1.737,324,2.339,325,1.895,326,1.737,327,1.542,328,2.285,329,1.635,330,1.542,331,1.737,332,1.498,333,1.737,334,1.498,335,1.737,336,1.498,337,1.737,338,1.542,339,2.285,340,1.635,341,1.498,342,1.498,343,1.737,344,1.542,345,2.285,346,1.635,347,1.542,348,1.163,349,1.498,350,1.542,351,1.498,352,1.498,353,1.737,354,1.498,355,1.737,356,1.498,357,1.737,358,1.588,359,1.685,360,1.737,402,3.107,430,2.357,1306,6.175,1307,5.186,1308,4.201,1309,5.526,1310,7.035,1311,6.296,1312,4.786,1313,4.786,1314,4.786,1315,4.786,1316,4.786,1317,4.786,1318,3.816,1319,4.786,1320,6.296,1321,6.296]],["title/injectables/ErrorDialogService.html",[666,2.747,894,1.182]],["body/injectables/ErrorDialogService.html",[3,0.138,4,0.107,5,0.078,9,2.617,10,0.483,11,1.211,12,1.142,21,0.651,24,0.011,48,1.226,73,1.408,74,1.26,84,0.138,85,0.007,86,0.009,87,0.007,88,0.107,104,1.076,105,3.603,111,1.127,113,1.013,118,1.247,119,0.779,137,0.816,139,1.926,148,3.504,159,1.296,165,0.38,257,2.125,269,0.564,324,1.764,642,4.156,654,2.674,666,4.538,894,1.952,897,2.778,911,2.778,1307,4.156,1309,6.972,1318,4.495,1322,7.167,1323,4.949,1324,7.597,1325,6.99,1326,5.638,1327,8.165,1328,6.99,1329,6.99,1330,5.638,1331,5.638,1332,6.99,1333,4.949,1334,4.949,1335,5.638,1336,7.597,1337,5.638,1338,5.638,1339,5.638,1340,5.638]],["title/interceptors/ErrorInterceptor.html",[757,2.916,1341,2.475]],["body/interceptors/ErrorInterceptor.html",[3,0.108,4,0.085,5,0.061,7,1.646,10,0.38,12,1.185,21,0.513,23,0.887,24,0.011,25,1.472,60,1.771,70,3.343,84,0.108,85,0.005,86,0.007,87,0.005,88,0.085,92,3.2,100,1.206,104,0.922,111,0.887,113,0.764,118,1.068,119,0.668,137,0.867,159,1.557,165,0.391,167,2.276,168,1.626,181,2.553,190,2.893,221,1.24,249,4.528,269,0.444,273,2.276,274,1.662,277,1.312,325,1.864,414,2.372,539,3.44,544,4.564,560,2.03,576,3.519,620,1.771,717,3.503,757,4.126,772,2.479,871,4.126,872,4.126,873,3.503,874,4.126,875,3.718,894,1.672,895,2.73,896,2.73,932,3.272,1002,3.897,1042,3.897,1107,2.597,1286,4.414,1298,5.256,1341,3.503,1342,3.272,1343,3.897,1344,5.346,1345,3.887,1346,5.751,1347,4.744,1348,6.122,1349,4.414,1350,4.439,1351,4.126,1352,3.503,1353,4.414,1354,5.346,1355,5.346,1356,4.439,1357,4.414,1358,4.414,1359,4.998,1360,4.414,1361,5.988,1362,4.774,1363,3.272,1364,4.414,1365,3.897,1366,4.439,1367,4.439,1368,4.439,1369,6.775,1370,5.988,1371,3.272,1372,4.439,1373,4.439,1374,5.988,1375,3.059,1376,4.439,1377,4.439,1378,5.256,1379,4.439,1380,3.887,1381,3.897,1382,4.439,1383,4.439,1384,4.439,1385,5.988,1386,4.439,1387,4.439,1388,3.897,1389,4.774,1390,4.439,1391,4.439,1392,5.988,1393,4.439,1394,4.439,1395,4.439,1396,3.539,1397,3.897,1398,4.439,1399,4.439]],["title/components/FooterComponent.html",[211,0.594,327,1.363]],["body/components/FooterComponent.html",[3,0.118,4,0.092,5,0.067,8,1.458,10,0.415,11,1.1,24,0.011,27,1.053,48,1.053,73,1.21,84,0.118,85,0.006,86,0.008,87,0.006,88,0.092,100,1.315,104,0.977,111,1.415,113,0.903,115,1.56,119,0.789,137,0.702,165,0.242,184,1.723,211,0.993,212,1.516,213,2.234,214,1.705,215,1.932,216,1.705,217,1.56,221,1.772,222,3.016,223,1.431,224,2.531,225,2.531,226,2.87,227,3.12,229,2.531,231,2.531,240,3.201,252,1.458,268,1.932,269,0.485,305,1.315,306,2.105,307,2.044,308,1.353,309,2.725,310,1.758,311,1.56,312,2.568,313,1.516,314,1.758,315,1.758,316,1.516,317,1.758,318,1.56,319,1.758,320,1.516,321,1.758,322,1.516,323,1.758,324,1.516,325,1.113,326,1.758,327,2.419,328,2.303,329,1.655,330,1.56,331,1.758,332,1.516,333,1.758,334,1.516,335,1.758,336,1.516,337,1.758,338,1.56,339,2.303,340,1.655,341,1.516,342,1.516,343,1.758,344,1.56,345,2.303,346,1.655,347,1.56,348,1.177,349,1.516,350,1.56,351,1.516,352,1.516,353,1.758,354,1.516,355,1.758,356,1.516,357,1.758,358,1.607,359,1.705,360,1.758,1400,4.252,1401,4.677,1402,7.076,1403,6.345,1404,7.795,1405,6.345,1406,4.844,1407,6.345,1408,5.57,1409,5.57,1410,5.57]],["title/components/FooterStubComponent.html",[211,0.594,329,1.446]],["body/components/FooterStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.52,24,0.011,27,1.122,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.402,115,1.663,119,0.813,165,0.258,211,1.116,212,1.615,213,2.328,214,2.568,216,1.818,217,1.663,223,1.526,226,2.887,227,3.143,269,0.517,305,1.402,306,2.193,307,2.13,308,1.442,309,2.792,310,1.874,311,1.663,312,2.648,313,1.615,314,1.874,315,1.874,316,1.615,317,1.874,318,1.663,319,1.874,320,1.615,321,1.874,322,1.615,323,1.874,324,1.615,325,1.187,326,1.874,327,1.663,328,2.4,329,2.628,330,1.663,331,1.874,332,1.615,333,1.874,334,1.615,335,1.874,336,1.615,337,1.874,338,1.663,339,2.4,340,2.259,341,1.615,342,1.615,343,1.874,344,1.663,345,2.4,346,2.259,347,1.663,348,1.254,349,1.615,350,1.663,351,1.615,352,1.615,353,1.874,354,1.615,355,1.874,356,1.615,357,1.874,358,1.712,359,1.818,360,1.874,452,1.363,534,2.883,726,3.175,1401,4.874,1411,3.806,1412,3.806]],["title/injectables/GlobalErrorHandler.html",[758,2.747,894,1.182]],["body/injectables/GlobalErrorHandler.html",[3,0.083,4,0.065,5,0.047,7,1.797,10,0.292,11,0.861,12,1.054,21,0.69,23,1.516,24,0.011,26,1.388,48,0.74,60,2.341,69,3.226,70,1.902,73,0.851,74,1.442,84,0.143,85,0.004,86,0.006,87,0.004,88,0.112,92,3.161,101,2.211,104,0.765,105,1.503,111,0.681,113,0.875,118,1.151,119,0.719,137,0.934,139,2.205,144,3.056,148,1.503,159,1.142,160,2.847,165,0.323,167,1.746,168,0.925,181,2.605,184,0.925,190,2.574,249,4.234,252,1.483,257,1.962,269,0.341,274,1.275,277,2.186,325,2.044,430,2.839,533,4.191,576,3.264,620,1.358,711,2.715,717,2.907,758,3.226,765,5.144,772,1.902,847,3.81,871,3.425,872,3.425,873,2.907,874,3.425,875,3.308,894,1.388,911,1.678,932,2.51,969,1.902,1017,2.715,1043,4.756,1236,3.226,1286,5.282,1345,3.226,1347,2.907,1351,3.425,1352,2.907,1362,3.963,1371,4.326,1380,3.81,1413,5.282,1414,2.51,1415,4.363,1416,4.363,1417,4.363,1418,4.363,1419,6.023,1420,5.152,1421,4.97,1422,6.657,1423,4.97,1424,4.97,1425,4.363,1426,4.363,1427,3.406,1428,3.963,1429,3.664,1430,5.664,1431,5.144,1432,5.664,1433,5.144,1434,4.363,1435,3.406,1436,5.664,1437,5.152,1438,4.363,1439,4.363,1440,5.152,1441,4.363,1442,3.406,1443,3.963,1444,4.363,1445,3.963,1446,4.363,1447,3.963,1448,4.363,1449,4.363,1450,2.989,1451,2.989,1452,2.347,1453,2.989,1454,2.989,1455,2.989,1456,2.989,1457,2.989,1458,2.989,1459,4.363,1460,2.989,1461,4.363,1462,2.715,1463,2.989,1464,2.989,1465,2.989,1466,2.989,1467,2.989,1468,2.989,1469,2.989,1470,2.989,1471,2.989,1472,2.989,1473,2.989,1474,2.989,1475,4.363,1476,2.715,1477,2.989,1478,2.989,1479,2.989,1480,2.347,1481,2.715,1482,4.363,1483,2.989]],["title/interceptors/HttpConfigInterceptor.html",[759,2.916,1341,2.475]],["body/interceptors/HttpConfigInterceptor.html",[3,0.127,4,0.099,5,0.072,7,1.615,10,0.446,12,1.197,21,0.446,23,1.041,24,0.011,27,1.593,74,1.164,84,0.127,85,0.006,86,0.008,87,0.006,88,0.099,104,1.024,111,1.464,113,0.848,118,0.929,119,0.58,137,0.963,159,1.197,165,0.386,168,1.414,171,2.077,172,2.47,181,2.341,221,1.454,269,0.521,539,3.474,544,4.77,560,2.381,717,3.889,759,4.582,772,2.907,894,1.857,895,3.202,896,3.202,898,4.152,980,4.152,982,4.571,1341,3.889,1342,3.838,1344,5.689,1345,4.316,1346,6.011,1347,4.996,1348,6.337,1349,4.901,1351,4.582,1353,4.901,1354,5.689,1355,5.689,1357,4.901,1358,4.901,1359,4.582,1360,4.901,1363,3.838,1364,4.901,1484,6.43,1485,4.571,1486,6.649,1487,5.836,1488,5.207,1489,6.649,1490,5.207,1491,5.836,1492,5.207,1493,5.207,1494,5.207,1495,4.152]],["title/classes/HttpError.html",[88,0.081,847,2.747]],["body/classes/HttpError.html",[3,0.092,4,0.072,5,0.052,7,1.513,10,0.324,11,0.929,12,0.618,21,0.636,23,1.559,24,0.011,26,1.997,60,2.852,69,2.456,70,2.993,74,1.514,84,0.152,85,0.005,86,0.007,87,0.005,88,0.129,90,1.864,92,2.747,101,2.456,105,2.747,111,0.756,113,0.684,118,0.675,119,0.422,137,0.548,139,2.127,144,2.327,148,1.669,159,1.232,160,2.366,165,0.339,167,1.94,168,1.027,181,2.688,184,1.027,190,2.139,249,3.782,252,1.232,257,1.893,269,0.379,274,1.416,277,1.84,325,2.04,430,3.123,533,4.343,576,2.989,620,1.509,711,3.017,717,2.213,758,2.456,765,4.964,772,2.113,847,4.641,871,2.607,872,2.607,873,2.213,874,2.607,875,2.748,894,1.497,969,2.113,1017,3.017,1043,4.993,1236,4.397,1286,4.59,1345,2.456,1347,3.642,1351,2.607,1352,2.213,1362,4.274,1371,4.59,1380,4.641,1413,4.59,1414,2.789,1415,3.321,1416,3.321,1417,3.321,1418,3.321,1419,6.276,1420,3.321,1422,6.518,1425,3.321,1426,3.321,1428,3.017,1429,2.789,1430,4.706,1431,4.274,1432,4.706,1433,4.274,1434,3.321,1436,4.706,1437,4.706,1438,3.321,1439,3.321,1440,4.706,1441,3.321,1443,3.017,1444,3.321,1445,3.017,1446,3.321,1447,3.017,1448,3.321,1449,3.321,1450,4.706,1451,4.706,1452,3.695,1453,4.706,1454,3.321,1455,3.321,1456,3.321,1457,3.321,1458,3.321,1459,4.706,1460,3.321,1461,4.706,1462,3.017,1463,3.321,1464,3.321,1465,3.321,1466,3.321,1467,3.321,1468,3.321,1469,3.321,1470,3.321,1471,3.321,1472,3.321,1473,3.321,1474,3.321,1475,4.706,1476,3.017,1477,3.321,1478,3.321,1479,3.321,1480,2.607,1481,3.017,1482,4.706,1483,3.321,1496,5.361]],["title/injectables/KeystoreService.html",[894,1.182,972,2.916]],["body/injectables/KeystoreService.html",[3,0.145,4,0.113,5,0.082,10,0.508,11,1.25,21,0.508,24,0.011,84,0.145,85,0.007,86,0.009,87,0.007,88,0.113,104,1.11,105,2.618,106,3.203,111,1.553,113,0.991,137,0.859,138,2.7,159,1.786,165,0.361,184,1.959,199,2.292,269,0.594,277,2.297,654,2.815,780,5.751,781,4.731,894,2.014,897,2.924,911,2.924,913,5.18,972,4.971,974,5.209,1059,4.731,1279,6.209,1497,5.209,1498,8.084,1499,7.213,1500,5.934,1501,5.209,1502,5.209,1503,5.934,1504,5.934,1505,7.213]],["title/injectables/LocationService.html",[894,1.182,1205,3.119]],["body/injectables/LocationService.html",[3,0.108,4,0.084,5,0.061,10,0.379,11,1.035,12,1.105,19,2.47,21,0.704,23,1.686,24,0.011,44,2.47,48,1.694,64,2.882,73,1.947,74,1.742,84,0.108,85,0.005,86,0.007,87,0.005,88,0.084,104,0.919,111,0.884,113,1.068,118,1.206,119,0.754,137,1.049,159,1.373,165,0.379,171,1.764,172,2.098,184,1.967,252,1.664,269,0.443,277,2.303,413,2.587,414,2.364,426,3.673,427,3.877,539,3.587,560,2.022,620,1.764,654,2.098,772,2.47,894,1.668,897,2.179,911,2.179,960,5.575,1200,5.371,1205,4.403,1506,3.882,1507,6.763,1508,6.763,1509,5.745,1510,6.763,1511,6.763,1512,5.973,1513,6.357,1514,5.973,1515,6.357,1516,3.882,1517,6.841,1518,5.973,1519,5.973,1520,4.423,1521,4.423,1522,5.973,1523,4.423,1524,4.423,1525,4.423,1526,5.973,1527,4.423,1528,5.973,1529,4.423,1530,4.423,1531,5.973,1532,4.423,1533,5.973,1534,5.973,1535,4.423,1536,4.423,1537,7.242,1538,4.423,1539,5.973,1540,6.763,1541,4.423,1542,4.423,1543,4.423,1544,4.423,1545,4.423,1546,6.763,1547,4.423,1548,4.423]],["title/interceptors/LoggingInterceptor.html",[760,2.916,1341,2.475]],["body/interceptors/LoggingInterceptor.html",[3,0.115,4,0.09,5,0.065,7,1.698,10,0.405,12,1.215,21,0.535,23,1.248,24,0.011,26,1.743,60,1.884,74,1.562,76,4.052,84,0.115,85,0.006,86,0.008,87,0.006,88,0.09,92,2.754,104,0.961,111,0.944,113,0.796,118,1.113,119,0.696,137,0.904,159,1.434,165,0.387,167,2.422,168,1.695,181,2.461,190,2.49,221,1.319,269,0.473,325,1.086,414,2.524,430,2.894,539,3.315,544,4.646,560,2.16,576,3.574,620,1.884,671,2.905,717,3.651,760,4.301,772,2.638,875,3.2,894,1.743,895,2.905,896,2.905,932,3.482,969,2.638,1044,3.766,1341,3.651,1342,3.482,1344,5.481,1345,4.052,1346,5.854,1347,4.81,1348,6.241,1349,4.601,1351,4.301,1352,4.35,1353,4.601,1354,5.481,1355,5.481,1357,4.601,1358,4.601,1359,4.301,1360,4.601,1363,3.482,1364,4.601,1371,3.482,1491,5.478,1495,3.766,1549,4.146,1550,4.601,1551,4.724,1552,4.724,1553,5.478,1554,6.241,1555,4.724,1556,4.724,1557,6.241,1558,4.724,1559,4.724,1560,6.241,1561,4.724,1562,4.724,1563,4.724,1564,4.724]],["title/injectables/LoggingService.html",[576,1.867,894,1.182]],["body/injectables/LoggingService.html",[3,0.118,4,0.168,5,0.067,10,0.413,12,1.35,21,0.708,24,0.011,60,3.248,84,0.118,85,0.006,86,0.008,87,0.006,88,0.092,104,0.974,111,0.964,113,1.054,118,1.473,119,0.921,137,1.179,165,0.317,252,1.985,269,0.483,325,2.037,576,2.792,620,1.925,654,2.288,777,3.847,778,5.631,894,1.767,897,2.377,911,2.377,1565,4.235,1566,6.329,1567,6.329,1568,6.329,1569,6.329,1570,6.329,1571,6.329,1572,6.329,1573,4.825,1574,7.497,1575,4.825,1576,6.329,1577,4.825,1578,6.329,1579,4.825,1580,6.329,1581,4.825,1582,6.329,1583,4.825,1584,6.329,1585,4.825,1586,6.329,1587,4.825,1588,6.329,1589,4.825,1590,6.329,1591,4.825,1592,4.825,1593,4.825,1594,3.847,1595,4.825,1596,4.825,1597,4.825,1598,4.825,1599,4.825,1600,4.825,1601,4.825]],["title/directives/MenuSelectionDirective.html",[308,1.182,352,1.324]],["body/directives/MenuSelectionDirective.html",[3,0.127,4,0.099,5,0.072,7,1.614,10,0.446,12,0.85,21,0.446,24,0.011,74,1.724,84,0.127,85,0.006,86,0.008,87,0.006,88,0.139,104,1.023,111,1.039,113,0.847,118,0.927,119,0.58,129,6.15,137,0.753,165,0.26,181,2.339,223,1.537,226,2.14,252,1.527,269,0.52,277,1.537,306,2.203,307,2.485,308,1.855,351,1.627,352,2.079,620,2.074,642,3.833,657,4.564,682,4.564,683,4.564,726,4.901,727,5.044,728,4.146,729,3.583,730,4.146,731,4.146,732,4.146,733,4.564,734,4.564,736,4.564,737,4.564,738,4.564,739,4.564,1246,4.312,1375,4.578,1550,4.897,1602,5.836,1603,4.564,1604,6.15,1605,5.296,1606,5.831,1607,6.643,1608,6.643,1609,7.713,1610,4.146,1611,6.606,1612,6.15,1613,6.15,1614,5.2,1615,5.396,1616,5.296,1617,5.296,1618,5.296,1619,4.897,1620,4.312,1621,4.897,1622,5.296,1623,4.897,1624,5.296,1625,5.2,1626,4.146,1627,5.2,1628,5.2]],["title/directives/MenuToggleDirective.html",[308,1.182,354,1.324]],["body/directives/MenuToggleDirective.html",[3,0.13,4,0.102,5,0.074,7,1.641,10,0.457,12,0.872,21,0.457,24,0.011,74,1.657,84,0.13,85,0.007,86,0.008,87,0.007,88,0.141,104,1.04,111,1.067,113,0.862,118,0.952,119,0.595,129,6.209,137,0.773,165,0.267,181,2.378,223,1.577,226,2.176,252,1.553,269,0.534,277,1.577,306,2.24,307,2.509,308,1.886,351,1.67,354,2.114,620,2.129,726,4.94,727,5.107,728,4.256,729,3.679,730,4.256,731,4.256,732,4.256,1246,4.385,1375,4.655,1550,4.979,1602,5.908,1604,6.543,1605,5.385,1610,4.256,1611,6.645,1612,6.209,1613,6.209,1615,5.922,1616,5.385,1617,5.385,1618,5.385,1619,4.979,1620,4.385,1621,4.979,1622,5.385,1623,4.979,1624,5.385,1626,4.256,1629,4.256,1630,6.755,1631,7.788,1632,5.338,1633,5.338,1634,5.338,1635,5.338,1636,5.338,1637,5.338]],["title/interfaces/Meta.html",[0,0.973,52,2.363]],["body/interfaces/Meta.html",[0,1.835,1,3.769,2,1.714,3,0.101,4,0.079,5,0.057,6,2.699,7,1.01,8,1.802,9,2.934,10,0.356,11,0.992,13,4.221,14,3.521,15,3.946,16,3.946,17,4.028,18,3.946,19,3.657,20,4.252,21,0.634,22,3.06,23,1.75,24,0.011,25,2.341,26,1.971,27,0.904,28,2.432,29,2.866,30,3.065,31,3.35,33,3.065,34,3.065,35,2.866,36,2.866,37,3.065,38,1.773,39,3.946,40,3.946,41,3.946,42,3.718,43,3.718,44,2.322,45,3.946,46,3.065,47,3.521,48,1.783,49,3.946,50,3.946,51,3.946,52,4.725,53,3.946,54,3.35,55,4.282,56,2.432,57,3.347,58,2.432,59,2.322,60,1.659,61,3.35,62,2.432,63,3.06,64,2.411,65,3.35,66,3.832,67,3.524,68,4.221,69,3.718,70,2.322,71,3.718,72,2.132,73,1.039,74,0.93,75,3.521,76,2.699,77,2.212,78,2.699,79,3.718,80,2.822,81,2.866,82,2.866,83,0.93,84,0.101,85,0.005,86,0.007,87,0.005]],["title/interfaces/MetaResponse.html",[0,0.973,71,2.747]],["body/interfaces/MetaResponse.html",[0,1.841,1,3.496,2,1.736,3,0.103,4,0.08,5,0.058,6,2.734,7,1.023,8,1.765,9,2.656,10,0.361,11,1.001,13,4.259,14,3.552,15,3.981,16,3.981,17,4.055,18,3.981,19,3.682,20,4.281,21,0.608,22,3.087,23,1.752,24,0.011,25,2.354,26,1.982,27,0.916,28,2.464,29,2.902,30,3.105,31,3.379,33,3.105,34,3.105,35,2.902,36,2.902,37,3.105,38,1.795,39,3.981,40,3.981,41,3.981,42,3.75,43,3.75,44,2.352,45,3.981,46,3.105,47,3.552,48,1.788,49,3.981,50,3.981,51,3.981,52,4.781,53,3.981,54,3.379,55,3.937,56,2.464,57,3.127,58,2.464,59,2.352,60,1.68,61,3.379,62,2.464,63,3.087,64,2.424,65,2.464,66,3.857,67,3.534,68,3.105,69,2.734,70,3.226,71,4.281,72,3.638,73,1.052,74,0.941,75,3.552,76,2.734,77,2.232,78,2.734,79,3.75,80,2.846,81,2.902,82,2.902,83,0.941,84,0.103,85,0.005,86,0.007,87,0.005]],["title/interceptors/MockBackendInterceptor.html",[1341,2.475,1638,3.119]],["body/interceptors/MockBackendInterceptor.html",[3,0.042,4,0.033,5,0.024,7,0.704,8,0.395,9,1.406,10,0.147,12,0.614,21,0.147,23,0.579,24,0.011,25,2.126,26,0.809,28,1.696,31,1.006,38,0.733,44,0.961,60,1.156,64,1.283,67,2.353,70,2.097,72,0.882,73,0.43,74,1.569,78,2.438,83,0.385,84,0.071,85,0.002,86,0.004,87,0.002,88,0.033,92,1.279,104,0.446,113,0.219,118,0.307,119,0.192,137,0.42,139,1.681,148,1.657,156,2.137,159,1.789,160,2.353,165,0.246,167,0.882,168,0.787,171,0.686,181,1.02,190,0.686,193,1.372,207,1.85,217,0.554,221,0.48,269,0.172,289,0.919,302,2.438,325,0.395,348,0.418,350,0.554,365,1.186,394,1.268,414,0.919,415,0.919,425,2.311,430,1.406,512,1.186,515,0.816,522,3.942,524,3.91,525,3.462,528,1.882,529,2.097,533,1.006,539,3.43,542,5.627,544,3.12,553,4.252,557,1.186,560,0.787,571,1.882,573,2.311,639,1.618,688,1.882,717,1.696,770,2.311,772,0.961,773,1.268,795,1.268,796,1.372,797,1.372,858,2.769,859,1.882,861,1.058,873,1.006,894,0.809,895,1.058,896,1.058,980,1.372,1021,1.186,1062,1.268,1103,1.006,1200,1.186,1201,2.137,1203,2.137,1231,2.544,1238,1.268,1247,1.186,1263,1.186,1342,1.268,1344,3.249,1345,1.882,1346,3.249,1347,3.486,1348,4.571,1349,2.137,1353,2.137,1354,3.249,1355,3.249,1357,4.725,1358,2.137,1359,3.037,1360,2.137,1363,1.268,1364,2.137,1365,2.544,1375,1.997,1378,2.544,1388,1.51,1389,4.944,1429,2.137,1431,1.372,1462,1.372,1480,4.836,1495,1.372,1509,1.268,1513,2.544,1515,2.544,1553,2.544,1638,3.249,1639,2.311,1640,1.372,1641,2.898,1642,2.544,1643,2.898,1644,1.72,1645,2.544,1646,2.898,1647,2.898,1648,2.898,1649,1.72,1650,3.869,1651,1.51,1652,2.311,1653,1.51,1654,2.311,1655,1.372,1656,3.514,1657,1.372,1658,2.769,1659,1.372,1660,1.117,1661,1.372,1662,2.311,1663,1.372,1664,1.186,1665,1.372,1666,1.372,1667,1.372,1668,1.268,1669,1.372,1670,2.311,1671,1.186,1672,1.372,1673,2.544,1674,3.869,1675,1.51,1676,1.51,1677,1.51,1678,1.51,1679,1.51,1680,1.51,1681,1.51,1682,1.51,1683,1.51,1684,1.51,1685,1.51,1686,1.51,1687,1.51,1688,1.51,1689,1.51,1690,2.544,1691,1.51,1692,1.51,1693,2.544,1694,1.51,1695,1.51,1696,1.51,1697,3.297,1698,3.297,1699,1.51,1700,2.544,1701,1.51,1702,2.544,1703,2.544,1704,2.544,1705,1.51,1706,1.51,1707,1.51,1708,1.51,1709,1.51,1710,1.51,1711,1.51,1712,1.51,1713,1.51,1714,1.51,1715,1.51,1716,1.51,1717,1.51,1718,1.51,1719,1.51,1720,1.51,1721,1.51,1722,1.51,1723,1.51,1724,1.51,1725,1.51,1726,1.51,1727,1.51,1728,1.51,1729,1.51,1730,1.51,1731,1.51,1732,1.51,1733,1.51,1734,1.51,1735,1.51,1736,1.51,1737,1.51,1738,2.544,1739,1.51,1740,1.51,1741,1.51,1742,1.51,1743,1.51,1744,1.51,1745,1.51,1746,1.51,1747,1.51,1748,1.51,1749,1.51,1750,1.51,1751,2.544,1752,1.51,1753,1.51,1754,1.51,1755,2.544,1756,1.51,1757,1.51,1758,1.51,1759,1.51,1760,1.51,1761,1.51,1762,1.51,1763,1.51,1764,1.51,1765,1.51,1766,1.51,1767,1.51,1768,1.51,1769,1.51,1770,1.51,1771,1.51,1772,1.51,1773,1.51,1774,1.51,1775,1.51,1776,1.51,1777,1.51,1778,1.51,1779,1.51,1780,1.51,1781,1.51,1782,3.297,1783,1.51,1784,1.51,1785,1.51,1786,1.51,1787,1.51,1788,1.51,1789,1.51,1790,1.51,1791,1.51,1792,1.51,1793,1.51,1794,1.51,1795,1.51,1796,2.544,1797,1.51,1798,1.51,1799,1.51,1800,1.51,1801,1.51,1802,1.51,1803,1.51,1804,2.544,1805,1.51,1806,1.51,1807,1.51,1808,1.51,1809,1.51,1810,1.372,1811,1.51,1812,1.51,1813,1.51,1814,1.51,1815,0.961,1816,1.51,1817,1.51,1818,1.51,1819,1.51,1820,1.51,1821,1.51,1822,1.51,1823,2.544,1824,1.51,1825,1.51,1826,2.544,1827,1.51,1828,1.51,1829,1.51,1830,1.51,1831,1.51,1832,1.51,1833,1.51,1834,1.51,1835,1.51,1836,1.51,1837,1.51,1838,1.51,1839,1.51,1840,1.51,1841,1.51,1842,1.51,1843,3.297,1844,3.869,1845,1.51,1846,1.51,1847,1.51,1848,1.51,1849,1.51,1850,1.51,1851,1.51,1852,1.51,1853,1.51,1854,1.51,1855,1.51,1856,1.51,1857,1.51,1858,1.51,1859,1.51,1860,1.51,1861,1.51,1862,1.51,1863,1.51,1864,1.51,1865,1.51,1866,1.51,1867,1.51,1868,1.51,1869,1.51,1870,1.51,1871,1.51,1872,1.51,1873,1.51,1874,1.51,1875,1.51,1876,1.51,1877,1.51,1878,1.51,1879,1.51,1880,1.51,1881,1.51,1882,1.51,1883,1.51,1884,1.51,1885,1.51,1886,1.51,1887,1.51,1888,1.51,1889,1.51,1890,2.544,1891,3.297,1892,1.51,1893,1.51,1894,1.51,1895,1.51,1896,3.297,1897,3.297,1898,1.51,1899,2.544,1900,1.51,1901,1.51,1902,1.51,1903,1.51,1904,1.51,1905,1.51,1906,1.51,1907,1.51,1908,1.51,1909,1.51,1910,1.51,1911,1.51,1912,1.51,1913,1.51,1914,3.297,1915,1.51,1916,1.51,1917,1.51,1918,1.51,1919,1.51,1920,1.51,1921,1.51,1922,1.51,1923,1.51,1924,1.51,1925,1.51,1926,1.51,1927,1.51,1928,1.51,1929,1.51,1930,1.51,1931,1.51,1932,1.51,1933,2.137,1934,2.544,1935,2.544,1936,2.544,1937,2.544,1938,1.51,1939,1.51,1940,1.51,1941,1.51,1942,1.372,1943,1.51,1944,1.51,1945,1.51,1946,1.51,1947,1.51,1948,1.51,1949,1.51,1950,1.51,1951,1.51,1952,1.51,1953,1.51,1954,1.51,1955,1.51,1956,1.51,1957,1.51,1958,1.51,1959,1.51,1960,1.51,1961,1.51,1962,1.372,1963,1.51,1964,1.51,1965,1.51,1966,1.51,1967,1.51,1968,1.51,1969,1.51,1970,1.51,1971,1.51,1972,1.51,1973,1.51,1974,1.51,1975,1.51,1976,1.51,1977,1.51,1978,1.51,1979,2.544,1980,3.869,1981,1.51,1982,1.51,1983,1.51,1984,1.51,1985,1.51,1986,1.51,1987,1.51,1988,1.51,1989,1.51,1990,1.51,1991,1.51,1992,1.51,1993,1.51,1994,1.51,1995,1.51,1996,1.51,1997,1.51,1998,1.51,1999,1.51,2000,1.51,2001,1.51,2002,1.51,2003,1.51,2004,2.544,2005,1.51,2006,1.51,2007,1.51,2008,1.268,2009,1.51,2010,1.51,2011,1.51,2012,1.51,2013,1.51,2014,1.51,2015,1.51,2016,1.51,2017,1.51,2018,1.51,2019,1.51,2020,1.51,2021,1.51,2022,1.51,2023,1.51,2024,1.51,2025,1.51,2026,1.51,2027,1.51,2028,1.51,2029,1.51,2030,1.51,2031,1.51,2032,1.51,2033,1.51,2034,1.51,2035,1.51,2036,1.51,2037,1.51,2038,2.544,2039,1.51,2040,1.51,2041,1.51,2042,1.51,2043,1.51,2044,1.51,2045,1.51,2046,1.51,2047,2.544,2048,1.51,2049,1.372,2050,1.51,2051,1.51,2052,1.51,2053,1.51,2054,1.51,2055,1.51,2056,1.51,2057,1.51,2058,1.51,2059,2.544,2060,1.51,2061,1.51,2062,1.51,2063,1.51,2064,1.51,2065,1.51,2066,1.51,2067,1.51,2068,1.51,2069,1.51,2070,1.51,2071,1.51,2072,1.51,2073,1.51,2074,1.51,2075,1.51,2076,1.51,2077,2.544,2078,2.311,2079,1.51,2080,1.51,2081,1.51,2082,1.51,2083,1.51,2084,1.51,2085,1.51,2086,1.51,2087,1.51,2088,1.51,2089,1.51,2090,1.51,2091,1.51,2092,1.51,2093,1.51,2094,1.51,2095,1.51,2096,1.51,2097,1.51,2098,1.372,2099,1.51,2100,1.51,2101,1.51,2102,1.51,2103,1.51,2104,1.51,2105,1.51,2106,1.51,2107,1.51,2108,1.51,2109,1.51,2110,1.51,2111,1.51,2112,1.51,2113,1.51,2114,1.51,2115,1.51,2116,1.51,2117,1.372,2118,1.51,2119,1.51,2120,1.51,2121,1.51,2122,1.51,2123,1.51,2124,1.51,2125,1.51,2126,1.51,2127,1.51,2128,1.51,2129,1.51,2130,1.51,2131,1.51,2132,1.51,2133,1.51,2134,1.51,2135,1.51,2136,2.544,2137,1.51,2138,1.51,2139,1.51,2140,1.51,2141,1.51,2142,1.51,2143,1.51,2144,1.372,2145,1.51,2146,1.372,2147,1.51,2148,1.51,2149,1.51,2150,1.51,2151,1.51,2152,1.372,2153,1.51,2154,1.51,2155,1.51,2156,1.51,2157,1.51,2158,1.51,2159,1.51,2160,1.51,2161,1.372,2162,1.51,2163,1.51,2164,1.51,2165,1.51,2166,1.51,2167,1.51,2168,1.51,2169,1.372,2170,1.51,2171,1.372,2172,1.51,2173,1.51,2174,2.311,2175,1.51,2176,1.51,2177,1.51,2178,1.51,2179,1.51,2180,1.51,2181,1.51,2182,1.51,2183,1.51,2184,1.51,2185,1.51,2186,1.51,2187,1.51,2188,1.51,2189,1.51,2190,1.51,2191,1.51,2192,1.51,2193,1.51,2194,1.51,2195,1.51,2196,1.51,2197,1.51,2198,1.51,2199,1.51,2200,1.51,2201,1.51,2202,1.51,2203,1.51,2204,1.51,2205,1.51,2206,1.51,2207,1.51,2208,1.51,2209,1.51,2210,1.51,2211,1.51,2212,1.51,2213,1.51,2214,1.51,2215,1.51,2216,1.51,2217,1.51,2218,1.51,2219,1.51,2220,1.51,2221,1.51,2222,2.544,2223,1.51,2224,1.51,2225,1.51,2226,1.51,2227,1.51,2228,1.51,2229,1.51,2230,1.51,2231,1.51,2232,1.51,2233,1.51,2234,1.51,2235,1.51,2236,1.51,2237,1.51,2238,1.51,2239,1.51,2240,3.297,2241,1.51,2242,1.51,2243,1.51,2244,1.51,2245,1.51,2246,1.51,2247,1.51,2248,1.51,2249,1.51,2250,1.51,2251,1.51,2252,1.51,2253,1.51,2254,1.51,2255,1.51,2256,1.51,2257,1.51,2258,1.51,2259,1.51,2260,1.51,2261,1.51,2262,1.51,2263,1.51,2264,1.51,2265,1.51,2266,1.51,2267,1.51,2268,1.51,2269,1.51,2270,1.51,2271,1.51,2272,1.51,2273,1.51,2274,1.51,2275,1.51,2276,1.51,2277,1.51,2278,1.51,2279,1.51,2280,1.51,2281,1.51,2282,1.51,2283,1.51,2284,1.51,2285,1.51,2286,1.51,2287,1.51,2288,1.51,2289,1.51,2290,1.51,2291,1.51,2292,1.51,2293,1.51,2294,1.51,2295,1.51,2296,1.51,2297,1.51,2298,1.51,2299,1.51,2300,1.51,2301,1.51,2302,1.51,2303,1.51,2304,1.51,2305,1.51,2306,1.51,2307,1.51,2308,1.51,2309,1.51,2310,1.51,2311,1.51,2312,1.51,2313,1.51,2314,1.51,2315,1.51,2316,1.51,2317,1.51,2318,1.51,2319,1.51,2320,1.51,2321,1.51,2322,1.51,2323,1.51,2324,1.51,2325,1.51,2326,1.51,2327,1.51,2328,1.51,2329,2.544,2330,1.51,2331,2.311,2332,1.51,2333,1.51,2334,1.51,2335,1.51,2336,1.51,2337,1.51,2338,1.51,2339,1.51,2340,1.51,2341,1.51,2342,1.51,2343,1.51,2344,1.51,2345,1.51,2346,1.51,2347,1.51,2348,1.372,2349,1.51,2350,1.51,2351,1.51,2352,1.51,2353,1.51,2354,1.51,2355,1.51,2356,1.51,2357,1.51,2358,1.51,2359,1.51,2360,2.544,2361,2.544,2362,1.51,2363,1.51,2364,1.51,2365,1.51,2366,1.51,2367,1.51,2368,2.311,2369,1.51,2370,1.51,2371,1.51,2372,1.51,2373,1.51,2374,1.51,2375,1.51,2376,1.51,2377,1.51,2378,1.51,2379,1.51,2380,1.51,2381,1.51,2382,1.51,2383,1.51,2384,1.51,2385,1.51,2386,1.51,2387,1.51,2388,1.51,2389,1.51,2390,1.372,2391,1.372,2392,1.51,2393,1.51,2394,1.51,2395,2.544,2396,1.51,2397,1.51,2398,1.51,2399,1.51,2400,1.51,2401,1.51,2402,1.51,2403,2.544,2404,1.51,2405,1.51,2406,1.51,2407,1.51,2408,1.51,2409,1.51,2410,1.51,2411,1.51,2412,1.51,2413,1.51,2414,1.51,2415,1.51,2416,1.51,2417,1.51,2418,1.51,2419,1.51,2420,1.51,2421,1.51,2422,1.51,2423,1.51,2424,1.51,2425,1.51,2426,1.51,2427,1.51,2428,1.51,2429,1.51,2430,1.372,2431,1.51,2432,1.51,2433,1.51,2434,1.51,2435,1.51,2436,2.311,2437,1.51,2438,1.51,2439,1.51,2440,1.51,2441,1.51,2442,1.51,2443,1.51,2444,1.372,2445,1.51,2446,1.51,2447,1.51,2448,1.51,2449,1.51,2450,1.51,2451,1.51,2452,1.51,2453,1.51,2454,1.51,2455,1.51,2456,1.51,2457,1.51,2458,1.51,2459,1.51,2460,1.51,2461,1.51,2462,1.51,2463,1.51,2464,1.51,2465,1.51,2466,1.51,2467,1.51,2468,1.51,2469,1.51,2470,1.51,2471,1.51,2472,1.51,2473,1.51,2474,1.51,2475,1.51,2476,1.51,2477,1.51,2478,1.51,2479,1.51,2480,1.51,2481,1.51,2482,1.51,2483,1.51,2484,1.51,2485,1.51,2486,1.51,2487,1.51,2488,1.51,2489,1.51,2490,1.51,2491,1.51,2492,1.51,2493,1.51,2494,1.51,2495,1.372,2496,1.372,2497,1.372,2498,1.51,2499,1.51,2500,1.51,2501,1.51,2502,1.72,2503,1.72,2504,1.72,2505,1.72,2506,2.898,2507,1.51,2508,1.72,2509,1.72,2510,1.72,2511,1.72,2512,1.72,2513,1.72,2514,1.72,2515,1.72,2516,1.72,2517,1.72,2518,1.72,2519,1.72,2520,2.898,2521,2.898,2522,2.544,2523,1.72,2524,1.72,2525,1.72,2526,1.72,2527,2.898,2528,1.72,2529,1.72,2530,2.544,2531,1.51,2532,1.268,2533,1.72,2534,1.51,2535,2.311,2536,2.898,2537,2.898,2538,2.898,2539,3.756,2540,1.72,2541,2.898,2542,1.117,2543,1.72,2544,1.72,2545,1.72,2546,1.72,2547,1.72,2548,1.72,2549,1.72,2550,1.72,2551,1.72,2552,1.372,2553,1.72,2554,2.898,2555,2.898,2556,1.72,2557,1.72,2558,1.72,2559,1.72,2560,1.72,2561,1.72]],["title/components/NetworkStatusComponent.html",[211,0.594,330,1.363]],["body/components/NetworkStatusComponent.html",[3,0.111,4,0.087,5,0.063,8,1.398,10,0.389,11,1.054,12,0.743,21,0.521,24,0.011,27,0.988,48,0.988,73,1.135,84,0.111,85,0.006,86,0.007,87,0.006,88,0.087,100,2.214,104,0.936,111,0.909,113,0.934,115,1.464,118,0.811,119,0.816,137,0.881,165,0.228,211,0.963,212,1.422,213,2.142,214,1.6,215,1.813,216,1.6,217,1.464,221,1.699,222,2.923,223,1.343,224,2.427,225,2.427,226,2.857,227,3.105,229,2.427,231,2.427,240,3.121,252,1.683,257,1.85,268,1.813,269,0.455,305,1.234,306,2.018,307,1.96,308,1.269,309,2.658,310,1.65,311,1.464,312,2.489,313,1.422,314,1.65,315,1.65,316,1.422,317,1.65,318,1.464,319,1.65,320,1.422,321,1.65,322,1.422,323,1.65,324,1.422,325,1.045,326,1.65,327,1.464,328,2.208,329,1.553,330,2.359,331,1.65,332,1.422,333,1.65,334,1.422,335,1.65,336,1.422,337,1.65,338,1.464,339,2.208,340,1.553,341,1.422,342,1.422,343,1.65,344,1.464,345,2.208,346,1.553,347,1.464,348,1.104,349,1.422,350,1.464,351,1.422,352,1.422,353,1.65,354,1.422,355,1.65,356,1.422,357,1.65,358,1.508,359,1.6,360,1.65,430,2.277,620,1.813,2562,6.7,2563,6.086,2564,3.99,2565,6.857,2566,6.084,2567,6.857,2568,7.322,2569,4.545,2570,7.322,2571,6.084,2572,6.084,2573,4.545,2574,4.545,2575,7.322,2576,6.084,2577,4.545,2578,6.084,2579,4.545,2580,4.545,2581,6.084,2582,6.084]],["title/components/OrganizationComponent.html",[211,0.594,332,1.324]],["body/components/OrganizationComponent.html",[3,0.097,4,0.076,5,0.055,8,1.28,10,0.342,11,0.965,12,0.652,21,0.594,24,0.011,27,0.868,38,1.702,48,1.21,73,2.032,84,0.097,85,0.005,86,0.007,87,0.005,88,0.076,100,1.084,104,0.857,111,0.798,113,0.989,115,1.286,118,0.712,119,0.773,137,0.806,139,1.364,148,2.829,159,1.28,165,0.321,184,1.512,211,0.9,212,1.249,213,1.96,214,1.406,215,1.593,216,1.406,217,1.286,221,1.555,222,2.733,223,1.18,224,2.221,225,2.221,226,2.83,227,3.071,229,2.221,231,2.221,236,4.726,240,2.957,243,4.104,246,3.183,247,5.569,252,1.594,255,4.418,257,1.693,260,4.485,268,1.593,269,0.4,270,2.943,271,2.134,272,1.967,279,2.943,281,4.104,301,2.976,303,4.502,305,1.084,306,1.847,307,1.793,308,1.115,309,2.517,310,1.449,311,1.286,312,2.327,313,1.249,314,1.449,315,1.449,316,1.249,317,1.449,318,1.286,319,1.449,320,1.249,321,1.449,322,1.249,323,1.449,324,1.249,325,0.918,326,1.449,327,1.286,328,2.021,329,1.364,330,1.286,331,1.449,332,2.17,333,1.449,334,1.249,335,1.449,336,1.249,337,1.449,338,1.286,339,2.021,340,1.364,341,1.249,342,1.249,343,1.449,344,1.286,345,2.021,346,1.364,347,1.286,348,0.97,349,1.249,350,1.286,351,1.249,352,1.249,353,1.449,354,1.249,355,1.449,356,1.249,357,1.449,358,1.324,359,1.406,360,1.449,620,1.593,815,5.111,817,5.53,840,4.439,1085,4.218,1243,4.887,1380,4.502,2008,5.113,2583,3.505,2584,5.815,2585,6.411,2586,5.568,2587,6.411,2588,6.411,2589,5.568,2590,3.993,2591,3.993,2592,3.993,2593,3.993,2594,3.993,2595,3.993,2596,3.993,2597,7.294,2598,5.111,2599,3.993,2600,3.993,2601,3.993,2602,3.993,2603,5.568,2604,5.568,2605,4.887,2606,5.568,2607,5.568,2608,5.568,2609,5.568,2610,4.887,2611,5.568,2612,5.568,2613,5.568,2614,5.568,2615,5.568,2616,5.568]],["title/classes/PGPSigner.html",[88,0.081,2617,2.747]],["body/classes/PGPSigner.html",[0,1.555,3,0.071,4,0.056,5,0.04,7,1.561,9,2.003,10,0.25,11,0.767,12,0.976,21,0.668,23,1.659,24,0.011,48,0.962,55,4.44,56,3.13,57,3.208,58,3.758,59,4.224,60,3.326,61,4.804,62,3.957,63,3.871,64,2.195,66,1.705,72,2.269,73,1.105,74,1.436,77,1.71,83,0.651,84,0.071,85,0.004,86,0.005,87,0.004,88,0.056,90,1.436,92,2.636,99,3.13,104,0.681,105,3.439,106,2.648,111,0.582,113,1.006,118,1.066,119,0.666,130,4.323,137,1.049,138,2.003,139,2.195,140,4.391,159,1.017,165,0.268,167,1.494,168,0.791,181,2.612,186,1.792,190,1.765,199,1.126,221,1.236,252,1.616,257,2.057,277,2.192,325,1.017,576,2.985,671,4.16,680,2.873,698,2.008,705,3.879,710,1.892,720,3.473,764,1.627,836,3.588,875,2.269,884,3.29,913,4.16,969,1.627,1027,4.662,1039,1.627,1191,3.587,1254,3.05,1352,2.589,1480,3.05,2542,3.473,2617,3.473,2618,5.173,2619,2.008,2620,3.262,2621,4.736,2622,3.262,2623,3.944,2624,5.213,2625,3.944,2626,3.944,2627,5.667,2628,3.884,2629,3.528,2630,4.736,2631,3.262,2632,4.425,2633,3.262,2634,4.404,2635,3.262,2636,2.914,2637,2.914,2638,2.914,2639,2.914,2640,2.914,2641,2.914,2642,4.986,2643,2.914,2644,3.944,2645,2.914,2646,3.944,2647,4.91,2648,2.914,2649,3.687,2650,3.944,2651,2.914,2652,3.944,2653,3.473,2654,3.944,2655,2.914,2656,3.687,2657,2.148,2658,2.148,2659,2.148,2660,3.262,2661,2.148,2662,2.148,2663,2.148,2664,2.148,2665,2.148,2666,2.148,2667,3.262,2668,3.262,2669,2.148,2670,2.148,2671,2.008,2672,2.148,2673,3.262,2674,2.148,2675,2.148,2676,2.148,2677,2.148,2678,2.148,2679,2.148,2680,2.148,2681,2.148,2682,2.148,2683,2.148,2684,2.148,2685,3.262,2686,2.148,2687,2.148,2688,2.148,2689,2.148,2690,2.148,2691,2.148,2692,2.148,2693,2.148]],["title/components/PagesComponent.html",[211,0.594,334,1.324]],["body/components/PagesComponent.html",[3,0.121,4,0.094,5,0.069,8,1.481,10,0.425,11,1.116,21,0.425,23,1.288,24,0.011,27,1.078,48,1.078,73,1.238,84,0.121,85,0.006,86,0.008,87,0.006,88,0.094,100,1.346,111,1.43,113,0.822,115,1.597,119,0.798,165,0.322,171,1.977,172,2.351,211,1.005,212,1.551,213,2.268,214,1.745,215,1.977,216,1.745,217,1.597,223,1.465,224,2.57,225,2.57,226,2.874,227,3.126,229,2.57,231,2.57,268,1.977,269,0.496,301,3.442,305,1.346,306,2.137,307,2.075,308,1.384,309,2.75,310,1.799,311,1.597,312,2.597,313,1.551,314,1.799,315,1.799,316,1.551,317,1.799,318,1.597,319,1.799,320,1.551,321,1.799,322,1.551,323,1.799,324,1.551,325,1.139,326,1.799,327,1.597,328,2.338,329,1.694,330,1.597,331,1.799,332,1.551,333,1.799,334,2.371,335,1.799,336,1.551,337,1.799,338,1.597,339,2.338,340,1.694,341,1.551,342,1.551,343,1.799,344,1.597,345,2.338,346,1.694,347,1.597,348,1.204,349,1.551,350,1.597,351,1.551,352,1.551,353,1.799,354,1.551,355,1.799,356,1.551,357,1.799,358,1.644,359,1.745,360,1.799,764,3.597,873,4.186,2694,4.351,2695,6.441,2696,7.156,2697,6.441,2698,6.441,2699,6.441,2700,5.136,2701,6.441]],["title/modules/PagesModule.html",[452,1.117,2702,3.119]],["body/modules/PagesModule.html",[3,0.139,4,0.109,5,0.079,24,0.011,83,1.276,84,0.139,85,0.007,86,0.009,87,0.007,88,0.109,165,0.434,168,1.913,269,0.571,305,1.55,334,2.611,452,1.508,454,2.072,455,2.813,456,4.083,457,2.927,458,3.051,463,4.112,465,3.765,466,3.051,467,2.708,469,2.904,470,4.121,471,3.188,473,3.34,475,3.34,487,4.332,488,3.511,489,4.573,490,3.706,491,3.34,492,4.332,493,3.511,494,4.332,495,3.511,498,4.855,499,3.934,2702,6.388,2703,5.011,2704,5.011,2705,5.011,2706,5.751,2707,5.709,2708,5.709,2709,5.709]],["title/modules/PagesRoutingModule.html",[452,1.117,2706,2.916]],["body/modules/PagesRoutingModule.html",[3,0.142,4,0.111,5,0.081,24,0.011,74,1.303,83,1.303,84,0.142,85,0.007,86,0.009,87,0.007,88,0.111,94,3.584,165,0.386,168,1.583,211,0.818,269,0.583,274,2.182,301,3.813,334,2.233,454,2.116,469,2.941,514,3.41,515,3.657,516,3.984,517,4.969,518,4.017,519,4.017,520,3.784,521,3.584,529,3.255,801,7.235,1085,3.255,1091,3.255,1185,3.255,2706,4.917,2710,5.829,2711,5.829,2712,5.829,2713,5.829,2714,5.829,2715,5.829,2716,5.829,2717,5.829,2718,5.829,2719,5.829,2720,5.829,2721,5.829]],["title/directives/PasswordToggleDirective.html",[308,1.182,356,1.324]],["body/directives/PasswordToggleDirective.html",[3,0.116,4,0.091,5,0.066,7,1.526,10,0.409,12,0.779,21,0.602,23,1.492,24,0.011,48,1.365,67,3.582,74,1.404,84,0.116,85,0.006,86,0.008,87,0.006,88,0.134,104,0.967,111,0.953,113,0.952,118,0.85,119,0.531,137,0.69,165,0.239,181,2.211,223,1.409,226,2.023,252,1.443,269,0.477,277,1.409,306,2.083,307,2.404,308,1.754,351,1.492,356,1.965,491,4.819,609,6.55,620,1.902,727,4.327,1039,4.734,1246,4.076,1249,5.869,1262,4.992,1278,4.327,1375,4.327,1550,4.629,1604,5.949,1610,3.801,1611,6.472,1612,5.949,1613,5.949,1615,5.176,1616,5.006,1617,5.006,1618,5.006,1619,4.629,1620,4.076,1621,4.629,1622,5.006,1623,4.629,1624,5.006,1626,3.801,1629,3.801,2722,6.807,2723,6.279,2724,7.462,2725,7.021,2726,6.279,2727,7.755,2728,4.767,2729,4.767,2730,6.279,2731,4.767,2732,4.767,2733,4.767,2734,7.021,2735,7.021,2736,7.021,2737,4.185,2738,6.279,2739,7.462,2740,6.279,2741,6.279]],["title/injectables/RegistryService.html",[894,1.182,1109,2.747]],["body/injectables/RegistryService.html",[3,0.111,4,0.087,5,0.063,8,1.045,10,0.389,11,1.054,21,0.627,24,0.011,27,0.988,48,0.988,73,1.135,74,1.637,84,0.111,85,0.006,86,0.007,87,0.006,88,0.087,89,5.055,95,4.769,104,0.936,105,3.025,106,3.403,113,1.023,137,0.993,138,2.941,159,1.934,165,0.393,169,2.659,170,3.132,171,1.813,172,2.156,179,2.951,184,2.214,199,2.949,269,0.455,272,2.24,277,2.44,654,2.156,894,1.699,897,2.24,911,2.24,1059,5.467,1106,3.132,1107,2.659,1109,3.949,1118,4.484,1279,6.463,1452,4.192,1501,6.019,1502,6.019,2742,3.99,2743,6.857,2744,7.856,2745,5.414,2746,7.322,2747,7.322,2748,7.322,2749,4.545,2750,4.545,2751,4.545,2752,4.545,2753,5.467,2754,4.545,2755,5.838,2756,4.545,2757,4.545,2758,3.99,2759,6.084,2760,4.545,2761,4.545,2762,4.545,2763,4.545,2764,4.545,2765,4.545,2766,6.084,2767,6.084,2768,6.084,2769,4.545,2770,6.084,2771,4.545,2772,6.084,2773,6.084,2774,6.084,2775,4.545,2776,4.545,2777,6.084]],["title/guards/RoleGuard.html",[861,2.602,2778,3.374]],["body/guards/RoleGuard.html",[3,0.111,4,0.087,5,0.063,7,1.669,10,0.391,12,0.997,21,0.523,24,0.011,25,2.023,31,4.29,38,2.6,57,2.893,74,1.02,84,0.111,85,0.006,86,0.007,87,0.006,88,0.131,92,2.691,104,0.939,111,0.912,113,0.778,118,1.088,119,0.68,137,1.062,138,2.283,139,2.347,144,3.75,145,4.203,146,4.496,148,2.691,152,4.862,159,1.579,165,0.344,168,1.239,181,2.419,190,2.433,207,2.248,211,0.856,217,1.965,221,1.274,249,4.7,257,1.854,269,0.457,274,1.708,303,3.959,515,2.893,525,5.419,533,4.834,539,3.258,560,2.086,598,5.297,620,1.82,654,2.164,806,6.094,861,4.51,862,3.638,864,4.862,865,5.353,866,5.847,868,3.638,870,5.353,871,5.054,872,4.203,873,3.568,874,4.203,875,3.127,876,4.005,877,6.903,878,6.437,880,5.353,882,4.496,883,4.862,884,3.75,885,5.353,886,4.862,887,6.437,888,4.51,889,5.353,890,5.353,891,6.03,894,1.703,895,2.806,896,2.806,897,2.248,899,4.005,2778,4.862,2779,4.005,2780,4.563,2781,4.563,2782,6.099,2783,6.099,2784,6.099,2785,6.099,2786,4.563,2787,4.563,2788,4.563,2789,4.563,2790,4.563,2791,4.563,2792,4.563]],["title/directives/RouterLinkDirectiveStub.html",[308,1.182,358,1.404]],["body/directives/RouterLinkDirectiveStub.html",[3,0.145,4,0.113,5,0.082,10,0.51,11,1.252,21,0.619,24,0.011,48,1.294,73,1.487,84,0.145,85,0.007,86,0.009,87,0.007,88,0.138,113,0.993,165,0.298,223,1.759,226,2.328,252,1.368,269,0.596,308,2.354,351,1.863,358,2.397,359,2.545,534,3.324,544,4.228,660,6.344,686,5.226,993,5.226,1083,4.692,1128,6.344,1129,5.226,1262,4.444,1278,4.981,1615,5.737,2793,7.104,2794,6.453,2795,7.783,2796,7.228,2797,5.954,2798,5.954,2799,5.954,2800,5.954,2801,5.954,2802,5.954,2803,5.954,2804,5.954,2805,5.954,2806,5.954,2807,5.954]],["title/pipes/SafePipe.html",[1815,2.363,2808,2.916]],["body/pipes/SafePipe.html",[3,0.151,4,0.118,5,0.086,12,1.015,21,0.532,23,1.584,24,0.011,84,0.151,85,0.008,86,0.009,87,0.008,88,0.118,104,0.956,113,0.792,118,1.108,119,0.883,137,0.899,159,1.427,165,0.371,221,1.734,223,1.835,269,0.621,620,2.477,763,4.951,764,3.467,873,3.633,1815,4.139,1933,6.183,2808,5.109,2809,4.577,2810,5.451,2811,7.413,2812,4.951,2813,7.413,2814,6.318,2815,6.21,2816,5.91,2817,7.413,2818,6.21,2819,6.21]],["title/classes/Settings.html",[88,0.081,1085,2.363]],["body/classes/Settings.html",[0,1.537,3,0.128,4,0.1,5,0.073,7,1.624,10,0.45,11,1.159,12,0.858,21,0.685,24,0.011,48,1.142,63,3.931,64,2.513,73,1.312,83,1.174,84,0.128,85,0.006,86,0.008,87,0.006,88,0.127,90,2.588,93,5.509,95,4.677,100,2.219,111,1.05,113,1.02,116,3.41,118,0.937,119,0.586,166,4.323,178,5.632,181,1.849,194,4.188,292,6.173,348,1.624,892,4.188,987,4.111,1085,4.563,1247,5.068,1396,6.173,1452,4.607,2532,5.707,2552,5.33,2820,4.188,2821,7.174,2822,6.456,2823,6.122,2824,5.869,2825,5.253,2826,6.796,2827,6.796,2828,5.253,2829,5.253,2830,5.253,2831,5.253,2832,4.611,2833,4.611]],["title/components/SettingsComponent.html",[211,0.594,336,1.324]],["body/components/SettingsComponent.html",[3,0.09,4,0.07,5,0.051,8,1.537,10,0.315,11,0.911,12,0.859,21,0.664,23,1.226,24,0.011,25,1.743,27,0.8,47,4.524,48,1.143,67,2.319,73,0.919,84,0.15,85,0.005,86,0.006,87,0.005,88,0.07,100,0.999,104,0.809,111,0.736,113,1.032,115,1.185,118,0.938,119,0.879,137,0.969,160,2.951,165,0.379,184,0.999,211,0.861,212,1.151,213,1.85,214,1.295,215,1.468,216,1.295,217,1.185,221,1.468,222,2.614,223,1.087,224,2.097,225,2.097,226,2.811,227,3.047,228,3.232,229,2.097,231,2.097,240,2.851,252,1.78,268,1.468,269,0.368,272,1.813,273,1.886,301,2.809,305,0.999,306,1.743,307,1.693,308,1.028,309,2.428,310,1.335,311,1.185,312,2.225,313,1.151,314,1.335,315,1.335,316,1.151,317,1.335,318,1.185,319,1.335,320,1.151,321,1.335,322,1.151,323,1.335,324,1.151,325,0.846,326,1.335,327,1.185,328,1.908,329,1.257,330,1.185,331,1.335,332,1.151,333,1.335,334,1.151,335,1.335,336,2.093,337,1.335,338,1.185,339,1.908,340,1.257,341,1.151,342,1.151,343,1.335,344,1.185,345,1.908,346,1.257,347,1.185,348,0.894,349,1.151,350,1.185,351,1.151,352,1.151,353,1.335,354,1.151,355,1.335,356,1.151,357,1.335,358,1.22,359,1.295,360,1.335,366,4.225,368,4.888,370,4.225,371,4.225,373,3.622,374,4.609,381,3.622,392,4.225,401,4.225,402,3.412,403,3.622,405,4.225,406,3.622,408,2.536,409,1.886,410,1.966,411,1.966,412,2.263,417,2.712,419,2.712,420,2.536,421,2.712,422,2.536,433,2.712,434,2.536,444,3.622,529,3.735,620,1.468,639,3.424,663,2.934,664,4.776,684,3.622,704,4.614,914,5.382,927,6.458,961,3.23,1052,4.614,1085,3.735,2834,3.23,2835,6.131,2836,5.256,2837,6.131,2838,5.256,2839,3.68,2840,3.68,2841,3.68,2842,3.68,2843,3.68,2844,5.871,2845,3.68,2846,3.68,2847,3.68,2848,3.68,2849,3.68,2850,3.68,2851,3.68,2852,4.93,2853,3.68,2854,3.68,2855,3.68,2856,3.68,2857,5.256,2858,5.256,2859,5.256,2860,5.256,2861,5.256,2862,5.256,2863,5.256,2864,5.256]],["title/modules/SettingsModule.html",[452,1.117,2865,3.119]],["body/modules/SettingsModule.html",[3,0.127,4,0.099,5,0.072,24,0.011,83,1.164,84,0.127,85,0.006,86,0.008,87,0.006,88,0.099,165,0.442,168,1.806,269,0.521,271,2.783,305,1.414,332,2.552,336,2.552,409,2.669,410,2.783,411,2.783,452,1.375,454,1.89,455,2.566,456,3.915,457,2.669,458,2.783,463,4.018,465,3.553,466,2.783,467,2.47,469,2.741,470,3.889,471,2.907,473,3.046,475,3.046,482,4.316,483,4.582,484,4.901,485,3.838,486,4.582,487,4.089,488,3.202,489,4.316,490,3.38,491,3.046,492,4.089,493,3.202,494,4.089,495,3.202,496,4.316,497,3.38,498,4.582,499,3.588,508,5.301,2865,6.371,2866,4.571,2867,4.571,2868,4.571,2869,5.619,2870,5.207,2871,5.207,2872,4.571,2873,4.571,2874,6.649,2875,5.207,2876,6.649,2877,5.207]],["title/modules/SettingsRoutingModule.html",[452,1.117,2869,2.916]],["body/modules/SettingsRoutingModule.html",[3,0.152,4,0.118,5,0.086,24,0.011,74,1.391,83,1.391,84,0.152,85,0.008,86,0.009,87,0.008,88,0.118,165,0.411,168,1.689,211,1.042,269,0.623,274,2.329,332,2.322,336,2.322,454,2.258,469,3.059,514,3.639,515,3.761,516,4.143,517,4.639,518,4.287,519,4.287,520,4.038,521,3.825,2584,4.959,2869,5.114,2872,5.46,2873,5.46,2878,6.22]],["title/modules/SharedModule.html",[452,1.117,463,2.085]],["body/modules/SharedModule.html",[3,0.112,4,0.088,5,0.064,24,0.011,83,1.543,84,0.112,85,0.006,86,0.008,87,0.006,88,0.088,100,1.25,165,0.432,168,1.25,269,0.461,274,1.723,305,1.25,324,2.467,327,2.735,330,2.735,338,2.735,344,2.735,352,2.656,354,2.467,452,1.216,454,1.671,455,2.268,456,3.688,457,2.36,458,2.46,463,4.393,465,3.279,466,2.46,467,2.183,469,2.529,470,3.589,471,2.57,496,3.983,497,2.988,516,3.426,909,4.041,1307,3.393,1318,3.67,1333,4.041,1334,4.041,2563,3.67,2808,5.85,2879,4.041,2880,4.041,2881,4.041,2882,5.85,2883,5.85,2884,4.603,2885,4.603,2886,4.603,2887,4.603,2888,6.135,2889,4.603,2890,4.603,2891,4.603,2892,6.135,2893,4.603,2894,4.603,2895,4.603,2896,4.603]],["title/components/SidebarComponent.html",[211,0.594,338,1.363]],["body/components/SidebarComponent.html",[3,0.119,4,0.093,5,0.067,8,1.462,10,0.417,24,0.011,27,1.057,84,0.119,85,0.006,86,0.008,87,0.006,88,0.093,94,3.912,100,1.321,104,0.979,111,1.417,113,0.812,115,1.567,119,0.79,137,0.704,165,0.243,211,0.995,212,1.522,213,2.24,214,1.712,215,1.94,216,1.712,217,1.567,221,1.777,222,3.022,223,1.437,224,2.538,225,2.538,226,2.871,227,3.121,229,2.538,231,2.538,240,3.206,252,1.462,268,1.94,269,0.487,305,1.321,306,2.11,307,2.049,308,1.358,309,2.73,310,1.765,311,1.567,312,2.573,313,1.522,314,1.765,315,1.765,316,1.522,317,1.765,318,1.567,319,1.765,320,1.522,321,1.765,322,1.522,323,1.765,324,1.522,325,1.118,326,1.765,327,1.567,328,2.309,329,1.662,330,1.567,331,1.765,332,1.522,333,1.765,334,1.522,335,1.765,336,1.522,337,1.765,338,2.423,339,2.309,340,1.662,341,1.522,342,1.522,343,1.765,344,1.567,345,2.309,346,1.662,347,1.567,348,1.182,349,1.522,350,2.284,351,1.522,352,1.522,353,1.765,354,1.522,355,1.765,356,1.522,357,1.765,358,1.613,359,1.712,360,1.765,529,3.552,684,4.384,726,3.912,1085,3.552,1185,3.552,2897,4.269,2898,7.09,2899,6.362,2900,4.864,2901,4.864,2902,6.362]],["title/components/SidebarStubComponent.html",[211,0.594,340,1.446]],["body/components/SidebarStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.52,24,0.011,27,1.122,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.402,115,1.663,119,0.813,165,0.258,211,1.116,212,1.615,213,2.328,214,2.568,216,1.818,217,1.663,223,1.526,226,2.887,227,3.143,269,0.517,305,1.402,306,2.193,307,2.13,308,1.442,309,2.792,310,1.874,311,1.663,312,2.648,313,1.615,314,1.874,315,1.874,316,1.615,317,1.874,318,1.663,319,1.874,320,1.615,321,1.874,322,1.615,323,1.874,324,1.615,325,1.187,326,1.874,327,1.663,328,2.4,329,2.259,330,1.663,331,1.874,332,1.615,333,1.874,334,1.615,335,1.874,336,1.615,337,1.874,338,1.663,339,2.4,340,2.628,341,1.615,342,1.615,343,1.874,344,1.663,345,2.4,346,2.259,347,1.663,348,1.254,349,1.615,350,1.663,351,1.615,352,1.615,353,1.874,354,1.615,355,1.874,356,1.615,357,1.874,358,1.712,359,1.818,360,1.874,452,1.363,534,2.883,726,4.066,1401,3.806,1411,3.806,1412,3.806]],["title/interfaces/Signable.html",[0,0.973,2647,2.747]],["body/interfaces/Signable.html",[0,1.722,2,1.463,3,0.087,4,0.068,5,0.049,7,0.862,9,2.249,10,0.304,23,1.638,24,0.011,55,4.421,56,2.996,57,3.12,58,3.515,59,4.283,60,3.336,61,4.892,62,3.849,63,3.728,64,2.383,66,2.076,72,2.626,74,1.559,77,1.979,83,0.793,84,0.087,85,0.004,86,0.006,87,0.004,88,0.068,92,2.26,99,2.996,104,0.788,105,2.903,106,2.477,113,0.453,130,4.29,137,1.01,138,1.917,139,2.248,140,4.271,159,1.177,165,0.301,167,1.82,168,0.964,181,2.751,186,2.183,190,1.416,199,1.371,221,0.991,252,1.671,257,2.121,277,2.148,325,1.177,576,2.651,671,4.046,680,3.325,698,2.446,705,3.325,710,2.304,720,3.325,764,1.982,836,3.554,875,1.82,884,3.149,913,3.695,969,1.982,1027,4.141,1039,1.982,1191,3.355,1254,2.446,1352,2.076,2542,3.325,2617,3.325,2618,3.325,2619,2.446,2620,2.616,2621,4.43,2622,2.616,2623,2.616,2624,4.807,2625,2.616,2626,2.616,2627,5.358,2630,3.775,2631,2.616,2633,2.616,2634,3.775,2635,2.616,2642,4.85,2644,3.775,2646,3.775,2647,5.073,2649,3.53,2650,3.775,2652,3.775,2653,3.325,2654,3.775,2656,4.141,2657,2.616,2658,2.616,2659,2.616,2660,3.775,2661,2.616,2662,2.616,2663,2.616,2664,2.616,2665,2.616,2666,2.616,2667,3.775,2668,3.775,2669,2.616,2670,2.616,2671,2.446,2672,2.616,2673,3.775,2674,2.616,2675,2.616,2676,2.616,2677,2.616,2678,2.616,2679,2.616,2680,2.616,2681,2.616,2682,2.616,2683,2.616,2684,2.616,2685,3.775,2686,2.616,2687,2.616,2688,2.616,2689,2.616,2690,2.616,2691,2.616,2692,2.616,2693,2.616,2903,3.549]],["title/interfaces/Signature.html",[0,0.973,55,2.169]],["body/interfaces/Signature.html",[0,1.832,1,3.465,2,1.7,3,0.101,4,0.079,5,0.057,6,2.678,7,1.002,8,1.754,9,2.984,10,0.353,11,0.987,13,4.198,14,3.502,15,3.925,16,3.925,17,4.011,18,3.925,19,3.642,20,4.234,21,0.654,22,3.044,23,1.766,24,0.011,25,2.333,26,1.964,27,0.897,28,2.413,29,2.843,30,3.041,31,3.331,33,3.041,34,3.041,35,2.843,36,2.843,37,3.041,38,1.758,39,3.925,40,3.925,41,3.925,42,3.697,43,3.697,44,2.303,45,3.925,46,3.041,47,3.502,48,1.78,49,3.925,50,3.925,51,3.925,52,4.657,53,3.925,54,3.331,55,4.086,56,3.331,57,3.501,58,4.115,59,3.18,60,2.272,61,4.464,62,3.331,63,4.078,64,2.229,65,2.413,66,3.331,67,3.103,68,3.041,69,2.678,70,2.303,71,3.697,72,2.115,73,1.03,74,0.922,75,3.502,76,2.678,77,2.2,78,2.678,79,3.697,80,2.806,81,2.843,82,2.843,83,0.922,84,0.101,85,0.005,86,0.007,87,0.005]],["title/interfaces/Signature-1.html",[0,0.81,55,1.806,207,1.736]],["body/interfaces/Signature-1.html",[0,1.708,2,1.425,3,0.084,4,0.066,5,0.048,7,0.84,9,2.782,10,0.296,11,0.871,21,0.557,23,1.697,24,0.011,55,4.431,56,3.463,57,3.416,58,4.214,59,4.252,60,3.323,61,4.9,62,4.214,63,4.149,64,2.359,66,2.023,72,2.576,74,1.543,77,1.941,83,0.773,84,0.084,85,0.004,86,0.006,87,0.004,88,0.066,92,2.217,99,2.94,105,2.868,106,2.44,130,4.245,137,0.941,138,1.881,139,2.22,140,4.219,159,1.155,165,0.296,167,1.773,168,0.939,181,2.733,186,2.126,190,1.379,199,1.336,221,0.966,252,1.656,257,2.099,277,2.129,325,1.155,576,2.612,671,3.996,680,3.262,698,2.383,705,3.262,710,2.245,720,3.262,764,1.931,836,3.525,875,1.773,884,3.09,913,3.641,969,1.931,1027,4.08,1039,1.931,1191,3.306,1254,2.383,1352,2.023,2542,3.262,2617,3.262,2618,2.245,2619,2.383,2620,2.549,2621,4.364,2622,2.549,2623,2.549,2624,4.758,2625,2.549,2626,2.549,2627,5.31,2630,3.705,2631,2.549,2633,2.549,2634,3.705,2635,2.549,2642,4.791,2644,3.705,2646,3.705,2647,4.825,2649,3.463,2650,3.705,2652,3.705,2653,3.262,2654,3.705,2656,4.08,2657,2.549,2658,2.549,2659,2.549,2660,3.705,2661,2.549,2662,2.549,2663,2.549,2664,2.549,2665,2.549,2666,2.549,2667,3.705,2668,3.705,2669,2.549,2670,2.549,2671,2.383,2672,2.549,2673,3.705,2674,2.549,2675,2.549,2676,2.549,2677,2.549,2678,2.549,2679,2.549,2680,2.549,2681,2.549,2682,2.549,2683,2.549,2684,2.549,2685,3.705,2686,2.549,2687,2.549,2688,2.549,2689,2.549,2690,2.549,2691,2.549,2692,2.549,2693,2.549]],["title/interfaces/Signer.html",[0,0.973,130,2.602]],["body/interfaces/Signer.html",[0,1.659,2,1.3,3,0.077,4,0.06,5,0.044,7,1.51,9,2.1,10,0.27,12,1.086,21,0.57,23,1.652,24,0.011,55,4.462,56,2.747,57,2.948,58,3.282,59,4.233,60,3.347,61,4.834,62,3.637,63,3.552,64,2.271,66,1.844,72,2.407,74,1.486,77,1.814,83,0.705,84,0.077,85,0.004,86,0.006,87,0.004,88,0.06,92,2.072,99,3.282,104,0.723,105,2.743,106,2.313,113,0.889,118,1.186,119,0.741,130,4.439,137,1.117,138,2.1,139,2.271,140,4.524,159,1.079,165,0.281,167,1.616,168,0.856,181,2.669,186,1.939,190,1.258,199,1.218,221,0.881,252,1.742,257,2.255,277,2.24,325,1.079,576,2.476,671,4.285,680,3.048,698,2.173,705,3.048,710,2.047,720,3.642,764,1.76,836,3.66,875,1.616,884,3.45,913,3.45,969,1.76,1027,3.867,1039,1.76,1191,3.471,1254,2.173,1352,1.844,2542,3.642,2617,3.048,2618,4.686,2619,2.173,2620,2.324,2621,4.583,2622,2.324,2623,2.324,2624,4.581,2625,4.136,2626,4.136,2627,5.772,2628,4.122,2629,3.744,2630,4.9,2631,2.324,2633,2.324,2634,3.461,2635,2.324,2642,5.137,2644,4.136,2646,4.136,2647,5.009,2649,3.867,2650,4.136,2652,4.136,2653,3.642,2654,4.136,2656,3.867,2657,2.324,2658,3.461,2659,3.461,2660,4.136,2661,2.324,2662,2.324,2663,2.324,2664,2.324,2665,2.324,2666,2.324,2667,3.461,2668,3.461,2669,2.324,2670,2.324,2671,2.173,2672,2.324,2673,3.461,2674,2.324,2675,2.324,2676,2.324,2677,2.324,2678,2.324,2679,2.324,2680,2.324,2681,2.324,2682,2.324,2683,2.324,2684,2.324,2685,3.461,2686,2.324,2687,2.324,2688,2.324,2689,2.324,2690,2.324,2691,2.324,2692,2.324,2693,2.324,2904,3.153,2905,3.153,2906,3.153,2907,3.153,2908,3.153,2909,3.153]],["title/interfaces/Staff.html",[0,0.973,639,2.363]],["body/interfaces/Staff.html",[0,1.608,2,2.328,3,0.138,4,0.108,5,0.078,7,1.372,10,0.484,11,1.212,21,0.7,23,1.747,24,0.011,25,2.321,26,2.123,47,5.118,57,3.318,64,1.929,67,3.087,83,1.262,84,0.138,85,0.007,86,0.009,87,0.007,105,3.817,115,2.254,119,0.928,639,4.437,836,4.103,1263,4.822,2844,6.975,2910,4.957,2911,8.323,2912,7.947,2913,6.336,2914,6.997,2915,6.142]],["title/interfaces/Token.html",[0,0.973,27,0.92]],["body/interfaces/Token.html",[0,1.513,2,2.113,3,0.125,4,0.098,5,0.071,7,1.245,8,1.513,10,0.439,11,1.141,12,1.327,14,3.152,21,0.73,23,1.777,24,0.011,26,1.838,27,1.929,32,4.852,38,2.806,64,1.751,80,3.243,83,1.146,84,0.125,85,0.006,86,0.008,87,0.006,117,4.718,119,0.905,121,3.566,164,5.248,1194,4.536,1195,4.34,2913,6.117,2916,4.499,2917,8.121,2918,7.672,2919,7.672,2920,6.474,2921,6.582,2922,6.582,2923,6.582,2924,6.117,2925,6.582,2926,6.582,2927,5.126,2928,4.499]],["title/components/TokenDetailsComponent.html",[211,0.594,341,1.324]],["body/components/TokenDetailsComponent.html",[3,0.102,4,0.08,5,0.058,8,1.32,10,0.358,21,0.492,24,0.011,27,1.859,65,4.482,84,0.102,85,0.005,86,0.007,87,0.005,88,0.08,100,1.134,104,0.884,111,1.313,113,0.946,115,1.346,119,0.827,121,2.449,137,0.832,165,0.288,184,1.134,211,0.922,212,1.307,213,2.023,214,1.471,215,1.666,216,1.471,217,1.346,221,1.604,222,2.799,223,1.234,224,2.292,225,2.292,226,2.84,227,3.083,229,2.292,231,2.292,240,3.014,252,1.625,268,1.666,269,0.418,305,1.134,306,1.906,307,1.851,308,1.167,309,2.567,310,1.516,311,1.346,312,2.383,313,1.307,314,1.516,315,1.516,316,1.307,317,1.516,318,1.346,319,1.516,320,1.307,321,1.516,322,1.307,323,1.516,324,1.307,325,0.96,326,1.516,327,1.346,328,2.085,329,1.427,330,1.346,331,1.516,332,1.307,333,1.516,334,1.307,335,1.516,336,1.307,337,1.516,338,1.346,339,2.085,340,1.427,341,2.213,342,1.307,343,1.516,344,1.346,345,2.085,346,1.427,347,1.346,348,1.015,349,1.307,350,1.346,351,1.307,352,1.307,353,1.516,354,1.307,355,1.516,356,1.307,357,1.516,358,1.386,359,1.471,360,1.516,415,2.233,450,3.729,1083,2.712,1195,3.07,1262,3.533,1278,3.959,2348,4.58,2913,4.58,2920,4.58,2924,4.58,2928,5.043,2929,6.725,2930,5.647,2931,3.331,2932,5.764,2933,5.043,2934,6.725,2935,5.043,2936,5.764,2937,5.745,2938,4.177,2939,6.207,2940,3.667,2941,3.667,2942,4.58,2943,3.667,2944,4.177,2945,5.745,2946,5.745,2947,5.745,2948,5.745,2949,5.745,2950,5.745,2951,5.745,2952,5.745,2953,5.745,2954,5.745,2955,5.745,2956,5.745,2957,5.745]],["title/pipes/TokenRatioPipe.html",[1815,2.363,2882,2.916]],["body/pipes/TokenRatioPipe.html",[3,0.154,4,0.12,5,0.087,12,1.029,21,0.54,24,0.011,48,1.625,73,1.573,77,2.887,84,0.154,85,0.008,86,0.009,87,0.008,88,0.12,104,0.969,113,0.803,118,1.123,119,0.889,137,0.912,159,1.447,165,0.315,221,1.758,223,1.861,269,0.63,450,4.852,1671,4.339,1815,4.173,2809,4.641,2812,5.02,2814,6.356,2816,5.959,2882,5.151,2958,6.561,2959,5.527,2960,7.474,2961,6.296,2962,6.296,2963,6.296]],["title/classes/TokenRegistry.html",[88,0.081,2745,2.916]],["body/classes/TokenRegistry.html",[0,0.784,3,0.083,4,0.065,5,0.047,7,1.569,8,1.744,10,0.292,11,0.862,12,0.96,21,0.614,23,1.64,24,0.011,26,2.272,27,1.914,67,1.505,74,1.313,79,2.215,80,4.041,84,0.083,85,0.004,86,0.006,87,0.004,88,0.065,90,1.681,92,2.196,93,4.451,95,4.994,96,4.369,97,4.369,98,6.66,99,2.911,100,1.865,101,4.805,102,6.293,103,6.792,104,0.766,105,3.414,106,3.321,111,0.682,112,4.369,113,0.944,115,1.603,116,3.814,117,4.835,118,1.048,119,0.766,120,5.475,121,3.613,122,2.72,131,5.716,134,5.716,135,6.293,137,1.154,138,2.684,156,4.761,159,1.484,160,1.505,164,5.716,165,0.294,166,3.606,167,1.749,168,0.927,169,1.996,170,2.351,171,1.361,172,1.618,173,2.72,174,3.43,175,2.72,177,2.72,178,2.351,179,2.215,180,2.995,181,2.274,182,4.369,183,2.995,184,0.927,185,2.995,195,4.369,196,2.995,199,2.27,210,2.995,1103,1.996,1185,4.39,1236,4.193,1241,4.369,2745,3.43,2964,6.049,2965,2.72,2966,4.977,2967,7.17,2968,4.977,2969,3.412,2970,3.412,2971,4.977,2972,3.412,2973,6.901,2974,6.458,2975,3.412,2976,3.412,2977,4.977,2978,4.977,2979,3.412,2980,7.862,2981,3.412,2982,4.977,2983,3.412,2984,2.995,2985,3.412,2986,3.412,2987,3.412,2988,3.412,2989,3.412]],["title/injectables/TokenService.html",[379,2.475,894,1.182]],["body/injectables/TokenService.html",[3,0.094,4,0.074,5,0.053,10,0.332,11,0.944,12,1.118,21,0.693,23,1.568,24,0.011,26,1.08,27,1.757,48,1.487,73,1.709,74,1.783,77,2.435,84,0.094,85,0.005,86,0.007,87,0.005,88,0.074,95,3.687,104,0.838,106,3.546,111,1.26,113,1.074,118,1.22,119,0.763,121,2.687,137,1.136,138,3.134,159,1.719,160,2.403,165,0.374,184,1.958,199,3.253,204,3.396,207,1.906,252,1.252,269,0.387,277,1.862,379,3.186,415,2.068,539,2.989,546,5.025,560,1.769,654,1.835,720,4.091,894,1.521,897,1.906,911,1.906,925,5.454,960,5.664,1049,5.025,1106,2.666,1107,2.263,1109,2.511,1110,3.084,1118,2.852,1185,3.519,1195,2.91,2745,5.154,2755,5.025,2758,3.396,2990,3.396,2991,6.303,2992,6.303,2993,5.446,2994,5.446,2995,5.446,2996,5.446,2997,6.841,2998,6.841,2999,6.841,3000,5.446,3001,5.446,3002,3.869,3003,5.446,3004,3.869,3005,3.869,3006,3.869,3007,5.446,3008,3.869,3009,3.869,3010,3.869,3011,3.869,3012,3.869,3013,5.446,3014,3.869,3015,3.869,3016,3.869,3017,4.78,3018,3.869,3019,5.446,3020,3.869,3021,3.396,3022,3.869,3023,3.869,3024,3.869,3025,3.869,3026,3.869,3027,4.78,3028,3.869,3029,3.869,3030,3.869,3031,3.869,3032,3.869,3033,3.869,3034,3.396,3035,3.869,3036,4.78,3037,3.869,3038,3.396,3039,3.869,3040,3.869,3041,3.869,3042,3.869,3043,3.869,3044,3.869,3045,3.869,3046,3.869,3047,3.869,3048,3.869,3049,6.303,3050,6.303,3051,3.869,3052,3.869,3053,3.869]],["title/classes/TokenServiceStub.html",[88,0.081,3054,3.374]],["body/classes/TokenServiceStub.html",[3,0.157,4,0.123,5,0.089,10,0.552,12,1.053,21,0.552,23,1.609,24,0.011,84,0.157,85,0.008,86,0.009,87,0.008,88,0.123,90,3.174,104,1.166,113,0.822,118,1.149,119,0.845,137,0.933,159,1.481,190,3.022,534,3.597,1195,4.049,1658,4.749,2924,5.136,3054,6.04,3055,6.65,3056,7.576,3057,7.576,3058,6.442]],["title/components/TokensComponent.html",[211,0.594,342,1.324]],["body/components/TokensComponent.html",[3,0.091,4,0.071,5,0.052,8,1.22,10,0.32,11,0.919,12,1.009,21,0.666,23,1.235,24,0.011,27,1.719,48,1.154,73,0.931,84,0.151,85,0.005,86,0.006,87,0.005,88,0.071,100,1.013,104,0.817,111,0.745,113,1.035,115,1.201,118,1.102,119,0.894,121,2.868,137,0.975,160,2.969,165,0.381,184,1.013,199,1.441,211,0.867,212,1.167,213,1.868,214,1.313,215,1.487,216,1.313,217,1.201,221,1.482,222,2.633,223,1.102,224,2.117,225,2.117,226,2.814,227,3.051,228,3.263,229,2.117,231,2.117,240,2.868,252,1.786,257,1.134,268,1.487,269,0.373,272,1.837,273,1.912,301,2.836,305,1.013,306,1.76,307,1.709,308,1.041,309,2.442,310,1.353,311,1.201,312,2.242,313,1.167,314,1.353,315,1.353,316,1.167,317,1.353,318,1.201,319,1.353,320,1.167,321,1.353,322,1.167,323,1.353,324,1.167,325,0.857,326,1.353,327,1.201,328,1.926,329,1.274,330,1.201,331,1.353,332,1.167,333,1.353,334,1.167,335,1.353,336,1.167,337,1.353,338,1.201,339,1.926,340,1.274,341,1.167,342,2.106,343,1.353,344,1.201,345,1.926,346,1.274,347,1.201,348,0.906,349,1.167,350,1.201,351,1.167,352,1.167,353,1.353,354,1.167,355,1.353,356,1.167,357,1.353,358,1.237,359,1.313,360,1.353,366,4.257,370,4.257,371,4.257,373,3.657,374,4.637,379,4.323,381,3.657,392,4.257,401,4.257,402,3.444,403,3.657,405,4.257,406,3.657,408,2.57,409,1.912,410,1.993,411,1.993,412,2.293,415,1.993,417,2.749,419,2.749,420,2.57,421,2.749,422,2.57,429,2.749,430,1.986,433,2.749,434,2.57,444,3.657,450,3.444,620,1.487,1185,4.53,1195,3.596,2920,5.365,2943,3.273,3017,3.273,3027,4.658,3034,4.658,3036,4.658,3038,4.658,3059,3.273,3060,6.177,3061,5.306,3062,6.177,3063,5.306,3064,3.729,3065,5.306,3066,3.729,3067,3.729,3068,3.729,3069,5.306,3070,3.729,3071,3.729,3072,3.729,3073,3.729,3074,3.729,3075,3.729,3076,3.729,3077,3.729,3078,3.729,3079,3.729]],["title/modules/TokensModule.html",[452,1.117,3080,3.119]],["body/modules/TokensModule.html",[3,0.127,4,0.099,5,0.072,24,0.011,83,1.167,84,0.127,85,0.006,86,0.008,87,0.006,88,0.099,165,0.442,168,1.809,269,0.523,305,1.418,341,2.553,342,2.553,409,2.677,410,2.791,411,2.791,452,1.379,454,1.895,455,2.573,456,3.92,457,2.677,458,2.791,463,4.021,465,3.56,466,2.791,467,2.477,469,2.746,470,3.897,471,2.916,473,3.055,475,3.055,478,3.599,482,4.324,483,4.59,484,4.91,485,3.85,486,4.59,487,4.096,488,3.211,489,4.324,490,3.39,491,3.055,492,4.096,493,3.211,494,4.096,495,3.211,496,4.324,497,3.39,503,4.59,504,3.39,2930,3.85,3080,6.374,3081,4.584,3082,4.584,3083,4.584,3084,5.623,3085,5.222,3086,5.222,3087,4.584,3088,4.584,3089,6.661,3090,6.661,3091,5.222,3092,6.661,3093,5.222]],["title/modules/TokensRoutingModule.html",[452,1.117,3084,2.916]],["body/modules/TokensRoutingModule.html",[3,0.153,4,0.12,5,0.087,24,0.011,67,2.773,74,1.405,83,1.405,84,0.153,85,0.008,86,0.009,87,0.008,88,0.12,165,0.413,168,1.707,211,1.048,269,0.629,274,2.353,341,2.336,342,2.336,454,2.281,469,3.078,478,4.331,514,3.677,515,3.778,516,4.169,517,4.368,521,3.865,2930,4.633,3084,5.146,3087,5.517,3088,5.517,3094,6.285]],["title/components/TopbarComponent.html",[211,0.594,344,1.363]],["body/components/TopbarComponent.html",[3,0.123,4,0.096,5,0.07,8,1.497,10,0.432,24,0.011,27,1.096,84,0.123,85,0.006,86,0.008,87,0.006,88,0.096,100,1.369,104,1.002,111,1.442,113,0.831,115,1.623,119,0.804,137,0.73,165,0.252,211,1.013,212,1.577,213,2.292,214,1.774,215,2.01,216,1.774,217,1.623,221,1.818,222,3.075,223,1.489,224,2.597,225,2.597,226,2.877,227,3.13,229,2.597,231,2.597,240,3.25,252,1.497,268,2.01,269,0.504,305,1.369,306,2.16,307,2.097,308,1.408,309,2.767,310,1.829,311,1.623,312,2.618,313,1.577,314,1.829,315,1.829,316,1.577,317,1.829,318,1.623,319,1.829,320,1.577,321,1.829,322,1.577,323,1.829,324,1.577,325,1.158,326,1.829,327,1.623,328,2.363,329,1.722,330,1.623,331,1.829,332,1.577,333,1.829,334,1.577,335,1.829,336,1.577,337,1.829,338,1.623,339,2.363,340,1.722,341,1.577,342,1.577,343,1.829,344,2.456,345,2.363,346,1.722,347,1.623,348,1.225,349,1.577,350,1.623,351,1.577,352,1.577,353,1.829,354,1.577,355,1.829,356,1.577,357,1.829,358,1.672,359,1.774,360,1.829,1412,4.8,3095,4.424,3096,7.213,3097,6.511,3098,5.04,3099,5.04]],["title/components/TopbarStubComponent.html",[211,0.594,346,1.446]],["body/components/TopbarStubComponent.html",[3,0.126,4,0.098,5,0.071,8,1.52,24,0.011,27,1.122,84,0.178,85,0.006,86,0.008,87,0.006,88,0.139,100,1.402,115,1.663,119,0.813,165,0.258,211,1.116,212,1.615,213,2.328,214,2.568,216,1.818,217,1.663,223,1.526,226,2.887,227,3.143,269,0.517,305,1.402,306,2.193,307,2.13,308,1.442,309,2.792,310,1.874,311,1.663,312,2.648,313,1.615,314,1.874,315,1.874,316,1.615,317,1.874,318,1.663,319,1.874,320,1.615,321,1.874,322,1.615,323,1.874,324,1.615,325,1.187,326,1.874,327,1.663,328,2.4,329,2.259,330,1.663,331,1.874,332,1.615,333,1.874,334,1.615,335,1.874,336,1.615,337,1.874,338,1.663,339,2.4,340,2.259,341,1.615,342,1.615,343,1.874,344,1.663,345,2.4,346,2.628,347,1.663,348,1.254,349,1.615,350,1.663,351,1.615,352,1.615,353,1.874,354,1.615,355,1.874,356,1.615,357,1.874,358,1.712,359,1.818,360,1.874,452,1.363,534,2.883,726,3.175,1401,3.806,1411,3.806,1412,4.874]],["title/interfaces/Transaction.html",[0,0.973,348,1.028]],["body/interfaces/Transaction.html",[0,1.884,1,3.984,2,1.808,3,0.107,4,0.084,5,0.061,7,1.065,8,1.733,9,1.642,10,0.509,11,1.029,12,0.97,21,0.731,23,1.704,24,0.011,25,1.455,26,2.289,27,1.854,38,3.591,48,1.569,64,2.466,80,2.161,83,0.98,84,0.107,85,0.005,86,0.007,87,0.005,117,2.697,119,0.662,121,3.389,165,0.22,257,1.333,348,2.155,430,1.642,748,4.155,856,4.14,888,2.697,1091,4.669,1170,3.022,1171,3.233,1172,3.233,1173,3.233,1174,3.022,1175,3.022,1176,5.16,1177,4.378,1178,4.378,1179,4.973,1180,4.378,1181,5.319,1182,3.233,1183,5.249,1184,4.972,1185,3.316,1186,4.378,1187,3.022,1188,3.233,1189,2.847,1190,2.847,1191,2.449,1192,3.233,1193,3.233,1194,3.022,1195,3.174]],["title/components/TransactionDetailsComponent.html",[211,0.594,347,1.363]],["body/components/TransactionDetailsComponent.html",[3,0.065,4,0.097,5,0.037,8,0.954,10,0.435,11,0.719,12,0.678,21,0.604,23,1.549,24,0.011,27,1.484,65,3.346,84,0.065,85,0.003,86,0.005,87,0.003,88,0.051,100,0.728,104,0.639,106,3.152,111,0.83,113,1.009,115,0.863,118,0.74,119,0.84,121,3.302,137,0.988,138,2.64,165,0.328,184,0.728,199,2.528,211,0.713,212,0.839,213,1.461,214,0.944,215,1.069,216,0.944,217,0.863,221,1.159,222,2.165,223,0.792,224,1.656,225,1.656,226,2.725,227,2.94,229,1.656,231,1.656,240,2.438,249,3.654,252,1.504,257,0.815,268,1.069,269,0.268,272,1.321,273,1.374,274,1.003,275,1.976,276,1.976,277,1.69,305,0.728,306,1.377,307,1.337,308,0.749,309,2.076,310,0.973,311,0.863,312,1.844,313,0.839,314,0.973,315,0.973,316,0.839,317,0.973,318,0.863,319,0.973,320,0.839,321,0.973,322,0.839,323,0.973,324,0.839,325,0.616,326,0.973,327,0.863,328,1.506,329,0.916,330,0.863,331,0.973,332,0.839,333,0.973,334,0.839,335,0.973,336,0.839,337,0.973,338,0.863,339,1.506,340,0.916,341,0.839,342,0.839,343,0.973,344,0.863,345,1.506,346,0.916,347,1.842,348,1.981,349,0.839,350,1.842,351,0.839,352,0.839,353,0.973,354,0.839,355,0.973,356,0.839,357,0.973,358,0.889,359,0.944,360,0.973,372,5.441,379,3.993,429,1.976,430,1.554,431,2.137,432,2.137,443,5.636,448,3.06,450,2.694,511,2.137,512,1.847,667,4.197,748,1.432,856,2.552,868,2.137,1083,1.74,1175,4.51,1179,4.51,1183,4.248,1184,4.024,1187,2.86,1189,2.694,1190,2.694,1195,3.497,1262,2.552,1278,2.86,1620,4.248,2542,1.74,2931,2.137,2932,4.459,2933,3.643,2934,5.991,2935,3.643,2936,4.459,2939,5.02,2940,2.353,2941,2.353,2942,3.309,3100,7.007,3101,6.364,3102,5.08,3103,5.08,3104,6.187,3105,5.08,3106,4.151,3107,5.72,3108,5.72,3109,5.72,3110,5.72,3111,5.08,3112,5.72,3113,4.151,3114,2.68,3115,2.68,3116,4.151,3117,2.68,3118,2.68,3119,2.68,3120,2.68,3121,2.68,3122,2.68,3123,2.68,3124,2.68,3125,2.68,3126,2.137,3127,2.68,3128,2.68,3129,5.08,3130,2.68,3131,2.68,3132,2.68,3133,2.68,3134,2.68,3135,2.68,3136,2.68,3137,2.68,3138,2.68,3139,2.68,3140,2.68,3141,2.68,3142,2.68,3143,2.68,3144,2.68,3145,2.68,3146,2.68,3147,2.353,3148,2.68,3149,2.68,3150,2.353,3151,2.68,3152,5.72,3153,5.72,3154,3.309,3155,4.151,3156,3.309,3157,3.643,3158,4.151,3159,4.151,3160,4.151,3161,3.643,3162,4.151,3163,4.151,3164,5.72,3165,5.72,3166,5.72,3167,4.151,3168,4.151,3169,4.151,3170,5.72,3171,4.151,3172,4.151,3173,4.151,3174,4.151,3175,5.72,3176,4.151]],["title/injectables/TransactionService.html",[667,2.602,894,1.182]],["body/injectables/TransactionService.html",[3,0.066,4,0.052,5,0.038,8,1.324,9,1.569,10,0.233,11,0.726,12,1.157,21,0.636,22,1.451,23,1.586,24,0.011,25,0.9,26,2.336,48,1.54,52,1.516,73,1.438,74,1.854,75,3.541,77,1.619,84,0.066,85,0.006,86,0.005,87,0.003,88,0.052,95,2.995,104,0.645,106,3.161,111,0.838,113,1.012,118,1.263,119,0.789,121,2.923,137,1.052,138,2.651,159,1.512,165,0.411,166,3.828,169,1.588,170,1.871,171,1.083,172,1.287,174,1.871,179,1.762,184,1.69,199,2.736,207,1.337,248,4.011,252,1.324,269,0.272,275,2.001,276,2.001,277,1.944,289,2.24,291,3.324,296,4.082,325,1.512,348,1.512,350,1.649,413,1.588,414,1.451,415,1.451,424,3.529,426,3.149,539,2.952,560,1.241,576,3.025,654,1.287,667,2.578,697,3.09,748,2.24,772,1.516,894,1.171,897,1.337,911,1.337,925,4.591,957,3.342,960,2.001,969,1.516,972,1.871,973,2.383,975,2.383,985,2.383,987,1.669,1010,2.383,1039,1.516,1043,3.774,1049,4.082,1080,4.591,1081,4.849,1091,2.34,1106,1.871,1107,2.452,1109,1.762,1110,2.164,1118,2.001,1141,3.342,1143,3.679,1157,3.679,1174,1.871,1190,1.762,1516,2.383,1517,5.774,2624,1.871,2671,1.871,2755,4.082,3021,2.383,3154,3.342,3156,3.342,3157,2.383,3161,3.679,3177,2.164,3178,5.12,3179,5.12,3180,4.192,3181,4.192,3182,4.192,3183,3.679,3184,5.758,3185,3.679,3186,3.679,3187,5.12,3188,4.192,3189,4.192,3190,7.281,3191,2.715,3192,4.192,3193,2.715,3194,2.715,3195,2.715,3196,2.715,3197,2.715,3198,3.679,3199,2.715,3200,3.679,3201,2.715,3202,2.715,3203,5.758,3204,5.758,3205,2.715,3206,5.12,3207,4.192,3208,2.715,3209,2.715,3210,4.192,3211,2.715,3212,2.715,3213,2.715,3214,2.715,3215,2.715,3216,2.383,3217,2.715,3218,2.383,3219,2.715,3220,2.715,3221,2.715,3222,2.715,3223,2.715,3224,4.192,3225,2.383,3226,2.164,3227,2.715,3228,2.715,3229,2.715,3230,4.192,3231,4.192,3232,2.715,3233,2.383,3234,5.12,3235,4.192,3236,5.12,3237,5.12,3238,2.715,3239,5.12,3240,5.12,3241,4.192,3242,2.715,3243,3.679,3244,2.715,3245,2.715,3246,2.715,3247,2.715,3248,2.715,3249,2.715,3250,2.715,3251,4.192,3252,4.192,3253,4.192,3254,2.715,3255,2.715,3256,2.715,3257,2.715,3258,2.715,3259,2.715,3260,4.192,3261,2.715,3262,4.192,3263,2.383,3264,4.192,3265,2.715,3266,2.715,3267,2.715,3268,2.715,3269,2.715,3270,2.715,3271,2.715,3272,2.715,3273,2.715,3274,2.715,3275,2.715,3276,2.715,3277,2.715,3278,2.715,3279,2.715,3280,2.715,3281,2.715,3282,2.715,3283,2.715,3284,2.715,3285,2.715,3286,2.715,3287,2.715,3288,2.715,3289,2.715,3290,2.715,3291,2.715,3292,2.715,3293,2.715,3294,2.715,3295,2.715,3296,2.715,3297,2.715,3298,2.715,3299,2.715,3300,2.715,3301,2.715,3302,2.715,3303,2.715,3304,2.715,3305,2.715,3306,2.715,3307,2.715,3308,2.715,3309,2.715,3310,2.715,3311,2.715,3312,2.715,3313,2.715,3314,2.715,3315,2.715,3316,2.715]],["title/classes/TransactionServiceStub.html",[88,0.081,3317,3.374]],["body/classes/TransactionServiceStub.html",[3,0.144,4,0.112,5,0.081,10,0.504,12,1.265,21,0.664,24,0.011,26,2.417,84,0.144,85,0.007,86,0.009,87,0.007,88,0.112,90,2.9,104,1.105,113,0.988,118,1.381,119,0.863,137,1.121,159,1.353,165,0.295,190,3.216,252,1.853,348,1.43,534,3.286,539,3.673,560,2.691,748,3.146,1080,4.693,1081,5.708,1141,5.722,3183,6.3,3185,6.3,3186,6.3,3190,6.797,3198,6.3,3200,6.3,3317,5.722,3318,7.077,3319,5.886,3320,5.886,3321,5.167,3322,5.886,3323,5.886]],["title/components/TransactionsComponent.html",[211,0.594,349,1.324]],["body/components/TransactionsComponent.html",[3,0.073,4,0.057,5,0.042,8,1.043,10,0.258,11,0.786,12,0.892,21,0.711,23,1.421,24,0.011,26,1.267,27,0.655,48,1.628,73,1.518,84,0.133,85,0.004,86,0.006,87,0.004,88,0.057,100,0.818,104,0.698,111,0.907,113,1.053,115,0.97,118,0.974,119,0.764,137,0.992,160,3.228,165,0.366,184,0.818,199,1.163,211,0.766,212,0.942,213,1.597,214,1.06,215,1.201,216,1.06,217,0.97,221,1.267,222,2.327,223,0.89,224,1.81,225,1.81,226,2.759,227,2.982,228,2.79,229,1.81,231,1.81,240,2.59,248,4.159,252,1.805,257,0.915,268,1.201,269,0.301,272,1.484,273,1.544,277,1.613,289,2.424,291,1.955,301,2.424,305,0.818,306,1.505,307,1.461,308,0.841,309,2.205,310,1.093,311,0.97,312,1.981,313,0.942,314,1.093,315,1.093,316,0.942,317,1.093,318,0.97,319,1.093,320,0.942,321,1.093,322,0.942,323,1.093,324,0.942,325,0.692,326,1.093,327,0.97,328,1.646,329,1.029,330,0.97,331,1.093,332,0.942,333,1.093,334,0.942,335,1.093,336,0.942,337,1.093,338,0.97,339,1.646,340,1.029,341,0.942,342,0.942,343,1.093,344,0.97,345,1.646,346,1.029,347,0.97,348,1.853,349,1.901,350,2.529,351,0.942,352,0.942,353,1.093,354,0.942,355,1.093,356,0.942,357,1.093,358,0.999,359,1.06,360,1.093,366,3.761,367,4.791,369,4.791,370,3.761,371,3.761,372,5.668,373,3.126,374,4.187,379,4.159,381,3.126,392,3.761,394,4.478,396,4.844,398,3.617,399,3.982,401,3.761,402,2.945,403,3.126,405,3.761,406,3.126,408,2.075,409,1.544,410,1.609,411,1.609,412,1.852,413,1.761,414,1.609,415,1.609,420,3.126,422,3.126,424,2.075,426,1.852,427,1.955,429,2.22,430,1.698,431,2.401,432,2.401,434,2.075,443,5.05,444,3.126,448,3.344,450,3.944,667,4.212,957,2.401,1077,2.643,1183,3.944,1184,3.736,2530,2.643,2598,3.617,3150,2.643,3154,3.617,3156,3.617,3233,2.643,3263,3.982,3324,2.643,3325,5.458,3326,5.458,3327,4.536,3328,5.458,3329,5.458,3330,5.458,3331,5.458,3332,6.075,3333,6.075,3334,4.536,3335,4.536,3336,3.011,3337,3.011,3338,3.011,3339,3.011,3340,3.011,3341,4.536,3342,3.011,3343,3.011,3344,3.011,3345,3.011,3346,3.011,3347,3.011,3348,3.011,3349,3.011,3350,3.011,3351,3.011,3352,3.011,3353,4.536,3354,3.011,3355,3.011,3356,4.536,3357,4.536,3358,3.011,3359,3.011,3360,4.536,3361,4.536,3362,3.011,3363,3.011,3364,6.075,3365,4.536,3366,4.536,3367,4.536,3368,4.536,3369,4.536,3370,4.536,3371,4.536]],["title/modules/TransactionsModule.html",[452,1.117,464,2.916]],["body/modules/TransactionsModule.html",[3,0.126,4,0.098,5,0.071,24,0.011,83,1.629,84,0.126,85,0.006,86,0.008,87,0.006,88,0.098,165,0.441,168,1.792,269,0.515,305,1.398,347,2.78,349,2.544,409,2.639,410,2.751,411,2.751,452,1.359,454,1.868,455,2.536,456,3.894,457,2.639,458,2.751,463,4.005,464,5.975,465,3.527,466,2.751,467,2.442,469,2.721,470,3.861,471,2.874,473,3.011,475,3.011,478,3.548,482,4.285,483,4.549,484,4.865,485,3.795,486,4.549,487,4.059,488,3.166,489,4.285,490,3.342,491,3.011,492,4.059,493,3.166,494,4.059,495,3.166,496,4.285,497,3.342,498,4.549,499,3.548,503,4.549,504,3.342,510,5.794,511,4.104,512,3.548,3101,4.104,3372,4.519,3373,4.519,3374,4.519,3375,4.519,3376,5.602,3377,5.148,3378,5.148,3379,4.519,3380,5.148]],["title/modules/TransactionsRoutingModule.html",[452,1.117,3376,2.916]],["body/modules/TransactionsRoutingModule.html",[3,0.157,4,0.123,5,0.089,24,0.011,74,1.443,83,1.443,84,0.157,85,0.008,86,0.009,87,0.008,88,0.123,165,0.403,168,1.753,211,0.906,269,0.646,274,2.416,349,2.373,454,2.342,469,3.126,514,3.775,515,3.82,516,4.235,517,3.775,521,3.969,3376,5.227,3379,5.665,3381,6.454]],["title/interfaces/Tx.html",[0,0.973,1091,2.363]],["body/interfaces/Tx.html",[0,1.897,1,3.604,2,1.869,3,0.111,4,0.086,5,0.063,7,1.102,8,1.574,9,2.273,10,0.587,11,1.052,21,0.687,23,1.667,24,0.011,25,1.504,26,2.392,27,1.813,38,3.473,48,0.986,64,2.34,80,2.234,83,1.014,84,0.111,85,0.006,86,0.007,87,0.006,117,2.788,119,0.677,121,3.251,165,0.227,257,2.082,348,2.152,430,2.273,748,4.195,856,5.01,888,3.735,1091,4.477,1170,3.125,1171,3.342,1172,3.342,1173,3.342,1174,3.125,1175,3.125,1176,4.951,1177,4.477,1178,4.477,1179,4.719,1180,4.477,1181,5.392,1182,3.342,1183,4.446,1184,4.211,1185,2.532,1186,3.342,1187,5.041,1188,4.477,1189,4.749,1190,3.943,1191,3.391,1192,5.392,1193,5.392,1194,3.125,1195,3.246]],["title/interfaces/TxToken.html",[0,0.973,1176,2.747]],["body/interfaces/TxToken.html",[0,1.906,1,3.639,2,1.915,3,0.113,4,0.088,5,0.064,7,1.128,8,1.593,9,1.739,10,0.529,11,1.069,21,0.659,23,1.718,24,0.011,25,1.541,26,2.253,27,1.868,38,3.492,48,1.01,64,2.524,80,3.041,83,1.038,84,0.113,85,0.006,86,0.008,87,0.006,117,3.795,119,0.881,121,3.535,165,0.233,257,1.412,348,2.139,430,1.739,748,4.224,856,4.262,888,2.856,1091,4.413,1170,3.201,1171,3.424,1172,3.424,1173,3.424,1174,3.201,1175,3.201,1176,5.131,1177,4.55,1178,4.55,1179,4.777,1180,4.55,1181,5.109,1182,3.424,1183,4.5,1184,4.262,1185,2.593,1186,3.424,1187,3.201,1188,3.424,1189,3.015,1190,3.015,1191,2.593,1192,3.424,1193,3.424,1194,4.253,1195,4.224]],["title/pipes/UnixDatePipe.html",[1815,2.363,2883,2.916]],["body/pipes/UnixDatePipe.html",[3,0.153,4,0.12,5,0.087,12,1.025,21,0.538,24,0.011,26,2.223,84,0.153,85,0.008,86,0.009,87,0.008,88,0.12,104,0.966,113,0.8,118,1.119,119,0.887,137,0.909,159,1.442,165,0.314,184,1.704,221,1.752,223,1.854,269,0.628,448,5.498,1189,4.073,1815,4.165,1933,5.868,2809,4.625,2812,5.002,2814,6.346,2816,5.947,2883,5.14,3382,6.547,3383,5.508,3384,7.459,3385,6.274,3386,6.274,3387,6.274,3388,6.274]],["title/classes/UserServiceStub.html",[88,0.081,3389,3.374]],["body/classes/UserServiceStub.html",[3,0.076,4,0.059,5,0.043,10,0.266,11,0.803,12,1.007,14,4.796,17,4.796,19,1.73,21,0.706,22,1.656,23,1.508,24,0.011,25,2.827,26,1.843,27,1.008,38,1.976,42,2.012,43,2.012,48,1.008,67,3.791,73,1.158,77,2.381,84,0.076,85,0.004,86,0.006,87,0.004,88,0.059,90,1.527,104,0.714,113,0.883,118,1.099,119,0.906,121,3.325,137,0.893,139,2.452,148,3.167,159,1.417,165,0.155,171,1.236,190,2.863,207,3.786,289,3.294,302,5.184,396,6.219,430,2.92,522,4.958,524,5.556,525,5.234,529,2.588,534,1.73,539,2.634,560,1.417,571,3.605,573,3.696,625,6.3,626,5.41,836,1.47,859,4.001,1103,4.051,1652,3.696,1654,3.696,1655,4.914,1656,6.126,1657,4.914,1658,5.44,1659,3.696,1660,4.495,1661,3.696,1662,4.914,1663,3.696,1664,4.248,1665,3.696,1666,3.696,1667,3.696,1668,4.543,1669,3.696,1670,3.696,1671,3.194,1672,3.696,2049,3.696,2144,3.696,2174,3.696,2331,2.471,2368,3.696,2436,2.471,2444,4.428,2495,5.723,2496,4.914,2522,4.069,2852,4.094,3321,2.72,3389,3.696,3390,6.3,3391,4.635,3392,4.635,3393,3.099,3394,5.553,3395,5.553,3396,5.553,3397,7.8,3398,5.553,3399,5.553,3400,7.8,3401,7.8,3402,4.635,3403,4.635,3404,4.635,3405,4.635,3406,4.635,3407,4.635,3408,4.635,3409,4.635,3410,4.635,3411,4.635,3412,4.635,3413,4.635,3414,4.635,3415,4.635,3416,4.635,3417,4.635,3418,4.635,3419,4.635,3420,4.635,3421,4.635,3422,4.635,3423,4.635,3424,3.099,3425,4.635,3426,3.099,3427,4.635,3428,3.099,3429,3.099,3430,4.635,3431,3.099,3432,3.099,3433,3.099,3434,3.099,3435,3.099,3436,3.099,3437,3.099,3438,3.099,3439,3.099,3440,3.099,3441,2.72,3442,3.099]],["title/interfaces/W3.html",[0,0.973,2823,3.119]],["body/interfaces/W3.html",[0,1.745,2,2.32,3,0.137,4,0.107,5,0.078,7,1.368,10,0.482,11,1.21,21,0.598,24,0.011,63,4.361,64,2.594,83,1.258,84,0.137,85,0.007,86,0.009,87,0.007,88,0.107,93,5.47,95,4.085,100,2.259,116,4.533,166,4.557,178,5.731,181,1.982,194,5.567,292,5.567,348,1.368,892,5.567,987,3.461,1085,4.239,1247,5.624,1396,5.567,1452,3.879,2532,5.148,2552,4.488,2820,4.488,2821,6.664,2822,4.941,2823,6.016,2824,4.941,2826,6.13,2827,6.13,2832,4.941,2833,6.13]],["title/injectables/Web3Service.html",[169,2.475,894,1.182]],["body/injectables/Web3Service.html",[3,0.148,4,0.116,5,0.084,10,0.52,11,1.266,21,0.52,24,0.011,84,0.148,85,0.007,86,0.009,87,0.007,88,0.116,104,1.125,105,2.676,111,1.568,113,1.001,137,0.878,159,1.394,165,0.393,166,4.856,169,4.275,171,2.419,172,2.876,184,1.647,269,0.607,277,2.318,654,2.876,894,2.041,897,2.988,911,2.988,1279,6.241,3443,5.323,3444,8.144,3445,7.308,3446,6.064,3447,7.845,3448,6.064]],["title/coverage.html",[3449,4.621]],["body/coverage.html",[0,1.864,1,1.441,5,0.04,6,4.178,21,0.251,22,2.372,24,0.011,27,0.636,52,1.634,55,2.276,71,1.899,75,1.799,77,3.4,85,0.004,86,0.005,87,0.004,88,0.149,89,2.157,91,4.276,130,1.799,166,2.479,169,1.711,171,2.14,174,3.059,184,0.794,190,2.14,211,1.176,212,0.915,218,3.896,219,2.157,220,2.568,248,1.711,260,1.799,289,4.733,308,1.798,311,0.942,313,0.915,316,0.915,318,0.942,320,0.915,322,0.915,324,0.915,325,1.376,327,0.942,329,1,330,0.942,332,0.915,334,0.915,336,0.915,338,0.942,340,1,341,0.915,342,0.915,344,0.942,346,1,347,0.942,348,0.711,349,0.915,352,0.915,354,0.915,356,0.915,358,0.97,361,2.568,365,2.016,379,1.711,412,1.799,452,1.416,477,2.333,480,2.157,522,1.799,523,2.568,531,2.333,532,2.568,533,1.711,534,4.049,568,2.568,571,1.899,576,1.291,598,1.899,639,1.634,653,2.568,664,1.899,665,2.157,666,1.899,667,1.799,748,1.564,757,2.016,758,1.899,759,2.016,760,2.016,773,2.157,774,2.016,780,2.333,810,2.568,836,2.544,847,1.899,861,2.73,863,2.568,894,2.179,912,2.568,913,1.799,970,2.333,972,2.016,1068,2.568,1069,2.568,1085,1.634,1091,1.634,1109,1.899,1170,4.126,1176,1.899,1196,2.568,1197,2.568,1200,2.016,1201,2.157,1203,2.157,1205,2.157,1244,2.568,1245,2.568,1275,2.333,1276,2.568,1306,2.568,1307,2.157,1308,2.568,1322,2.568,1323,2.568,1341,3.502,1343,2.568,1400,2.568,1411,3.954,1413,3.954,1414,3.954,1480,5.218,1484,2.568,1485,2.568,1497,2.568,1506,2.568,1509,2.157,1549,2.568,1565,2.568,1602,3.539,1603,2.568,1629,3.539,1638,2.157,1639,5.921,1640,5.921,1815,2.995,2430,2.333,2497,2.333,2562,2.568,2563,2.333,2564,2.568,2583,2.568,2617,1.899,2618,4.57,2619,4.126,2647,1.899,2694,2.568,2722,2.568,2742,2.568,2745,2.016,2753,2.333,2778,2.333,2779,2.568,2793,2.568,2794,2.333,2808,2.016,2810,2.568,2820,3.539,2823,2.157,2834,2.568,2882,2.016,2883,2.016,2897,2.568,2910,2.568,2916,2.568,2929,2.568,2930,2.157,2931,4.276,2958,2.568,2959,2.568,2964,4.276,2965,4.276,2973,2.568,2990,2.568,3054,2.333,3055,2.568,3059,2.568,3095,2.568,3100,2.568,3101,2.333,3126,2.333,3177,3.539,3317,2.333,3318,2.568,3324,2.568,3382,2.568,3383,2.568,3389,2.333,3390,2.568,3443,2.568,3449,2.333,3450,2.926,3451,2.926,3452,5.364,3453,8.305,3454,8.379,3455,4.439,3456,7.696,3457,2.568,3458,2.568,3459,2.568,3460,2.568,3461,2.568,3462,5.364,3463,2.568,3464,4.774,3465,6.436,3466,7.974,3467,2.568,3468,2.568,3469,4.276,3470,2.568,3471,2.568,3472,2.568,3473,3.896,3474,3.896,3475,2.568,3476,2.568,3477,2.568,3478,2.568,3479,2.926,3480,4.439,3481,5.364,3482,4.708,3483,4.439,3484,2.568,3485,2.926,3486,2.926,3487,2.926,3488,4.439,3489,4.439,3490,6.436,3491,5.987,3492,4.439,3493,5.364,3494,3.896,3495,2.926,3496,4.439,3497,2.926,3498,2.926,3499,2.926,3500,5.987,3501,4.439,3502,2.926,3503,2.926,3504,2.568,3505,2.568,3506,2.568,3507,2.568,3508,2.926,3509,2.926,3510,2.926]],["title/dependencies.html",[455,2.51,3511,3.524]],["body/dependencies.html",[9,2.221,22,3.171,24,0.011,52,3.313,85,0.007,86,0.009,87,0.007,166,3.313,269,0.594,271,3.171,274,2.221,455,2.924,457,3.042,471,3.313,560,2.713,602,5.209,687,4.731,688,3.852,763,5.751,764,4.028,777,4.731,778,4.731,987,3.649,1021,4.09,1106,4.09,1107,4.22,1347,3.471,3216,5.209,3218,5.209,3226,4.731,3512,7.607,3513,5.934,3514,7.213,3515,5.934,3516,5.934,3517,5.934,3518,5.934,3519,5.934,3520,5.934,3521,5.934,3522,5.934,3523,5.934,3524,5.934,3525,5.934,3526,5.934,3527,5.934,3528,5.934,3529,5.934,3530,5.934,3531,5.934,3532,5.934,3533,5.934,3534,5.934,3535,5.934,3536,5.934,3537,5.934,3538,5.934]],["title/miscellaneous/functions.html",[2535,4.062,3539,2.597]],["body/miscellaneous/functions.html",[5,0.101,7,1.949,9,3.002,10,0.389,12,1.349,21,0.673,22,3.911,24,0.011,26,1.268,32,3.346,57,2.153,64,2.5,83,1.015,85,0.006,86,0.007,87,0.006,92,2.682,101,3.946,113,0.775,118,1.472,119,0.93,131,4.846,132,3.985,134,4.846,137,1.218,138,2.275,139,1.551,140,2.947,150,4.846,160,3.68,207,2.237,252,1.575,257,1.38,325,1.575,412,3.738,557,3.128,563,5.335,970,4.846,1103,3.556,1262,2.792,1347,2.656,1413,3.346,1414,4.481,1481,3.619,1660,3.946,1671,3.128,2535,3.619,2737,6.015,2753,5.463,3126,4.846,3147,3.985,3457,3.985,3458,5.335,3459,5.335,3460,3.985,3461,5.335,3463,3.985,3464,6.083,3467,3.985,3468,5.335,3469,3.619,3470,5.335,3471,5.335,3473,3.985,3474,6.015,3475,5.335,3476,5.335,3477,3.985,3478,5.335,3539,3.346,3540,4.54,3541,4.54,3542,4.54,3543,4.54,3544,5.335,3545,6.078,3546,4.54,3547,4.54,3548,4.54,3549,6.078,3550,4.54,3551,4.54,3552,4.54,3553,4.54,3554,5.335,3555,6.853,3556,4.54,3557,6.078,3558,4.54,3559,3.985,3560,3.985,3561,4.54,3562,6.078,3563,6.853,3564,7.63,3565,6.424,3566,4.54,3567,4.54,3568,4.54,3569,4.54,3570,4.54,3571,4.54,3572,4.54,3573,4.54,3574,4.54,3575,4.54,3576,3.985,3577,4.54,3578,4.54,3579,4.54,3580,6.078,3581,4.54,3582,4.54,3583,4.54,3584,4.846,3585,4.54,3586,6.078,3587,7.319,3588,5.335,3589,6.078,3590,4.54,3591,4.54,3592,6.078,3593,6.078,3594,4.54]],["title/index.html",[10,0.302,3595,3.093,3596,3.093]],["body/index.html",[4,0.091,5,0.087,24,0.008,54,2.789,73,1.191,85,0.006,86,0.008,87,0.006,100,1.295,119,0.832,171,3.093,184,1.705,211,0.986,214,1.678,227,2.627,350,1.536,452,2.144,454,1.73,467,2.978,528,3.095,529,2.662,533,3.673,536,4.185,540,5.176,557,4.839,684,3.285,715,4.185,814,4.185,859,3.095,875,2.444,882,3.514,884,2.932,987,2.932,1021,5.143,1062,5.869,1107,2.789,1191,2.662,1240,6.163,1246,4.076,1277,4.185,1380,4.558,1487,5.512,1594,5.006,1620,3.095,2078,5.598,2653,4.558,2852,3.514,3512,4.185,3576,6.163,3597,6.279,3598,4.767,3599,7.021,3600,7.755,3601,7.628,3602,8.118,3603,5.512,3604,4.767,3605,4.767,3606,6.163,3607,8.239,3608,4.767,3609,5.512,3610,4.767,3611,4.767,3612,4.767,3613,4.767,3614,4.767,3615,4.767,3616,4.185,3617,4.767,3618,4.185,3619,4.767,3620,6.807,3621,4.767,3622,4.767,3623,4.185,3624,4.767,3625,7.962,3626,4.767,3627,4.767,3628,4.767,3629,4.767,3630,6.279,3631,4.767,3632,6.163,3633,7.021,3634,4.185,3635,4.767,3636,4.767,3637,4.185,3638,5.512,3639,6.279,3640,7.462,3641,5.512,3642,4.767,3643,6.55,3644,4.767,3645,4.767,3646,6.182,3647,4.767,3648,6.279,3649,4.767,3650,4.767,3651,4.185,3652,4.767,3653,4.767,3654,4.767,3655,4.767,3656,4.767,3657,4.767,3658,7.021,3659,4.767,3660,4.767,3661,4.767,3662,4.767,3663,4.185,3664,6.279,3665,4.767,3666,4.767,3667,4.767,3668,4.767,3669,4.767,3670,4.185,3671,4.185,3672,4.767,3673,3.801,3674,4.767,3675,4.767]],["title/license.html",[3595,3.093,3596,3.093,3676,3.093]],["body/license.html",[0,0.992,2,1.042,4,0.147,5,0.026,9,0.946,20,1.641,21,0.159,24,0.002,25,1.997,26,0.518,28,0.603,35,3.939,36,1.278,38,1.97,44,0.576,54,4.086,57,2.628,64,2.282,65,1.085,85,0.002,86,0.002,87,0.002,88,0.02,99,1.806,100,1.255,101,2.311,104,0.159,105,3.082,113,0.132,116,2.004,121,0.44,128,0.906,141,0.906,145,2.453,146,1.863,147,3.607,149,3.481,156,1.367,159,0.237,165,0.052,184,1.172,188,4.506,190,0.74,193,1.479,207,1.754,211,0.5,252,0.237,277,0.305,296,0.822,303,2.004,348,1.049,394,1.863,398,0.822,413,1.085,430,0.386,467,0.489,520,0.67,528,2.311,540,5.097,543,2.461,544,0.603,546,0.822,561,1.628,562,1.628,571,0.67,598,0.67,612,0.906,639,0.576,671,0.634,680,1.204,705,0.67,708,0.906,710,2.311,729,0.711,795,2.624,836,0.489,859,2.311,864,1.479,866,3.161,882,1.367,883,0.822,886,4.092,888,1.898,895,3.009,896,3.288,981,0.906,987,0.634,989,0.906,997,0.906,998,1.628,1019,0.906,1021,2.453,1039,0.576,1081,1.367,1103,2.083,1107,0.603,1145,0.906,1146,1.628,1184,1.898,1236,1.641,1238,1.367,1249,3.942,1263,1.278,1264,3.161,1267,1.628,1289,1.628,1359,0.711,1380,4.842,1381,0.906,1389,1.479,1397,2.219,1408,0.906,1409,1.628,1410,1.628,1428,2.461,1433,1.479,1443,3.685,1445,0.822,1447,2.015,1476,5.454,1594,1.479,1605,0.822,1606,0.906,1619,0.76,1620,0.67,1621,1.367,1623,0.76,1642,2.71,1645,0.906,1660,2.311,1664,1.742,1668,0.76,1810,0.822,1942,0.822,1962,0.822,2008,1.863,2098,0.822,2117,0.822,2146,0.822,2152,0.822,2161,0.822,2169,6.767,2171,4.092,2390,0.822,2391,3.161,2507,1.628,2531,0.906,2532,2.276,2534,2.219,2584,1.479,2598,0.822,2605,3.125,2610,0.906,2629,0.822,2649,3.939,2653,2.004,2700,2.015,2794,0.822,2852,3.607,2915,2.219,2942,2.015,3243,1.628,3441,1.628,3449,1.479,3507,0.906,3554,5.156,3559,6.131,3560,1.628,3565,0.906,3584,0.822,3588,1.628,3601,4.058,3603,2.71,3606,0.906,3609,1.628,3616,2.71,3618,2.71,3620,0.906,3623,0.906,3634,0.906,3637,4.864,3638,2.219,3641,0.906,3643,0.906,3651,2.219,3663,0.906,3670,4.058,3671,3.788,3676,7.49,3677,6.491,3678,1.032,3679,1.032,3680,2.528,3681,7.276,3682,4.622,3683,6.588,3684,7.111,3685,3.965,3686,1.032,3687,1.032,3688,1.855,3689,3.56,3690,3.56,3691,2.528,3692,2.528,3693,1.032,3694,1.032,3695,1.855,3696,3.965,3697,1.032,3698,3.965,3699,1.032,3700,1.032,3701,4.622,3702,1.032,3703,1.032,3704,1.032,3705,5.874,3706,7.894,3707,5.874,3708,2.528,3709,2.528,3710,1.855,3711,1.855,3712,4.316,3713,4.316,3714,5.874,3715,3.56,3716,1.032,3717,1.032,3718,3.087,3719,4.622,3720,1.855,3721,4.622,3722,2.528,3723,1.032,3724,1.855,3725,1.032,3726,2.528,3727,6.491,3728,3.56,3729,1.855,3730,3.087,3731,1.032,3732,1.032,3733,1.855,3734,3.087,3735,5.541,3736,1.855,3737,6.678,3738,1.855,3739,3.087,3740,4.316,3741,3.56,3742,1.032,3743,4.622,3744,3.56,3745,7.372,3746,2.528,3747,4.316,3748,1.032,3749,1.032,3750,1.032,3751,4.622,3752,1.855,3753,5.348,3754,5.133,3755,3.56,3756,1.855,3757,1.032,3758,1.032,3759,6.019,3760,1.855,3761,1.032,3762,5.716,3763,1.855,3764,1.032,3765,2.528,3766,1.032,3767,1.032,3768,1.032,3769,1.032,3770,1.032,3771,1.032,3772,1.032,3773,1.032,3774,1.032,3775,1.855,3776,1.032,3777,1.032,3778,1.032,3779,1.855,3780,1.032,3781,1.032,3782,1.855,3783,1.855,3784,5.874,3785,1.032,3786,1.855,3787,1.855,3788,1.032,3789,1.032,3790,2.528,3791,1.855,3792,2.528,3793,1.032,3794,1.032,3795,3.965,3796,1.032,3797,1.032,3798,3.56,3799,1.032,3800,1.032,3801,3.087,3802,1.032,3803,1.032,3804,1.855,3805,2.528,3806,1.032,3807,1.032,3808,4.893,3809,1.032,3810,5.874,3811,3.087,3812,3.56,3813,3.965,3814,2.528,3815,1.032,3816,2.528,3817,6.387,3818,1.855,3819,1.032,3820,1.032,3821,1.032,3822,2.528,3823,7.793,3824,5.133,3825,1.032,3826,1.032,3827,1.855,3828,1.855,3829,1.032,3830,1.032,3831,3.087,3832,4.622,3833,1.032,3834,2.528,3835,2.528,3836,1.855,3837,3.965,3838,7.707,3839,2.528,3840,4.893,3841,3.087,3842,4.316,3843,1.855,3844,1.032,3845,1.855,3846,2.528,3847,4.893,3848,3.087,3849,1.032,3850,1.855,3851,1.855,3852,3.087,3853,3.087,3854,1.032,3855,2.528,3856,1.032,3857,7.049,3858,1.855,3859,1.032,3860,4.622,3861,1.032,3862,2.528,3863,6.019,3864,3.087,3865,1.855,3866,5.348,3867,3.965,3868,1.032,3869,1.032,3870,4.622,3871,1.032,3872,1.855,3873,1.032,3874,1.855,3875,2.528,3876,2.528,3877,1.032,3878,1.032,3879,1.032,3880,2.528,3881,2.528,3882,1.032,3883,1.032,3884,1.032,3885,1.855,3886,3.965,3887,1.032,3888,2.528,3889,2.528,3890,3.965,3891,2.528,3892,2.528,3893,1.032,3894,1.032,3895,3.56,3896,3.965,3897,1.032,3898,1.032,3899,1.032,3900,2.528,3901,1.032,3902,1.032,3903,1.032,3904,1.032,3905,1.032,3906,1.855,3907,1.032,3908,6.841,3909,4.622,3910,1.032,3911,1.855,3912,1.032,3913,1.032,3914,1.855,3915,1.855,3916,1.032,3917,1.032,3918,1.032,3919,1.855,3920,2.528,3921,1.032,3922,1.855,3923,1.032,3924,1.032,3925,1.032,3926,1.032,3927,5.133,3928,4.316,3929,3.087,3930,1.032,3931,3.56,3932,1.032,3933,1.855,3934,1.032,3935,1.032,3936,1.032,3937,1.032,3938,1.032,3939,2.528,3940,2.528,3941,1.032,3942,1.032,3943,1.855,3944,1.855,3945,1.855,3946,1.032,3947,1.855,3948,1.032,3949,1.032,3950,1.032,3951,1.032,3952,1.032,3953,1.032,3954,2.528,3955,1.032,3956,1.032,3957,6.019,3958,1.032,3959,1.032,3960,1.032,3961,3.56,3962,3.56,3963,1.032,3964,1.032,3965,2.528,3966,1.032,3967,1.032,3968,3.087,3969,1.032,3970,1.855,3971,1.032,3972,1.032,3973,1.032,3974,1.032,3975,1.032,3976,1.855,3977,1.855,3978,1.032,3979,2.528,3980,1.032,3981,1.032,3982,1.855,3983,1.032,3984,1.032,3985,1.032,3986,1.032,3987,1.855,3988,1.855,3989,3.965,3990,1.032,3991,1.032,3992,1.855,3993,2.528,3994,2.528,3995,3.087,3996,3.087,3997,3.087,3998,1.855,3999,1.032,4000,3.56,4001,3.56,4002,1.032,4003,1.855,4004,1.855,4005,1.032,4006,3.56,4007,1.855,4008,3.087,4009,3.087,4010,1.855,4011,2.528,4012,5.874,4013,3.56,4014,1.032,4015,1.032,4016,1.032,4017,2.528,4018,2.528,4019,1.855,4020,1.855,4021,1.032,4022,1.032,4023,1.032,4024,1.855,4025,1.032,4026,1.032,4027,1.032,4028,2.528,4029,1.032,4030,1.032,4031,2.528,4032,1.032,4033,1.855,4034,1.032,4035,1.032,4036,1.032,4037,1.855,4038,1.855,4039,3.965,4040,6.678,4041,2.528,4042,1.855,4043,1.855,4044,1.855,4045,1.855,4046,3.087,4047,1.855,4048,1.032,4049,1.032,4050,1.032,4051,1.032,4052,3.965,4053,1.855,4054,1.032,4055,1.032,4056,1.032,4057,1.032,4058,1.855,4059,1.032,4060,1.855,4061,1.032,4062,3.56,4063,1.032,4064,1.032,4065,1.032,4066,1.032,4067,1.032,4068,1.855,4069,1.032,4070,1.032,4071,1.032,4072,2.528,4073,3.56,4074,3.087,4075,1.855,4076,1.032,4077,1.032,4078,1.032,4079,1.032,4080,1.032,4081,1.855,4082,1.032,4083,1.032,4084,2.528,4085,3.087,4086,1.032,4087,1.032,4088,1.855,4089,1.032,4090,1.032,4091,2.528,4092,1.032,4093,1.032,4094,1.032,4095,1.032,4096,1.032,4097,1.855,4098,1.032,4099,1.032,4100,1.032,4101,1.032,4102,2.528,4103,1.032,4104,1.032,4105,1.032,4106,1.032,4107,3.56,4108,1.032,4109,1.032,4110,3.087,4111,1.032,4112,1.032,4113,1.032,4114,1.032,4115,1.032,4116,1.032,4117,2.528,4118,1.032,4119,1.032,4120,1.032,4121,2.528,4122,1.032,4123,1.032,4124,2.528,4125,1.032,4126,1.855,4127,1.032,4128,1.032,4129,1.032,4130,1.032,4131,1.032,4132,1.032,4133,1.032,4134,1.032,4135,1.855,4136,1.032,4137,1.032,4138,1.032,4139,1.855,4140,1.855,4141,1.032,4142,1.032,4143,2.528,4144,1.032,4145,2.528,4146,1.855,4147,1.032,4148,1.855,4149,1.855,4150,1.032,4151,2.528,4152,4.316,4153,1.032,4154,1.855,4155,1.628,4156,1.032,4157,1.855,4158,1.032,4159,1.032,4160,1.032,4161,1.032,4162,1.032,4163,1.855,4164,1.032,4165,3.087,4166,1.032,4167,3.56,4168,1.032,4169,1.032,4170,1.032,4171,1.032,4172,1.032,4173,1.855,4174,1.855,4175,1.855,4176,2.528,4177,1.032,4178,1.855,4179,1.855,4180,1.032,4181,2.528,4182,1.032,4183,1.855,4184,1.032,4185,1.855,4186,1.032,4187,1.855,4188,1.032,4189,1.032,4190,1.855,4191,6.841,4192,1.855,4193,1.032,4194,3.56,4195,5.133,4196,2.528,4197,1.032,4198,1.032,4199,1.032,4200,3.087,4201,1.032,4202,1.032,4203,2.528,4204,1.855,4205,1.032,4206,1.032,4207,1.032,4208,1.032,4209,1.032,4210,1.032,4211,1.032,4212,1.032,4213,3.087,4214,1.855,4215,1.855,4216,1.032,4217,1.032,4218,2.528,4219,1.032,4220,1.855,4221,2.528,4222,1.855,4223,1.032,4224,1.032,4225,1.032,4226,1.032,4227,1.855,4228,2.528,4229,1.032,4230,1.032,4231,1.855,4232,1.032,4233,1.032,4234,1.032,4235,1.032,4236,1.032,4237,1.032,4238,2.528,4239,1.855,4240,1.032,4241,1.032,4242,3.087,4243,1.032,4244,2.528,4245,1.032,4246,1.032,4247,1.855,4248,1.032,4249,1.032,4250,1.032,4251,2.528,4252,1.855,4253,1.032,4254,4.316,4255,1.855,4256,2.528,4257,3.087,4258,1.032,4259,1.032,4260,1.855,4261,1.032,4262,2.528,4263,1.032,4264,1.855,4265,1.032,4266,1.032,4267,1.032,4268,1.032,4269,2.528,4270,1.032,4271,1.855,4272,2.528,4273,1.855,4274,1.032,4275,1.855,4276,1.032,4277,1.032,4278,1.855,4279,1.855,4280,1.032,4281,1.032,4282,1.855,4283,1.032,4284,1.032,4285,1.032,4286,1.032,4287,1.032,4288,1.032,4289,1.032,4290,1.032,4291,1.032,4292,1.032,4293,1.855,4294,2.528,4295,1.032,4296,1.032,4297,1.032,4298,1.032,4299,1.032,4300,1.855,4301,1.032,4302,1.032,4303,1.032,4304,1.032,4305,1.032,4306,1.032,4307,1.032,4308,1.032,4309,1.032,4310,1.032,4311,1.032,4312,1.032,4313,1.032,4314,3.087,4315,1.032,4316,1.855,4317,1.032,4318,1.032,4319,1.032,4320,1.032,4321,1.032,4322,1.032,4323,1.032,4324,1.032,4325,1.032,4326,1.032,4327,2.528,4328,1.032,4329,1.032,4330,1.032,4331,1.032,4332,1.855,4333,1.032,4334,1.032,4335,1.032,4336,1.032,4337,1.032,4338,1.855,4339,1.855,4340,2.528,4341,1.032,4342,1.855,4343,1.032,4344,1.032,4345,1.032,4346,1.032,4347,2.528,4348,1.855,4349,1.032,4350,1.855,4351,1.855,4352,1.855,4353,1.032,4354,1.032,4355,1.032,4356,1.032,4357,1.032,4358,1.032,4359,1.855,4360,1.032,4361,1.032,4362,1.855,4363,1.032,4364,2.528,4365,1.032,4366,1.032,4367,1.032,4368,1.032,4369,1.032,4370,1.032,4371,1.032,4372,1.032,4373,1.032,4374,1.032,4375,1.032,4376,1.032,4377,1.032,4378,1.032,4379,1.032,4380,1.032,4381,1.032,4382,1.032,4383,1.032,4384,1.032,4385,1.032,4386,1.032,4387,1.032,4388,1.032,4389,1.032,4390,1.032,4391,1.032,4392,1.032,4393,1.032,4394,1.032,4395,2.528,4396,1.855,4397,1.032,4398,1.032,4399,1.032,4400,1.032,4401,1.032,4402,1.855,4403,1.032,4404,1.032,4405,1.855,4406,1.855,4407,1.032,4408,1.032,4409,1.032,4410,1.032,4411,1.032,4412,1.032,4413,1.032,4414,1.032,4415,1.032,4416,1.032,4417,1.032,4418,1.032,4419,1.032,4420,1.032,4421,1.032,4422,1.032,4423,1.032,4424,1.032,4425,1.032,4426,1.032,4427,1.032,4428,1.032,4429,1.032,4430,1.032,4431,1.032]],["title/modules.html",[454,2.104]],["body/modules.html",[24,0.009,85,0.007,86,0.009,87,0.007,147,6.369,453,4.477,454,2.205,462,4.186,463,2.993,464,4.186,644,4.477,648,4.186,750,4.477,756,4.186,764,4.857,900,4.477,904,4.186,2700,6.935,2702,4.477,2706,4.186,2865,4.477,2869,4.186,3080,4.477,3084,4.186,3376,4.186,4432,8.698,4433,8.925,4434,8.64]],["title/overview.html",[3673,4.621]],["body/overview.html",[2,1.633,24,0.011,77,1.531,83,0.886,85,0.005,86,0.007,87,0.005,90,1.952,212,1.998,213,1.395,305,1.076,311,2.056,313,1.998,316,1.998,318,2.492,320,1.998,322,1.998,324,1.998,327,2.492,330,2.492,332,1.998,334,1.998,336,1.998,338,2.492,341,1.998,342,1.998,344,2.492,347,2.492,349,1.998,351,1.24,352,2.421,354,1.998,356,1.998,452,1.046,453,6.261,454,1.438,455,1.952,456,2.117,457,2.031,458,2.117,459,3.478,460,3.478,461,3.478,462,4.4,463,4.378,464,5.708,465,2.96,466,2.117,467,1.879,644,5.818,645,3.478,646,3.478,647,3.478,648,4.4,750,6.289,751,3.478,752,3.478,753,3.478,754,3.478,755,3.478,756,4.4,757,4.4,758,4.144,759,4.4,760,4.4,862,3.159,900,5.987,901,3.478,902,3.478,903,3.478,904,4.4,911,1.952,1103,2.318,1660,2.572,1664,2.73,2702,5.818,2703,3.478,2704,3.478,2705,3.478,2706,4.4,2808,5.331,2809,2.921,2865,5.987,2866,3.478,2867,3.478,2868,3.478,2869,4.4,2879,3.478,2880,3.478,2881,3.478,2882,5.331,2883,5.331,3080,5.987,3081,3.478,3082,3.478,3083,3.478,3084,4.4,3372,3.478,3373,3.478,3374,3.478,3375,3.478,3376,4.4,3673,3.159,4155,3.478,4435,3.962,4436,3.962,4437,5.538]],["title/routes.html",[515,2.749]],["body/routes.html",[24,0.01,85,0.009,86,0.01,87,0.009,515,3.309]],["title/miscellaneous/variables.html",[3539,2.597,3646,4.062]],["body/miscellaneous/variables.html",[1,0.879,6,1.158,8,0.886,9,1.443,10,0.153,11,0.309,16,1.229,17,1.097,18,1.229,19,0.996,20,1.158,21,0.64,22,2.683,24,0.011,25,2.154,26,0.498,27,0.388,28,1.747,31,1.043,32,1.315,38,0.76,39,1.229,40,1.229,41,1.229,42,1.158,43,1.158,44,0.996,45,1.229,47,1.097,48,1.714,49,1.229,50,1.229,51,1.229,52,0.996,53,1.229,54,1.043,64,2.149,67,2.397,70,0.996,72,0.914,73,1.917,75,1.837,76,1.158,77,1.489,78,2.927,79,1.939,80,1.472,81,1.229,82,1.229,83,0.399,85,0.002,86,0.004,87,0.002,91,1.422,93,1.229,95,1.747,100,0.811,116,1.939,120,2.382,139,1.716,148,2.215,160,2.397,166,3.033,171,2.301,173,2.382,174,3.743,175,2.382,176,1.565,177,2.382,178,2.059,179,1.939,184,0.484,190,0.711,207,0.879,217,0.574,289,0.953,302,2.502,348,0.433,350,0.574,365,2.059,512,1.229,522,3.34,524,3.743,525,3.526,528,1.939,529,2.152,553,4.331,571,2.502,639,1.668,688,1.939,770,1.422,773,2.202,786,3.383,795,1.315,796,1.422,797,1.422,836,1.417,858,2.841,859,1.939,861,1.097,1062,1.315,1103,1.043,1200,2.059,1201,2.841,1203,2.841,1238,1.315,1247,1.229,1263,1.229,1429,2.202,1509,2.202,1638,2.202,1639,1.422,1640,5.015,1650,3.958,1651,1.565,1652,2.382,1653,1.565,1654,2.382,1655,1.422,1656,3.595,1657,1.422,1658,2.841,1659,1.422,1660,1.158,1661,1.422,1662,2.382,1663,1.422,1664,1.229,1665,1.422,1666,1.422,1667,1.422,1668,1.315,1669,1.422,1670,1.422,1671,1.229,1672,1.422,1673,2.622,1674,3.958,1675,1.565,1676,1.565,1677,1.565,1678,1.565,1679,1.565,1680,1.565,1681,1.565,1682,1.565,1683,1.565,1684,1.565,1685,1.565,1686,1.565,1687,1.565,1688,1.565,1689,1.565,1690,2.622,1691,1.565,1692,1.565,1693,2.622,1694,1.565,1695,1.565,1696,1.565,1697,3.383,1698,3.383,1699,1.565,1700,2.622,1701,1.565,1702,2.622,1703,2.622,1704,2.622,1705,1.565,1706,1.565,1707,1.565,1708,1.565,1709,1.565,1710,1.565,1711,1.565,1712,1.565,1713,1.565,1714,1.565,1715,1.565,1716,1.565,1717,1.565,1718,1.565,1719,1.565,1720,1.565,1721,1.565,1722,1.565,1723,1.565,1724,1.565,1725,1.565,1726,1.565,1727,1.565,1728,1.565,1729,1.565,1730,1.565,1731,1.565,1732,1.565,1733,1.565,1734,1.565,1735,1.565,1736,1.565,1737,1.565,1738,2.622,1739,1.565,1740,1.565,1741,1.565,1742,1.565,1743,1.565,1744,1.565,1745,1.565,1746,1.565,1747,1.565,1748,1.565,1749,1.565,1750,1.565,1751,2.622,1752,1.565,1753,1.565,1754,1.565,1755,2.622,1756,1.565,1757,1.565,1758,1.565,1759,1.565,1760,1.565,1761,1.565,1762,1.565,1763,1.565,1764,1.565,1765,1.565,1766,1.565,1767,1.565,1768,1.565,1769,1.565,1770,1.565,1771,1.565,1772,1.565,1773,1.565,1774,1.565,1775,1.565,1776,1.565,1777,1.565,1778,1.565,1779,1.565,1780,1.565,1781,1.565,1782,3.383,1783,1.565,1784,1.565,1785,1.565,1786,1.565,1787,1.565,1788,1.565,1789,1.565,1790,1.565,1791,1.565,1792,1.565,1793,1.565,1794,1.565,1795,1.565,1796,2.622,1797,1.565,1798,1.565,1799,1.565,1800,1.565,1801,1.565,1802,1.565,1803,1.565,1804,2.622,1805,1.565,1806,1.565,1807,1.565,1808,1.565,1809,1.565,1810,1.422,1811,1.565,1812,1.565,1813,1.565,1814,1.565,1815,0.996,1816,1.565,1817,1.565,1818,1.565,1819,1.565,1820,1.565,1821,1.565,1822,1.565,1823,2.622,1824,1.565,1825,1.565,1826,2.622,1827,1.565,1828,1.565,1829,1.565,1830,1.565,1831,1.565,1832,1.565,1833,1.565,1834,1.565,1835,1.565,1836,1.565,1837,1.565,1838,1.565,1839,1.565,1840,1.565,1841,1.565,1842,1.565,1843,3.383,1844,3.958,1845,1.565,1846,1.565,1847,1.565,1848,1.565,1849,1.565,1850,1.565,1851,1.565,1852,1.565,1853,1.565,1854,1.565,1855,1.565,1856,1.565,1857,1.565,1858,1.565,1859,1.565,1860,1.565,1861,1.565,1862,1.565,1863,1.565,1864,1.565,1865,1.565,1866,1.565,1867,1.565,1868,1.565,1869,1.565,1870,1.565,1871,1.565,1872,1.565,1873,1.565,1874,1.565,1875,1.565,1876,1.565,1877,1.565,1878,1.565,1879,1.565,1880,1.565,1881,1.565,1882,1.565,1883,1.565,1884,1.565,1885,1.565,1886,1.565,1887,1.565,1888,1.565,1889,1.565,1890,2.622,1891,3.383,1892,1.565,1893,1.565,1894,1.565,1895,1.565,1896,3.383,1897,3.383,1898,1.565,1899,2.622,1900,1.565,1901,1.565,1902,1.565,1903,1.565,1904,1.565,1905,1.565,1906,1.565,1907,1.565,1908,1.565,1909,1.565,1910,1.565,1911,1.565,1912,1.565,1913,1.565,1914,3.383,1915,1.565,1916,1.565,1917,1.565,1918,1.565,1919,1.565,1920,1.565,1921,1.565,1922,1.565,1923,1.565,1924,1.565,1925,1.565,1926,1.565,1927,1.565,1928,1.565,1929,1.565,1930,1.565,1931,1.565,1932,1.565,1933,2.202,1934,2.622,1935,2.622,1936,2.622,1937,2.622,1938,1.565,1939,1.565,1940,1.565,1941,1.565,1942,1.422,1943,1.565,1944,1.565,1945,1.565,1946,1.565,1947,1.565,1948,1.565,1949,1.565,1950,1.565,1951,1.565,1952,1.565,1953,1.565,1954,1.565,1955,1.565,1956,1.565,1957,1.565,1958,1.565,1959,1.565,1960,1.565,1961,1.565,1962,1.422,1963,1.565,1964,1.565,1965,1.565,1966,1.565,1967,1.565,1968,1.565,1969,1.565,1970,1.565,1971,1.565,1972,1.565,1973,1.565,1974,1.565,1975,1.565,1976,1.565,1977,1.565,1978,1.565,1979,2.622,1980,3.958,1981,1.565,1982,1.565,1983,1.565,1984,1.565,1985,1.565,1986,1.565,1987,1.565,1988,1.565,1989,1.565,1990,1.565,1991,1.565,1992,1.565,1993,1.565,1994,1.565,1995,1.565,1996,1.565,1997,1.565,1998,1.565,1999,1.565,2000,1.565,2001,1.565,2002,1.565,2003,1.565,2004,2.622,2005,1.565,2006,1.565,2007,1.565,2008,1.315,2009,1.565,2010,1.565,2011,1.565,2012,1.565,2013,1.565,2014,1.565,2015,1.565,2016,1.565,2017,1.565,2018,1.565,2019,1.565,2020,1.565,2021,1.565,2022,1.565,2023,1.565,2024,1.565,2025,1.565,2026,1.565,2027,1.565,2028,1.565,2029,1.565,2030,1.565,2031,1.565,2032,1.565,2033,1.565,2034,1.565,2035,1.565,2036,1.565,2037,1.565,2038,2.622,2039,1.565,2040,1.565,2041,1.565,2042,1.565,2043,1.565,2044,1.565,2045,1.565,2046,1.565,2047,2.622,2048,1.565,2049,1.422,2050,1.565,2051,1.565,2052,1.565,2053,1.565,2054,1.565,2055,1.565,2056,1.565,2057,1.565,2058,1.565,2059,2.622,2060,1.565,2061,1.565,2062,1.565,2063,1.565,2064,1.565,2065,1.565,2066,1.565,2067,1.565,2068,1.565,2069,1.565,2070,1.565,2071,1.565,2072,1.565,2073,1.565,2074,1.565,2075,1.565,2076,1.565,2077,2.622,2078,2.382,2079,1.565,2080,1.565,2081,1.565,2082,1.565,2083,1.565,2084,1.565,2085,1.565,2086,1.565,2087,1.565,2088,1.565,2089,1.565,2090,1.565,2091,1.565,2092,1.565,2093,1.565,2094,1.565,2095,1.565,2096,1.565,2097,1.565,2098,1.422,2099,1.565,2100,1.565,2101,1.565,2102,1.565,2103,1.565,2104,1.565,2105,1.565,2106,1.565,2107,1.565,2108,1.565,2109,1.565,2110,1.565,2111,1.565,2112,1.565,2113,1.565,2114,1.565,2115,1.565,2116,1.565,2117,1.422,2118,1.565,2119,1.565,2120,1.565,2121,1.565,2122,1.565,2123,1.565,2124,1.565,2125,1.565,2126,1.565,2127,1.565,2128,1.565,2129,1.565,2130,1.565,2131,1.565,2132,1.565,2133,1.565,2134,1.565,2135,1.565,2136,2.622,2137,1.565,2138,1.565,2139,1.565,2140,1.565,2141,1.565,2142,1.565,2143,1.565,2144,1.422,2145,1.565,2146,1.422,2147,1.565,2148,1.565,2149,1.565,2150,1.565,2151,1.565,2152,1.422,2153,1.565,2154,1.565,2155,1.565,2156,1.565,2157,1.565,2158,1.565,2159,1.565,2160,1.565,2161,1.422,2162,1.565,2163,1.565,2164,1.565,2165,1.565,2166,1.565,2167,1.565,2168,1.565,2169,1.422,2170,1.565,2171,1.422,2172,1.565,2173,1.565,2174,2.382,2175,1.565,2176,1.565,2177,1.565,2178,1.565,2179,1.565,2180,1.565,2181,1.565,2182,1.565,2183,1.565,2184,1.565,2185,1.565,2186,1.565,2187,1.565,2188,1.565,2189,1.565,2190,1.565,2191,1.565,2192,1.565,2193,1.565,2194,1.565,2195,1.565,2196,1.565,2197,1.565,2198,1.565,2199,1.565,2200,1.565,2201,1.565,2202,1.565,2203,1.565,2204,1.565,2205,1.565,2206,1.565,2207,1.565,2208,1.565,2209,1.565,2210,1.565,2211,1.565,2212,1.565,2213,1.565,2214,1.565,2215,1.565,2216,1.565,2217,1.565,2218,1.565,2219,1.565,2220,1.565,2221,1.565,2222,2.622,2223,1.565,2224,1.565,2225,1.565,2226,1.565,2227,1.565,2228,1.565,2229,1.565,2230,1.565,2231,1.565,2232,1.565,2233,1.565,2234,1.565,2235,1.565,2236,1.565,2237,1.565,2238,1.565,2239,1.565,2240,3.383,2241,1.565,2242,1.565,2243,1.565,2244,1.565,2245,1.565,2246,1.565,2247,1.565,2248,1.565,2249,1.565,2250,1.565,2251,1.565,2252,1.565,2253,1.565,2254,1.565,2255,1.565,2256,1.565,2257,1.565,2258,1.565,2259,1.565,2260,1.565,2261,1.565,2262,1.565,2263,1.565,2264,1.565,2265,1.565,2266,1.565,2267,1.565,2268,1.565,2269,1.565,2270,1.565,2271,1.565,2272,1.565,2273,1.565,2274,1.565,2275,1.565,2276,1.565,2277,1.565,2278,1.565,2279,1.565,2280,1.565,2281,1.565,2282,1.565,2283,1.565,2284,1.565,2285,1.565,2286,1.565,2287,1.565,2288,1.565,2289,1.565,2290,1.565,2291,1.565,2292,1.565,2293,1.565,2294,1.565,2295,1.565,2296,1.565,2297,1.565,2298,1.565,2299,1.565,2300,1.565,2301,1.565,2302,1.565,2303,1.565,2304,1.565,2305,1.565,2306,1.565,2307,1.565,2308,1.565,2309,1.565,2310,1.565,2311,1.565,2312,1.565,2313,1.565,2314,1.565,2315,1.565,2316,1.565,2317,1.565,2318,1.565,2319,1.565,2320,1.565,2321,1.565,2322,1.565,2323,1.565,2324,1.565,2325,1.565,2326,1.565,2327,1.565,2328,1.565,2329,2.622,2330,1.565,2331,2.382,2332,1.565,2333,1.565,2334,1.565,2335,1.565,2336,1.565,2337,1.565,2338,1.565,2339,1.565,2340,1.565,2341,1.565,2342,1.565,2343,1.565,2344,1.565,2345,1.565,2346,1.565,2347,1.565,2348,1.422,2349,1.565,2350,1.565,2351,1.565,2352,1.565,2353,1.565,2354,1.565,2355,1.565,2356,1.565,2357,1.565,2358,1.565,2359,1.565,2360,2.622,2361,2.622,2362,1.565,2363,1.565,2364,1.565,2365,1.565,2366,1.565,2367,1.565,2368,2.382,2369,1.565,2370,1.565,2371,1.565,2372,1.565,2373,1.565,2374,1.565,2375,1.565,2376,1.565,2377,1.565,2378,1.565,2379,1.565,2380,1.565,2381,1.565,2382,1.565,2383,1.565,2384,1.565,2385,1.565,2386,1.565,2387,1.565,2388,1.565,2389,1.565,2390,1.422,2391,1.422,2392,1.565,2393,1.565,2394,1.565,2395,2.622,2396,1.565,2397,1.565,2398,1.565,2399,1.565,2400,1.565,2401,1.565,2402,1.565,2403,2.622,2404,1.565,2405,1.565,2406,1.565,2407,1.565,2408,1.565,2409,1.565,2410,1.565,2411,1.565,2412,1.565,2413,1.565,2414,1.565,2415,1.565,2416,1.565,2417,1.565,2418,1.565,2419,1.565,2420,1.565,2421,1.565,2422,1.565,2423,1.565,2424,1.565,2425,1.565,2426,1.565,2427,1.565,2428,1.565,2429,1.565,2430,1.422,2431,1.565,2432,1.565,2433,1.565,2434,1.565,2435,1.565,2436,2.382,2437,1.565,2438,1.565,2439,1.565,2440,1.565,2441,1.565,2442,1.565,2443,1.565,2444,1.422,2445,1.565,2446,1.565,2447,1.565,2448,1.565,2449,1.565,2450,1.565,2451,1.565,2452,1.565,2453,1.565,2454,1.565,2455,1.565,2456,1.565,2457,1.565,2458,1.565,2459,1.565,2460,1.565,2461,1.565,2462,1.565,2463,1.565,2464,1.565,2465,1.565,2466,1.565,2467,1.565,2468,1.565,2469,1.565,2470,1.565,2471,1.565,2472,1.565,2473,1.565,2474,1.565,2475,1.565,2476,1.565,2477,1.565,2478,1.565,2479,1.565,2480,1.565,2481,1.565,2482,1.565,2483,1.565,2484,1.565,2485,1.565,2486,1.565,2487,1.565,2488,1.565,2489,1.565,2490,1.565,2491,1.565,2492,1.565,2493,1.565,2494,1.565,2495,1.422,2496,1.422,2497,2.382,2498,1.565,2499,1.565,2500,1.565,2501,1.565,2618,1.158,2656,1.229,2964,1.422,2965,3.073,2984,1.565,3177,1.422,3225,2.622,3226,2.382,3464,2.382,3469,1.422,3472,2.622,3482,2.622,3484,3.383,3494,1.565,3504,1.565,3505,1.565,3506,1.565,3539,1.315,3544,1.565,3584,1.422,3632,3.383,3646,1.422,4438,2.987,4439,2.987,4440,6.051,4441,1.783,4442,1.783,4443,1.783,4444,1.783,4445,1.783,4446,1.783,4447,1.783,4448,3.855,4449,3.855,4450,3.855,4451,1.783,4452,3.855,4453,3.855,4454,3.855,4455,3.855,4456,1.783,4457,3.855,4458,3.855,4459,3.855,4460,3.855,4461,3.855,4462,3.855,4463,3.855,4464,3.855,4465,3.855,4466,3.855,4467,3.855,4468,3.855,4469,3.855,4470,3.855,4471,3.855,4472,3.855,4473,2.987,4474,2.987,4475,1.783,4476,1.783,4477,1.783,4478,1.783,4479,1.783]]],"invertedIndex":[["",{"_index":24,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":77,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3524,"title":{},"body":{"dependencies.html":{}}}],["0.1.6",{"_index":3518,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3538,"title":{},"body":{"dependencies.html":{}}}],["0.12.3",{"_index":3527,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["0/1",{"_index":3466,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3496,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3491,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3499,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3493,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3498,"title":{},"body":{"coverage.html":{}}}],["0/19",{"_index":3503,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3509,"title":{},"body":{"coverage.html":{}}}],["0/22",{"_index":3487,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3500,"title":{},"body":{"coverage.html":{}}}],["0/37",{"_index":3495,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3490,"title":{},"body":{"coverage.html":{}}}],["0/47",{"_index":3497,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3489,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3502,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3501,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3492,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3488,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3405,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3416,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3398,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3436,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3437,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":2927,"title":{},"body":{"interfaces/Token.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":197,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3397,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":207,"title":{"interfaces/Signature-1.html":{}},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3535,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3536,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3454,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["10.2.0",{"_index":3512,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3514,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3421,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["1000",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000).tolocaledatestring('en",{"_index":3387,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["11",{"_index":3970,"title":{},"body":{"license.html":{}}}],["11/11",{"_index":3479,"title":{},"body":{"coverage.html":{}}}],["11/16/2020",{"_index":3411,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12",{"_index":4437,"title":{},"body":{"overview.html":{}}}],["12987",{"_index":3399,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4329,"title":{},"body":{"license.html":{}}}],["14/14",{"_index":3485,"title":{},"body":{"coverage.html":{}}}],["15",{"_index":4154,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3440,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3434,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4155,"title":{},"body":{"license.html":{},"overview.html":{}}}],["17",{"_index":4435,"title":{},"body":{"overview.html":{}}}],["1996",{"_index":3975,"title":{},"body":{"license.html":{}}}],["2",{"_index":1103,"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":3534,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3532,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3522,"title":{},"body":{"dependencies.html":{}}}],["2/2",{"_index":3462,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3680,"title":{},"body":{"license.html":{}}}],["2021",{"_index":4402,"title":{},"body":{"license.html":{}}}],["22",{"_index":4436,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3439,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3404,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3396,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3420,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["254700000000",{"_index":81,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["25498765432",{"_index":3410,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3415,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["26/26",{"_index":3483,"title":{},"body":{"coverage.html":{}}}],["28",{"_index":4310,"title":{},"body":{"license.html":{}}}],["29",{"_index":3678,"title":{},"body":{"license.html":{}}}],["3",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":82,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3529,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3456,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3508,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4209,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3149,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1339,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3307,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":2981,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;hello",{"_index":3556,"title":{},"body":{"miscellaneous/functions.html":{}}}],["39;sarafu'",{"_index":2975,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.2.1",{"_index":3530,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3523,"title":{},"body":{"dependencies.html":{}}}],["4/4",{"_index":3480,"title":{},"body":{"coverage.html":{}}}],["400",{"_index":2553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["403",{"_index":1393,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3412,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3526,"title":{},"body":{"dependencies.html":{}}}],["5/5",{"_index":3481,"title":{},"body":{"coverage.html":{}}}],["50",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["5000",{"_index":2580,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["56",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3417,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3406,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3531,"title":{},"body":{"dependencies.html":{}}}],["6/6",{"_index":3465,"title":{},"body":{"coverage.html":{}}}],["60",{"_index":3507,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4059,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4079,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":643,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":3998,"title":{},"body":{"license.html":{}}}],["7/7",{"_index":3486,"title":{},"body":{"coverage.html":{}}}],["768px",{"_index":683,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["8/8",{"_index":3455,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3422,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9/9",{"_index":3452,"title":{},"body":{"coverage.html":{}}}],["_pipes/unix",{"_index":2895,"title":{},"body":{"modules/SharedModule.html":{}}}],["abi",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4123,"title":{},"body":{"license.html":{}}}],["above",{"_index":2534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":3999,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4384,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4414,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1283,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3778,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4214,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":880,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4213,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2783,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4281,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":4041,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4388,"title":{},"body":{"license.html":{}}}],["accompanying",{"_index":2730,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["accord",{"_index":3997,"title":{},"body":{"license.html":{}}}],["according",{"_index":1445,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["accordingly",{"_index":1376,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/variables.html":{}}}],["account'},{'name",{"_index":323,"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/NetworkStatusComponent.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":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1199,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1198,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1197,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:14",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:15",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1210,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1209,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1206,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:28",{"_index":1207,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:59",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:63",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":439,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":311,"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/NetworkStatusComponent.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":89,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"coverage.html":{}}}],["accountindex(accountregistryaddress",{"_index":2776,"title":{},"body":{"injectables/RegistryService.html":{}}}],["accountinfo",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountregistry",{"_index":2743,"title":{},"body":{"injectables/RegistryService.html":{}}}],["accountregistryaddress",{"_index":2774,"title":{},"body":{"injectables/RegistryService.html":{}}}],["accounts",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":314,"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/NetworkStatusComponent.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":363,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":209,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":435,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["accountscomponent",{"_index":313,"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/NetworkStatusComponent.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":212,"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/NetworkStatusComponent.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":453,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":462,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":442,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4394,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3937,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4260,"title":{},"body":{"license.html":{}}}],["action",{"_index":522,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":636,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":640,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":635,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":634,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":571,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find((action",{"_index":2537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroutesnapshot",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":531,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":892,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["activities",{"_index":3855,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4306,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4286,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":360,"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/NetworkStatusComponent.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":4101,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3829,"title":{},"body":{"license.html":{}}}],["add",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3219,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3312,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":2915,"title":{},"body":{"interfaces/Staff.html":{},"license.html":{}}}],["additional",{"_index":4012,"title":{},"body":{"license.html":{}}}],["address",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["addressed",{"_index":3826,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":2966,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":2976,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":2985,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2971,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addresssearchform",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":245,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":234,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":198,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoken",{"_index":2993,"title":{},"body":{"injectables/TokenService.html":{}}}],["addtoken(token",{"_index":3001,"title":{},"body":{"injectables/TokenService.html":{}}}],["addtransaction",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtrusteduser",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["addtrusteduser(user",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["admin",{"_index":529,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin's",{"_index":527,"title":{},"body":{"interfaces/Action.html":{}}}],["admin'},{'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/NetworkStatusComponent.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":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["admincomponent",{"_index":316,"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/NetworkStatusComponent.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":644,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":648,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":3973,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4131,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4376,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4132,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4327,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4243,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3934,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3325,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":709,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3588,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["age",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":4028,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4322,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4363,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4272,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3774,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1395,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":295,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["algo",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["algorithm",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["alleging",{"_index":4250,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3796,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1397,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":4001,"title":{},"body":{"license.html":{}}}],["alpha.6",{"_index":3525,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4055,"title":{},"body":{"license.html":{}}}],["although",{"_index":3770,"title":{},"body":{"license.html":{}}}],["amani",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":1179,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["ancillary",{"_index":4216,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3755,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4418,"title":{},"body":{"license.html":{}}}],["angular",{"_index":1062,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["angular/animations",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3513,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3605,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":471,"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":772,"title":{},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{}}}],["angular/compiler",{"_index":3515,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":269,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{},"injectables/Web3Service.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":271,"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":3516,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":493,"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":495,"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":485,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":504,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1318,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":497,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":488,"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":2877,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":410,"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":506,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2875,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":499,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3091,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":511,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":411,"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":409,"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":502,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3093,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":763,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":274,"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":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/service",{"_index":687,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{}}}],["animate",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3960,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":4009,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3841,"title":{},"body":{"license.html":{}}}],["api",{"_index":2505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":227,"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/NetworkStatusComponent.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":656,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":655,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3624,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":2758,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{}}}],["app/_guards",{"_index":775,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":272,"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":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":779,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1182,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["app/_models/staff",{"_index":2849,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":781,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/KeystoreService.html":{}}}],["app/_pgp/pgp",{"_index":2657,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":273,"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/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/error",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["app/_services/keystore.service",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/logging.service",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3214,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/web3.service",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{}}}],["app/app",{"_index":766,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":767,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":908,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":906,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":907,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2888,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2893,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2890,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1333,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2886,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":475,"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":{}}}],["app/shared/sidebar/sidebar.component",{"_index":2887,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2885,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":318,"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/NetworkStatusComponent.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":3847,"title":{},"body":{"license.html":{}}}],["application",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{}}}],["application/json;charset=utf",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4427,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3803,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3710,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3714,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1608,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":353,"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/NetworkStatusComponent.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":1630,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":355,"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/NetworkStatusComponent.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":750,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2723,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":357,"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/NetworkStatusComponent.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":1443,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["appropriately",{"_index":3991,"title":{},"body":{"license.html":{}}}],["approuterlink",{"_index":359,"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/NetworkStatusComponent.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":{}}}],["approutingmodule",{"_index":756,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":524,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":637,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(action.id",{"_index":628,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3423,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4383,"title":{},"body":{"license.html":{}}}],["area",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.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.tolowercase().split",{"_index":1545,"title":{},"body":{"injectables/LocationService.html":{}}}],["area_name",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":46,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areanames",{"_index":1200,"title":{},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames[key].includes(keyword",{"_index":1542,"title":{},"body":{"injectables/LocationService.html":{}}}],["areanameslist",{"_index":1507,"title":{},"body":{"injectables/LocationService.html":{}}}],["areanamessubject",{"_index":1508,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypes",{"_index":1509,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes[key].includes(keyword",{"_index":1548,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypeslist",{"_index":1510,"title":{},"body":{"injectables/LocationService.html":{}}}],["areatypessubject",{"_index":1511,"title":{},"body":{"injectables/LocationService.html":{}}}],["args",{"_index":2814,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["arguments",{"_index":670,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3785,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4367,"title":{},"body":{"license.html":{}}}],["around",{"_index":1617,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["arr",{"_index":3550,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4282,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4294,"title":{},"body":{"license.html":{}}}],["array",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["arraydata",{"_index":3567,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3459,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3548,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3969,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3626,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3732,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3750,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4233,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2762,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":2977,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":883,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4358,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4387,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4175,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3806,"title":{},"body":{"license.html":{}}}],["async",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["attach",{"_index":4396,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4189,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3766,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4158,"title":{},"body":{"license.html":{}}}],["auth",{"_index":800,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["auth'},{'name",{"_index":321,"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/NetworkStatusComponent.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":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.dev.grassrootseconomics.net",{"_index":4474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["auth.dev.grassrootseconomics.net:443",{"_index":4456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["authcomponent",{"_index":320,"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/NetworkStatusComponent.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":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["authguard",{"_index":774,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":900,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4157,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorized",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4255,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4298,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3713,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":904,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":664,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"coverage.html":{}}}],["automated",{"_index":3659,"title":{},"body":{"index.html":{}}}],["automatic",{"_index":4225,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3616,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["available",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"license.html":{},"modules.html":{}}}],["avenue",{"_index":3573,"title":{},"body":{"miscellaneous/functions.html":{}}}],["avocado",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3800,"title":{},"body":{"license.html":{}}}],["await",{"_index":199,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["away",{"_index":3700,"title":{},"body":{"license.html":{}}}],["b",{"_index":3896,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1378,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["backend.ts",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:936",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{}}}],["bamburi",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":512,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["base",{"_index":1622,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["based",{"_index":3837,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3926,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3948,"title":{},"body":{"license.html":{}}}],["behave",{"_index":1251,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["behaviorsubject",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(false",{"_index":3013,"title":{},"body":{"injectables/TokenService.html":{}}}],["behaviorsubject(this.areanames",{"_index":1526,"title":{},"body":{"injectables/LocationService.html":{}}}],["behaviorsubject(this.areatypes",{"_index":1531,"title":{},"body":{"injectables/LocationService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":1289,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["believe",{"_index":4291,"title":{},"body":{"license.html":{}}}],["below",{"_index":3955,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4285,"title":{},"body":{"license.html":{}}}],["best",{"_index":4393,"title":{},"body":{"license.html":{}}}],["between",{"_index":3924,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":4030,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["binding",{"_index":1268,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["bio",{"_index":3401,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bitwise",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":856,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["blockchain",{"_index":178,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["blockfilterbinstr",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocks",{"_index":2827,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["blocksync",{"_index":1072,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":665,"title":{"injectables/BlockSyncService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["blocktxfilterbinstr",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1165,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":40,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":257,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":457,"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":3760,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4421,"title":{},"body":{"license.html":{}}}],["bread",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1392,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4433,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":769,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":768,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":762,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3403,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3625,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3629,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3631,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":641,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3682,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3231,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3190,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3835,"title":{},"body":{"license.html":{}}}],["calls",{"_index":3577,"title":{},"body":{"miscellaneous/functions.html":{}}}],["canactivate",{"_index":806,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candy",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["capenter",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2606,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":4003,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1389,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4097,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2684,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":1366,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1368,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1201,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["category",{"_index":15,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["catering",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caught",{"_index":1361,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cause",{"_index":4033,"title":{},"body":{"license.html":{}}}],["cdr",{"_index":2572,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["cease",{"_index":4193,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["centralized",{"_index":1416,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["cereal",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cessation",{"_index":4205,"title":{},"body":{"license.html":{}}}],["chai",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":859,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3764,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":224,"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/NetworkStatusComponent.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":268,"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/NetworkStatusComponent.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":225,"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/NetworkStatusComponent.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":{}}}],["changedetectorref",{"_index":2570,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["changes",{"_index":3594,"title":{},"body":{"miscellaneous/functions.html":{}}}],["changesdescription",{"_index":3592,"title":{},"body":{"miscellaneous/functions.html":{}}}],["changing",{"_index":3693,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4120,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3719,"title":{},"body":{"license.html":{}}}],["charging",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["check",{"_index":3664,"title":{},"body":{"index.html":{}}}],["checks",{"_index":144,"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":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4342,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4346,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{},"classes/Settings.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cic_convert",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["cic_transfer",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["cicada",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":747,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicnet/cic",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{}}}],["cicnet/schemas",{"_index":3519,"title":{},"body":{"dependencies.html":{}}}],["cicregistry",{"_index":2755,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cictransfer(event",{"_index":743,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3953,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3961,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4386,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4247,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4257,"title":{},"body":{"license.html":{}}}],["class",{"_index":88,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.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":{},"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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-1.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":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"overview.html":{}}}],["cleaner",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4065,"title":{},"body":{"license.html":{}}}],["clearly",{"_index":3757,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3414,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3600,"title":{},"body":{"index.html":{}}}],["click",{"_index":1615,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clipboard",{"_index":3555,"title":{},"body":{"miscellaneous/functions.html":{}}}],["close",{"_index":2934,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4382,"title":{},"body":{"license.html":{}}}],["closewindow",{"_index":2936,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["cloth",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1382,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":645,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":647,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":646,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":751,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":752,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":755,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":754,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":901,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":903,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":902,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2703,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2704,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2705,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2866,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2868,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2867,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2879,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2880,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2881,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3081,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3082,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3083,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3372,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3375,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3373,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3374,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1380,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["codebase",{"_index":3669,"title":{},"body":{"index.html":{}}}],["coffee",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4324,"title":{},"body":{"license.html":{}}}],["collection",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3062,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4331,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4328,"title":{},"body":{"license.html":{}}}],["combined",{"_index":4024,"title":{},"body":{"license.html":{}}}],["comes",{"_index":4010,"title":{},"body":{"license.html":{}}}],["command",{"_index":3674,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3875,"title":{},"body":{"license.html":{}}}],["commas",{"_index":3572,"title":{},"body":{"miscellaneous/functions.html":{}}}],["comment",{"_index":2911,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4106,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4273,"title":{},"body":{"license.html":{}}}],["common",{"_index":4100,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":470,"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":3922,"title":{},"body":{"license.html":{}}}],["community",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":4020,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":4029,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4308,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3905,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4230,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3946,"title":{},"body":{"license.html":{}}}],["component",{"_index":211,"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/NetworkStatusComponent.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/NetworkStatusComponent.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_template",{"_index":310,"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/NetworkStatusComponent.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":213,"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/NetworkStatusComponent.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":3850,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3799,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4330,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4336,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4303,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3810,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config",{"_index":1489,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts",{"_index":1485,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1488,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:22",{"_index":1490,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["configurations",{"_index":1487,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"index.html":{}}}],["confirm",{"_index":1287,"title":{},"body":{"classes/CustomValidator.html":{}}}],["confirm('approve",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":630,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('new",{"_index":723,"title":{},"body":{"components/AppComponent.html":{}}}],["confirm('set",{"_index":2602,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1300,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connected",{"_index":194,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["connection",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4218,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4366,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4425,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4177,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4264,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3432,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(arraysum([1",{"_index":3552,"title":{},"body":{"miscellaneous/functions.html":{}}}],["console.log(await",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["console.log(copytoclipboard('hello",{"_index":3558,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conspicuously",{"_index":3990,"title":{},"body":{"license.html":{}}}],["const",{"_index":74,"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":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3794,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3936,"title":{},"body":{"license.html":{}}}],["construction",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":111,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.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":{},"injectables/Web3Service.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1319,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(cdr",{"_index":2569,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["constructor(contractaddress",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1312,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1326,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1610,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(formbuilder",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":1516,"title":{},"body":{"injectables/LocationService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2631,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1573,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1453,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["constructor(public",{"_index":1335,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(router",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2824,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["constructor(tokenservice",{"_index":3064,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1077,"title":{},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{}}}],["constructor(userservice",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4312,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4085,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4407,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1381,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3649,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4160,"title":{},"body":{"license.html":{}}}],["contains",{"_index":882,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":729,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":739,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":738,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":741,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1636,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4268,"title":{},"body":{"license.html":{}}}],["context",{"_index":3899,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4126,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4113,"title":{},"body":{"license.html":{}}}],["contract",{"_index":80,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contractual",{"_index":4174,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4318,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3702,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4254,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4256,"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":1302,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1301,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1299,"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":1304,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4259,"title":{},"body":{"license.html":{}}}],["controls",{"_index":1250,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["convenient",{"_index":3868,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":748,"title":{"interfaces/Conversion.html":{}},"body":{"components/AppComponent.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3249,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.trader",{"_index":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["convert",{"_index":2921,"title":{},"body":{"interfaces/Token.html":{}}}],["converted",{"_index":3568,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converting",{"_index":3570,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":3583,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converttoparammap",{"_index":559,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3857,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4296,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4121,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3863,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4173,"title":{},"body":{"license.html":{}}}],["cook",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3147,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["copies",{"_index":3554,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy",{"_index":3559,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy.ts",{"_index":3461,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3106,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3116,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3811,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":1408,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["copyright",{"_index":3681,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3821,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3950,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3126,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3145,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3553,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4361,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3908,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4053,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":204,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4248,"title":{},"body":{"license.html":{}}}],["counties",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3854,"title":{},"body":{"license.html":{}}}],["country",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2599,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4419,"title":{},"body":{"license.html":{}}}],["court",{"_index":4317,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4381,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4276,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3449,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3838,"title":{},"body":{"license.html":{}}}],["create",{"_index":115,"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/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Staff.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["createaccountcomponent",{"_index":322,"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/NetworkStatusComponent.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":396,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1202,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1204,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2858,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3878,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv",{"_index":3564,"title":{},"body":{"miscellaneous/functions.html":{}}}],["csv.ts",{"_index":3464,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{}}}],["curated",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cure",{"_index":4208,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2949,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2785,"title":{},"body":{"guards/RoleGuard.html":{}}}],["currentyear",{"_index":1404,"title":{},"body":{"components/FooterComponent.html":{}}}],["custom",{"_index":1246,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"index.html":{}}}],["customarily",{"_index":4044,"title":{},"body":{"license.html":{}}}],["customer",{"_index":4049,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":260,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":673,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent(eventtype",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1275,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":4018,"title":{},"body":{"license.html":{}}}],["dagaa",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4364,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3802,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2902,"title":{},"body":{"components/SidebarComponent.html":{}}}],["dashboardurl",{"_index":4471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["data",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Conversion.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/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1320,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1321,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3359,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["date",{"_index":4005,"title":{},"body":{"license.html":{}}}],["date().getfullyear",{"_index":1407,"title":{},"body":{"components/FooterComponent.html":{}}}],["date(timestamp",{"_index":3386,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["date.now",{"_index":76,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date.pipe",{"_index":2896,"title":{},"body":{"modules/SharedModule.html":{}}}],["date.pipe.ts",{"_index":3383,"title":{},"body":{"pipes/UnixDatePipe.html":{},"coverage.html":{}}}],["date.pipe.ts:7",{"_index":3385,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["date_registered",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3433,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["day",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["daycare",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4204,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1593,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3974,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4344,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":2917,"title":{},"body":{"interfaces/Token.html":{}}}],["declarations",{"_index":456,"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":4166,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3963,"title":{},"body":{"license.html":{}}}],["default",{"_index":73,"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":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":75,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defaults",{"_index":3571,"title":{},"body":{"miscellaneous/functions.html":{}}}],["defective",{"_index":4357,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4315,"title":{},"body":{"license.html":{}}}],["defined",{"_index":113,"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":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["defines",{"_index":1248,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["defining",{"_index":4479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["definition",{"_index":3915,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3815,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3563,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4128,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4274,"title":{},"body":{"license.html":{}}}],["denomination",{"_index":2923,"title":{},"body":{"interfaces/Token.html":{}}}],["denote",{"_index":1448,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["deny",{"_index":3769,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3731,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":455,"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":152,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{},"interfaces/Conversion.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["deprive",{"_index":4283,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":7,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.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":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{}}}],["design",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4061,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3698,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3172,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1171,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["detached",{"_index":2675,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":65,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AdminComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":312,"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/NetworkStatusComponent.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":478,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":2933,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2932,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2931,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:18",{"_index":2938,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:20",{"_index":2937,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:22",{"_index":3114,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:24",{"_index":2941,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":2940,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":3123,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:28",{"_index":3125,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:29",{"_index":3124,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:30",{"_index":3113,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3118,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:57",{"_index":3121,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:61",{"_index":3120,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:65",{"_index":3122,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:69",{"_index":3119,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:78",{"_index":3117,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:84",{"_index":3115,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4416,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2930,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3101,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4095,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3611,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4390,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3746,"title":{},"body":{"license.html":{}}}],["development",{"_index":3606,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3768,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2623,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1309,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{}}}],["dialog'},{'name",{"_index":326,"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/NetworkStatusComponent.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":1334,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1311,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1310,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1308,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1313,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:11",{"_index":1315,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":834,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1323,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:11",{"_index":1331,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:13",{"_index":1330,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1328,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1307,"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":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4335,"title":{},"body":{"license.html":{}}}],["different",{"_index":1428,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["differently",{"_index":4153,"title":{},"body":{"license.html":{}}}],["digest",{"_index":61,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":3949,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4066,"title":{},"body":{"license.html":{}}}],["directive",{"_index":308,"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/NetworkStatusComponent.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":351,"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/NetworkStatusComponent.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":3621,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3843,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":790,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":638,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2597,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3985,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4347,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4150,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4300,"title":{},"body":{"license.html":{}}}],["dispatcher",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["dispensary",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":4019,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4159,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displaying",{"_index":1253,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["displays",{"_index":3865,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3628,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4337,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3690,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4403,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4304,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3812,"title":{},"body":{"license.html":{}}}],["divone",{"_index":849,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":851,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3692,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":730,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":850,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":728,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":732,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":852,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2733,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2732,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3450,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4136,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3395,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dom",{"_index":216,"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/NetworkStatusComponent.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":3787,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2817,"title":{},"body":{"pipes/SafePipe.html":{}}}],["donald",{"_index":3409,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4096,"title":{},"body":{"license.html":{}}}],["dough",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["download",{"_index":3566,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downloadcsv",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downloaded",{"_index":3569,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downstream",{"_index":4227,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["duka",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":4043,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3148,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["during",{"_index":68,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["dwelling",{"_index":4094,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3517,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3917,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":680,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":735,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3644,"title":{},"body":{"index.html":{}}}],["each",{"_index":3824,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3836,"title":{},"body":{"license.html":{}}}],["east",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1410,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4379,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3983,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3964,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3804,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4241,"title":{},"body":{"license.html":{}}}],["egg",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1560,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4408,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":307,"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":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.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":{}}}],["element.style.display",{"_index":857,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1611,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":47,"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":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":4038,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4422,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3898,"title":{},"body":{"license.html":{}}}],["enabled",{"_index":793,"title":{},"body":{"modules/AppModule.html":{}}}],["enables",{"_index":3859,"title":{},"body":{"license.html":{}}}],["encryption",{"_index":62,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["end",{"_index":3643,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":706,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4275,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3987,"title":{},"body":{"license.html":{}}}],["engine",{"_index":63,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/W3.html":{}}}],["engineer",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":860,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4309,"title":{},"body":{"license.html":{}}}],["entire",{"_index":4008,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4326,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4231,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":2982,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2978,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":3650,"title":{},"body":{"index.html":{}}}],["env.example",{"_index":3652,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3653,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":171,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.dashboardurl",{"_index":2699,"title":{},"body":{"components/PagesComponent.html":{}}}],["environment.dev.ts",{"_index":3656,"title":{},"body":{"index.html":{}}}],["environment.loggingurl}/api/logs",{"_index":789,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":785,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3657,"title":{},"body":{"index.html":{}}}],["environment.production",{"_index":794,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.registryaddress",{"_index":2760,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":787,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.trusteddeclaratoraddress",{"_index":3234,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment.web3provider",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3939,"title":{},"body":{"license.html":{}}}],["err",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1370,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1377,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1385,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3767,"title":{},"body":{"license.html":{}}}],["error",{"_index":325,"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/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.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":{},"miscellaneous/functions.html":{}}}],["error's",{"_index":1451,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error('the",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1462,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1459,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1464,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1461,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.statustext",{"_index":1483,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1460,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":324,"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/NetworkStatusComponent.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":666,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["errorevent",{"_index":1372,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":765,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":757,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1369,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errors",{"_index":1286,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorstatematcher",{"_index":1255,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1437,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1468,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1470,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3900,"title":{},"body":{"license.html":{}}}],["establish",{"_index":177,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2611,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3435,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3218,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2612,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":193,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":671,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["event.detail.tx",{"_index":744,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":2939,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["events",{"_index":1550,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["eventtype",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["everyone",{"_index":3688,"title":{},"body":{"license.html":{}}}],["evm",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3833,"title":{},"body":{"license.html":{}}}],["example",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["except",{"_index":3848,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1417,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["exceptions",{"_index":4140,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3152,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4083,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4313,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4399,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4265,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3944,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4319,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3889,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3641,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3849,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4242,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3984,"title":{},"body":{"license.html":{}}}],["existing",{"_index":1269,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["expand",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":586,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4104,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4103,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3758,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3933,"title":{},"body":{"license.html":{}}}],["export",{"_index":84,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{}}}],["exportcsv",{"_index":412,"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":3561,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":441,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":633,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3079,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3363,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2855,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":83,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"interfaces/Transaction.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["express",{"_index":4271,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4349,"title":{},"body":{"license.html":{}}}],["expression",{"_index":1295,"title":{},"body":{"classes/CustomValidator.html":{}}}],["expressly",{"_index":4188,"title":{},"body":{"license.html":{}}}],["extend",{"_index":1621,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["extended",{"_index":4299,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1419,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["extensions",{"_index":4023,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3867,"title":{},"body":{"license.html":{}}}],["external",{"_index":3438,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2739,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4171,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3945,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1398,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3400,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4201,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4374,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3938,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["falcon",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fallsback",{"_index":191,"title":{},"body":{"classes/AccountIndex.html":{}}}],["false",{"_index":148,"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":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4089,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3830,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4098,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3623,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3739,"title":{},"body":{"license.html":{}}}],["feels",{"_index":716,"title":{},"body":{"components/AppComponent.html":{}}}],["female",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.cicmetaurl",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetch(environment.cicmetaurl).then((response",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetch(environment.publickeysurl).then((res",{"_index":1060,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":2974,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetching",{"_index":3574,"title":{},"body":{"miscellaneous/functions.html":{}}}],["fia",{"_index":3419,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"classes/CustomValidator.html":{},"modules/PagesModule.html":{},"directives/PasswordToggleDirective.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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2744,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3562,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3618,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":444,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filters",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3332,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["final",{"_index":1177,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["finalize",{"_index":1554,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3243,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":4068,"title":{},"body":{"license.html":{}}}],["fingerprint",{"_index":2627,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4352,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2682,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":4042,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2660,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3923,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3814,"title":{},"body":{"license.html":{}}}],["following",{"_index":4269,"title":{},"body":{"license.html":{}}}],["food",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1401,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":328,"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/NetworkStatusComponent.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":1403,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1402,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":327,"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/NetworkStatusComponent.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":329,"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/NetworkStatusComponent.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":3982,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1394,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3941,"title":{},"body":{"license.html":{}}}],["form",{"_index":1249,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["form.submitted",{"_index":1271,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":3565,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["format:lint",{"_index":3667,"title":{},"body":{"index.html":{}}}],["formatting",{"_index":3658,"title":{},"body":{"index.html":{}}}],["formbuilder",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1258,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":255,"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":4034,"title":{},"body":{"license.html":{}}}],["forward",{"_index":2513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["forwarded",{"_index":1491,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{}}}],["found",{"_index":296,"title":{},"body":{"components/AccountSearchComponent.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["foundation",{"_index":3685,"title":{},"body":{"license.html":{}}}],["free",{"_index":3683,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3701,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3742,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3220,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1172,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["fruit",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3967,"title":{},"body":{"license.html":{}}}],["full",{"_index":520,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":1480,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functionality",{"_index":2620,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["functioning",{"_index":4114,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2535,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3772,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3670,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3791,"title":{},"body":{"license.html":{}}}],["g",{"_index":3604,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gb",{"_index":3388,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["ge",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":17,"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":1203,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1476,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1450,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3913,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3620,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":1191,"title":{},"body":{"interfaces/Conversion.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"index.html":{}}}],["ger",{"_index":2613,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2614,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["get(`${environment.cicmetaurl}/areanames",{"_index":1535,"title":{},"body":{"injectables/LocationService.html":{}}}],["get(`${environment.cicmetaurl}/areatypes",{"_index":1543,"title":{},"body":{"injectables/LocationService.html":{}}}],["getaccountdetailsfrommeta(await",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3192,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountregistry",{"_index":2746,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getaccounttypes",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3425,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1512,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanamebylocation(location",{"_index":1519,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1513,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1514,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypebyarea(area",{"_index":1522,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1515,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3056,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3057,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getgenders",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getinstance",{"_index":3444,"title":{},"body":{"injectables/Web3Service.html":{}}}],["getkeyformstub",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeystore",{"_index":1498,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["getorganizationformstub",{"_index":2594,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["getprivatekeyinfo",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["getpublickeys",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["getregistry",{"_index":2747,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getsessiontoken",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["getter.ts",{"_index":3468,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3595,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":2994,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3003,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbyaddress",{"_index":2995,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbyaddress(address",{"_index":3005,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2996,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":3007,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenname",{"_index":2997,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenregistry",{"_index":2748,"title":{},"body":{"injectables/RegistryService.html":{}}}],["gettokens",{"_index":2998,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokensymbol",{"_index":2999,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{}}}],["gettrustedusers",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3391,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3427,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3392,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3430,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getwithtoken",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["githeri",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":4000,"title":{},"body":{"license.html":{}}}],["given",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":4015,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3752,"title":{},"body":{"license.html":{}}}],["global",{"_index":1425,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["globalerrorhandler",{"_index":758,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3677,"title":{},"body":{"license.html":{}}}],["go",{"_index":3672,"title":{},"body":{"index.html":{}}}],["goats",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4143,"title":{},"body":{"license.html":{}}}],["government",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3747,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4167,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3928,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4221,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4434,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1409,"title":{},"body":{"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3738,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4391,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3407,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3704,"title":{},"body":{"license.html":{}}}],["guard",{"_index":861,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4420,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":1375,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{}}}],["handled",{"_index":2533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1421,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1426,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handlenetworkchange",{"_index":2568,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["handler",{"_index":717,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handler.ts",{"_index":1414,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["handler.ts:104",{"_index":1442,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:16",{"_index":1496,"title":{},"body":{"classes/HttpError.html":{}}}],["handler.ts:41",{"_index":1424,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:58",{"_index":1427,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:84",{"_index":1435,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleroute",{"_index":2517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handlers",{"_index":2516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handles",{"_index":1345,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handling",{"_index":1418,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hanje",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1479,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":1190,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3272,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":202,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":3943,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["height",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["help",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["hera",{"_index":3413,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4261,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4195,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4149,"title":{},"body":{"license.html":{}}}],["holding",{"_index":2634,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["holel",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":301,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hook",{"_index":1415,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hope",{"_index":4404,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":686,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2804,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":746,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":742,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":660,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4069,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4090,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_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":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.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":{}}}],["htmlelement",{"_index":727,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1347,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["http://localhost:4200",{"_index":3615,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":770,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":1517,"title":{},"body":{"injectables/LocationService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":771,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":759,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":847,"title":{"classes/HttpError.html":{}},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror('unknown",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperror('you",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperror.message",{"_index":848,"title":{},"body":{"components/AuthComponent.html":{}}}],["httperrorresponse",{"_index":1362,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1473,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1363,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2753,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1355,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1364,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1354,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1553,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3129,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":4472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3687,"title":{},"body":{"license.html":{}}}],["https://meta",{"_index":4455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://user.dev.grassrootseconomics.net",{"_index":4466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4406,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4430,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4417,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2727,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2740,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2738,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2725,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":67,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4289,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2973,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identifiers",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["identifying",{"_index":37,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["identities",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2701,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2735,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":1623,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["implementation",{"_index":864,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.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":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{}}}],["implied",{"_index":4314,"title":{},"body":{"license.html":{}}}],["import",{"_index":165,"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":{},"interfaces/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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then((m",{"_index":802,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then((m",{"_index":2716,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then((m",{"_index":2720,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then((m",{"_index":804,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then((m",{"_index":2714,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then((m",{"_index":2718,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then((m",{"_index":2712,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["importing",{"_index":4253,"title":{},"body":{"license.html":{}}}],["imports",{"_index":168,"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":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4176,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4316,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4368,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4371,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3686,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4365,"title":{},"body":{"license.html":{}}}],["include",{"_index":3890,"title":{},"body":{"license.html":{}}}],["included",{"_index":3892,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3853,"title":{},"body":{"license.html":{}}}],["including",{"_index":3909,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":4032,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2948,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2953,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3773,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4423,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4093,"title":{},"body":{"license.html":{}}}],["indemnification",{"_index":4172,"title":{},"body":{"license.html":{}}}],["independent",{"_index":4021,"title":{},"body":{"license.html":{}}}],["index",{"_index":10,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4224,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4186,"title":{},"body":{"license.html":{}}}],["individual",{"_index":1267,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["individuals",{"_index":3779,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":1810,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{}}}],["inform",{"_index":4076,"title":{},"body":{"license.html":{}}}],["information",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4222,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4251,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3846,"title":{},"body":{"license.html":{}}}],["init",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["initial",{"_index":1178,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["initialization",{"_index":1351,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["initialize",{"_index":1452,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["initialized",{"_index":530,"title":{},"body":{"interfaces/Action.html":{}}}],["initializing",{"_index":2633,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["initialparams",{"_index":550,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4245,"title":{},"body":{"license.html":{}}}],["initiator",{"_index":1180,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["inject",{"_index":1316,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1314,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":894,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.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/KeystoreService.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":{},"injectables/Web3Service.html":{},"coverage.html":{}}}],["injectables",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{},"overview.html":{}}}],["input",{"_index":1262,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2802,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":1278,"title":{},"body":{"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":1619,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"license.html":{}}}],["install",{"_index":3603,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4110,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4124,"title":{},"body":{"license.html":{}}}],["instance",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["instanceof",{"_index":1371,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4429,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":3994,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3703,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3986,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3862,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3864,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1349,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1353,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":1341,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["interceptors",{"_index":1342,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercepts",{"_index":1344,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":4045,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4239,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4116,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["internal",{"_index":2515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["internally",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interpretation",{"_index":4378,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3907,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3921,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{}}}],["invalidate",{"_index":4016,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3930,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1590,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1324,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1036,"title":{},"body":{"injectables/AuthService.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":{}}}],["isvalidkeycheck",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1422,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1434,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["it's",{"_index":1438,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":1606,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"license.html":{}}}],["items",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["itself",{"_index":4129,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3402,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3394,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3528,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2786,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify",{"_index":1386,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3679,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kadongo",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kandongo",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3642,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasauni",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2607,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":3993,"title":{},"body":{"license.html":{}}}],["keki",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2608,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3901,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":836,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["keyform",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyring",{"_index":3484,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["keys",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["keystore",{"_index":2624,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["keystore.getprivatekey",{"_index":3300,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keystoreservice",{"_index":972,"title":{"injectables/KeystoreService.html":{}},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["keystoreservice.getkeystore",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["keystoreservice.mutablekeystore",{"_index":1503,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["keyword",{"_index":1539,"title":{},"body":{"injectables/LocationService.html":{}}}],["keywords",{"_index":1537,"title":{},"body":{"injectables/LocationService.html":{}}}],["khaimati",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":78,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3858,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3695,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3724,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4278,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4287,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kokotoni",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3885,"title":{},"body":{"license.html":{}}}],["larger",{"_index":4025,"title":{},"body":{"license.html":{}}}],["last",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":710,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3818,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4249,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3622,"title":{},"body":{"index.html":{}}}],["leader",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3753,"title":{},"body":{"license.html":{}}}],["legend",{"_index":305,"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/NetworkStatusComponent.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":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4428,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":784,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4431,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4152,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3845,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3888,"title":{},"body":{"license.html":{}}}],["library",{"_index":4084,"title":{},"body":{"license.html":{}}}],["license",{"_index":3676,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3822,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3825,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3827,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3696,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4226,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4165,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4219,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limitation",{"_index":4362,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4350,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4151,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4400,"title":{},"body":{"license.html":{}}}],["line:directive",{"_index":2800,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["line:no",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["lines",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2794,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3918,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4426,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2803,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["linting",{"_index":3668,"title":{},"body":{"index.html":{}}}],["list",{"_index":3874,"title":{},"body":{"license.html":{}}}],["literal",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Token.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4246,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":720,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TokenService.html":{}}}],["loadchildren",{"_index":801,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":884,"title":{},"body":{"guards/AuthGuard.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["loading",{"_index":814,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loan",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":3609,"title":{},"body":{"index.html":{},"license.html":{}}}],["localstorage",{"_index":893,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["localstorage.removeitem(btoa('cicada_private_key",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{}}}],["located",{"_index":3647,"title":{},"body":{"index.html":{}}}],["location",{"_index":19,"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":{}}}],["location.tolowercase().split",{"_index":1538,"title":{},"body":{"injectables/LocationService.html":{}}}],["locationservice",{"_index":1205,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1423,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1441,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":778,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":776,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":783,"title":{},"body":{"modules/AppModule.html":{}}}],["logging",{"_index":1352,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["logginginterceptor",{"_index":760,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":576,"title":{"injectables/LoggingService.html":{}},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logic",{"_index":187,"title":{},"body":{"classes/AccountIndex.html":{}}}],["login",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresult",{"_index":844,"title":{},"body":{"components/AuthComponent.html":{}}}],["loginview",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["logs",{"_index":1444,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["long",{"_index":3940,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":43,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4369,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4372,"title":{},"body":{"license.html":{}}}],["lower",{"_index":2951,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":206,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":72,"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/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2717,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2721,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":803,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":805,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2715,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2719,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2713,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":4035,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":1263,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Staff.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["madewani",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongoni",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4410,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4064,"title":{},"body":{"license.html":{}}}],["maize",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3895,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3707,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3958,"title":{},"body":{"license.html":{}}}],["makina",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3832,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2857,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3598,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":874,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4262,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3771,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["map",{"_index":1297,"title":{},"body":{"classes/CustomValidator.html":{}}}],["march",{"_index":4311,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3763,"title":{},"body":{"license.html":{}}}],["market",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4170,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3820,"title":{},"body":{"license.html":{}}}],["mason",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1317,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":492,"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":494,"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":484,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":236,"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:17",{"_index":1261,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2782,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":86,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1327,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2892,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1332,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2649,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2666,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4130,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":489,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.min(this.transactions.length",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["math.pow(10",{"_index":2963,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":496,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":487,"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":2876,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":505,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3089,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2874,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":503,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":498,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3090,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3112,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":510,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(tokens",{"_index":3078,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3355,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattabledatasource(users",{"_index":2851,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattablemodule",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":501,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3092,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3408,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4180,"title":{},"body":{"license.html":{}}}],["means",{"_index":3817,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3966,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3979,"title":{},"body":{"license.html":{}}}],["meat",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":657,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1627,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":681,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3989,"title":{},"body":{"license.html":{}}}],["meet",{"_index":4002,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3877,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1605,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":352,"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/NetworkStatusComponent.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":354,"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/NetworkStatusComponent.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":4351,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3861,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4235,"title":{},"body":{"license.html":{}}}],["meru",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":60,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1463,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["messages",{"_index":1254,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["met",{"_index":3932,"title":{},"body":{"license.html":{}}}],["meta",{"_index":52,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":223,"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/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{}}}],["metal",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":71,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":542,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["methods",{"_index":104,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["methodsignature",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2952,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mined",{"_index":1188,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["minheight",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{}}}],["mining",{"_index":1181,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["minting",{"_index":2925,"title":{},"body":{"interfaces/Token.html":{}}}],["minyenzeni",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3539,"title":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4161,"title":{},"body":{"license.html":{}}}],["miti",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjinga",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlaleo",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyuchi",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mock",{"_index":553,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mockbackendinterceptor",{"_index":1638,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":773,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1594,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{},"license.html":{}}}],["model",{"_index":4050,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3813,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3880,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3762,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":4007,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3735,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3851,"title":{},"body":{"license.html":{}}}],["module",{"_index":452,"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":454,"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":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":887,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["more",{"_index":3671,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4206,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1563,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoro",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mshomoroni",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":797,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mulunguni",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutablekeystore",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":780,"title":{},"body":{"modules/AppModule.html":{},"injectables/KeystoreService.html":{},"coverage.html":{}}}],["mutumba",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":50,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":119,"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":{},"interfaces/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":{},"components/NetworkStatusComponent.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["name(s",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["nandi",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["native",{"_index":1618,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["nature",{"_index":4022,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3614,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2795,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":871,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["navigator.online",{"_index":2575,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["nazi",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4359,"title":{},"body":{"license.html":{}}}],["need",{"_index":3728,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3792,"title":{},"body":{"license.html":{}}}],["network",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.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":{},"interfaces/W3.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["networkstatuscomponent",{"_index":330,"title":{"components/NetworkStatusComponent.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/NetworkStatusComponent.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":{}}}],["new",{"_index":184,"title":{},"body":{"classes/AccountIndex.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":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newevent",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newevent(tx",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/RouterLinkDirectiveStub.html":{},"license.html":{}}}],["next.handle(request",{"_index":1495,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1367,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1558,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3607,"title":{},"body":{"index.html":{}}}],["ngafterviewinit",{"_index":3333,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1260,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":469,"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":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.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":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":777,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1574,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.debug",{"_index":4451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.error",{"_index":4473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nobody",{"_index":1477,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["nointernetconnection",{"_index":2567,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["non",{"_index":3808,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4057,"title":{},"body":{"license.html":{}}}],["none",{"_index":858,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1303,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3893,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4088,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4220,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3870,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3866,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4207,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4202,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4148,"title":{},"body":{"license.html":{}}}],["now",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3602,"title":{},"body":{"index.html":{}}}],["null",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["number",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"injectables/BlockSyncService.html":{},"interfaces/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":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3248,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3250,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2962,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4339,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{}}}],["numbers",{"_index":3551,"title":{},"body":{"miscellaneous/functions.html":{}}}],["nurse",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.challenge",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3472,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":64,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/Conversion.html":{},"classes/CustomValidator.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["object.keys(areanames).find((key",{"_index":1541,"title":{},"body":{"injectables/LocationService.html":{}}}],["object.keys(areatypes).find((key",{"_index":1547,"title":{},"body":{"injectables/LocationService.html":{}}}],["object.keys(res",{"_index":1227,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["objects",{"_index":1430,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["obligate",{"_index":4323,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4071,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3968,"title":{},"body":{"license.html":{}}}],["observable",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.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":558,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4056,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1374,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4217,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":1433,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["of('hello",{"_index":3322,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3751,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4078,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4060,"title":{},"body":{"license.html":{}}}],["office",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3882,"title":{},"body":{"license.html":{}}}],["offline",{"_index":2581,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["offset",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanames",{"_index":2547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypes",{"_index":2548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categories",{"_index":2549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3654,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2805,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3886,"title":{},"body":{"license.html":{}}}],["oninit",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.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":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["online",{"_index":2582,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["onmenuselect",{"_index":1609,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1631,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onphonesearch",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":659,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":678,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2625,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2658,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2626,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2659,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1325,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1329,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2656,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2667,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.keyring",{"_index":4476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["openpgp.signature",{"_index":2687,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2692,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4375,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4063,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3903,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3560,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["option",{"_index":4145,"title":{},"body":{"license.html":{}}}],["optional",{"_index":12,"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":{},"components/NetworkStatusComponent.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":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["options).then((response",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{}}}],["opts",{"_index":2673,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4215,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2603,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2584,"title":{},"body":{"components/OrganizationComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":333,"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/NetworkStatusComponent.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":2586,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2585,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":332,"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/NetworkStatusComponent.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":2587,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2588,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3828,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4162,"title":{},"body":{"license.html":{}}}],["original",{"_index":4163,"title":{},"body":{"license.html":{}}}],["others",{"_index":3730,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":467,"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":1346,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["outlet",{"_index":885,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":2942,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["outputs",{"_index":2935,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["outside",{"_index":3951,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3673,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4258,"title":{},"body":{"license.html":{}}}],["owner",{"_index":2913,"title":{},"body":{"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{}}}],["package",{"_index":3511,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":4014,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3894,"title":{},"body":{"license.html":{}}}],["page",{"_index":715,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2695,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":335,"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/NetworkStatusComponent.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":2711,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2697,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2696,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":476,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":650,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":651,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2708,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2709,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2873,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2871,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2872,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3088,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3086,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3087,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3380,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3378,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3379,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":500,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":334,"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/NetworkStatusComponent.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":369,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2702,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2706,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4409,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4192,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4270,"title":{},"body":{"license.html":{}}}],["param",{"_index":181,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"interfaces/W3.html":{}}}],["parameters",{"_index":118,"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":{},"components/NetworkStatusComponent.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":{},"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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["parrafin",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsed",{"_index":3580,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parsedata",{"_index":3470,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3578,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3226,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["parses",{"_index":3579,"title":{},"body":{"miscellaneous/functions.html":{}}}],["part",{"_index":188,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["particular",{"_index":886,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3860,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":896,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4237,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passed",{"_index":189,"title":{},"body":{"classes/AccountIndex.html":{}}}],["password",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2736,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1280,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1282,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":356,"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/NetworkStatusComponent.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":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4191,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3795,"title":{},"body":{"license.html":{}}}],["path",{"_index":517,"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":519,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3777,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1281,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1290,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4305,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4074,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4077,"title":{},"body":{"license.html":{}}}],["peku",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["perform",{"_index":1277,"title":{},"body":{"classes/CustomValidator.html":{},"index.html":{}}}],["performance",{"_index":4355,"title":{},"body":{"license.html":{}}}],["performed",{"_index":526,"title":{},"body":{"interfaces/Action.html":{}}}],["performing",{"_index":3914,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4200,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3754,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3927,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":3996,"title":{},"body":{"license.html":{}}}],["permit",{"_index":4031,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4182,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3689,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4119,"title":{},"body":{"license.html":{}}}],["person",{"_index":3587,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{}}}],["personvalidation",{"_index":3475,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3585,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4321,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2617,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":302,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":4039,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4054,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3723,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":1815,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(delay(500",{"_index":2511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(first",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["pipe(materialize",{"_index":2510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipes",{"_index":2809,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2816,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["pk",{"_index":2668,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2672,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2670,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4062,"title":{},"body":{"license.html":{}}}],["plastic",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":708,"title":{},"body":{"components/AppComponent.html":{},"license.html":{}}}],["plumb",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4240,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4401,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popperjs/core",{"_index":3521,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3655,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4081,"title":{},"body":{"license.html":{}}}],["posho",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":4051,"title":{},"body":{"license.html":{}}}],["possession",{"_index":4011,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4377,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4392,"title":{},"body":{"license.html":{}}}],["post",{"_index":2523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3981,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3697,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3783,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3694,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3809,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3780,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4238,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3879,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":799,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":808,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2628,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2646,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4334,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3873,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4156,"title":{},"body":{"license.html":{}}}],["prettier",{"_index":3660,"title":{},"body":{"index.html":{}}}],["prettierrc",{"_index":3665,"title":{},"body":{"index.html":{}}}],["prevent",{"_index":3729,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4115,"title":{},"body":{"license.html":{}}}],["previous",{"_index":562,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3718,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4307,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["prior",{"_index":4203,"title":{},"body":{"license.html":{}}}],["private",{"_index":277,"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":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TokenService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["privatekey",{"_index":3299,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":3302,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":3301,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3305,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2674,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3765,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4111,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4295,"title":{},"body":{"license.html":{}}}],["prod",{"_index":3613,"title":{},"body":{"index.html":{}}}],["produce",{"_index":3906,"title":{},"body":{"license.html":{}}}],["product",{"_index":4040,"title":{},"body":{"license.html":{}}}],["production",{"_index":3632,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3706,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3988,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3715,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4389,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["progressive",{"_index":3635,"title":{},"body":{"index.html":{}}}],["prohibit",{"_index":3782,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3977,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4302,"title":{},"body":{"license.html":{}}}],["project",{"_index":3599,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3876,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3869,"title":{},"body":{"license.html":{}}}],["promise",{"_index":138,"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":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1501,"title":{},"body":{"injectables/KeystoreService.html":{},"injectables/RegistryService.html":{}}}],["propagate",{"_index":3840,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4223,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3852,"title":{},"body":{"license.html":{}}}],["properties",{"_index":11,"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":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.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/Signature-1.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"miscellaneous/variables.html":{}}}],["property",{"_index":4087,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3805,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3726,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3775,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3756,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4134,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3645,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4356,"title":{},"body":{"license.html":{}}}],["provide",{"_index":795,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"license.html":{}}}],["providedin",{"_index":897,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["provider",{"_index":1247,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["providers",{"_index":458,"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":92,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["provision",{"_index":3790,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4197,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4343,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4345,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/KeystoreService.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["publicity",{"_index":4164,"title":{},"body":{"license.html":{}}}],["publickeys",{"_index":698,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4135,"title":{},"body":{"license.html":{}}}],["publish",{"_index":3992,"title":{},"body":{"license.html":{}}}],["published",{"_index":4340,"title":{},"body":{"license.html":{}}}],["pump",{"_index":565,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3798,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4091,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4292,"title":{},"body":{"license.html":{}}}],["pwa",{"_index":3633,"title":{},"body":{"index.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3442,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4212,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4354,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":1540,"title":{},"body":{"injectables/LocationService.html":{}}}],["queriedareatype",{"_index":1546,"title":{},"body":{"injectables/LocationService.html":{}}}],["queriedtoken",{"_index":3045,"title":{},"body":{"injectables/TokenService.html":{}}}],["querying",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2790,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["r",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio",{"_index":2926,"title":{},"body":{"interfaces/Token.html":{}}}],["ratio.pipe",{"_index":2891,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2959,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2961,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2604,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":707,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":508,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":3584,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["readable",{"_index":4036,"title":{},"body":{"license.html":{}}}],["readarmored(signature.data",{"_index":2688,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["readcsv",{"_index":3471,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3581,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4280,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4138,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["reads",{"_index":3582,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ready",{"_index":3789,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1075,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["reason",{"_index":4290,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4052,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4210,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3721,"title":{},"body":{"license.html":{}}}],["received",{"_index":3743,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4228,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4297,"title":{},"body":{"license.html":{}}}],["recently",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1184,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4288,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3102,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3740,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamations",{"_index":2501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3883,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1063,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":518,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4395,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3675,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3717,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3816,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4325,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4144,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":4013,"title":{},"body":{"license.html":{}}}],["regards",{"_index":1252,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["regenerate",{"_index":3925,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1296,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1305,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1291,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["registry",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.getcontractaddressbyname('accountregistry",{"_index":2775,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registry.getcontractaddressbyname('tokenregistry",{"_index":2769,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registry.ts",{"_index":2965,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":2969,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":2970,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2968,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":2972,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":2979,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":2983,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1109,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.accountregistry",{"_index":2773,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.filegetter",{"_index":2761,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.getregistry",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["registryservice.gettokenregistry",{"_index":3023,"title":{},"body":{"injectables/TokenService.html":{}}}],["registryservice.registry",{"_index":2759,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2764,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.registry.load",{"_index":2765,"title":{},"body":{"injectables/RegistryService.html":{}}}],["registryservice.tokenregistry",{"_index":2767,"title":{},"body":{"injectables/RegistryService.html":{}}}],["regular",{"_index":1294,"title":{},"body":{"classes/CustomValidator.html":{}}}],["reinstated",{"_index":4196,"title":{},"body":{"license.html":{}}}],["reject",{"_index":1059,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{},"injectables/RegistryService.html":{}}}],["reject('unable",{"_index":2770,"title":{},"body":{"injectables/RegistryService.html":{}}}],["reject(rejectbody(res",{"_index":1064,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejectbody",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["rejectbody(error",{"_index":1481,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"miscellaneous/functions.html":{}}}],["relationship",{"_index":3952,"title":{},"body":{"license.html":{}}}],["released",{"_index":3711,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":4004,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4183,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3617,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4279,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4070,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3709,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":180,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4147,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4146,"title":{},"body":{"license.html":{}}}],["rename",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["render",{"_index":3807,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4370,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1612,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1613,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["rendering",{"_index":1624,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":554,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4108,"title":{},"body":{"license.html":{}}}],["represents",{"_index":890,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1348,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone",{"_index":1493,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1494,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1561,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.url.startswith(environment.cicmetaurl",{"_index":1492,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.urlwithparams",{"_index":1562,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requests",{"_index":1357,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2605,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":175,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3225,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":303,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":4006,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4073,"title":{},"body":{"license.html":{}}}],["requires",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3831,"title":{},"body":{"license.html":{}}}],["res",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1061,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3164,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":2924,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{}}}],["reserveratio",{"_index":2918,"title":{},"body":{"interfaces/Token.html":{}}}],["reserves",{"_index":2919,"title":{},"body":{"interfaces/Token.html":{}}}],["reset",{"_index":466,"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":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":725,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1502,"title":{},"body":{"injectables/KeystoreService.html":{},"injectables/RegistryService.html":{}}}],["resolve(keystoreservice.mutablekeystore",{"_index":1505,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["resolve(registryservice.accountregistry",{"_index":2777,"title":{},"body":{"injectables/RegistryService.html":{}}}],["resolve(registryservice.registry",{"_index":2766,"title":{},"body":{"injectables/RegistryService.html":{}}}],["resolve(registryservice.tokenregistry",{"_index":2772,"title":{},"body":{"injectables/RegistryService.html":{}}}],["resolve(res.text",{"_index":1065,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["resource",{"_index":1396,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["resources",{"_index":3575,"title":{},"body":{"miscellaneous/functions.html":{}}}],["respect",{"_index":3736,"title":{},"body":{"license.html":{}}}],["response",{"_index":70,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["response.headers.get('token",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.headers.get('www",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.ok",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["response.status",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["responsebody",{"_index":2559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4229,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3797,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3978,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4181,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4178,"title":{},"body":{"license.html":{}}}],["result",{"_index":85,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3834,"title":{},"body":{"license.html":{}}}],["results",{"_index":87,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4122,"title":{},"body":{"license.html":{}}}],["return",{"_index":159,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"license.html":{}}}],["returned",{"_index":1298,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":137,"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/KeystoreService.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"injectables/Web3Service.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2791,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3166,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3107,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4380,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4332,"title":{},"body":{"license.html":{}}}],["revokeaction(action.id",{"_index":631,"title":{},"body":{"components/AdminComponent.html":{}}}],["rewards",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4117,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3727,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4353,"title":{},"body":{"license.html":{}}}],["road",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":525,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2778,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2784,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4125,"title":{},"body":{"license.html":{}}}],["root",{"_index":654,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/KeystoreService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["root'},{'name",{"_index":319,"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/NetworkStatusComponent.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":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2787,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2788,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":249,"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/TransactionDetailsComponent.html":{}}}],["routerlink",{"_index":2796,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["routerlinkdirectivestub",{"_index":358,"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/NetworkStatusComponent.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":516,"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":521,"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":807,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":878,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":515,"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":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1475,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1472,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":473,"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":514,"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":588,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":632,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4244,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":3663,"title":{},"body":{"index.html":{},"license.html":{}}}],["run",{"_index":3601,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3638,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3904,"title":{},"body":{"license.html":{}}}],["runtime",{"_index":1432,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["rural",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":560,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.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":414,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s.signature",{"_index":2681,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2811,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2808,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4397,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3761,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4252,"title":{},"body":{"license.html":{}}}],["sales",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3741,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2818,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":79,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["satisfy",{"_index":4072,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savedindex",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["savings",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4067,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3619,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2821,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["sch",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schema",{"_index":3589,"title":{},"body":{"miscellaneous/functions.html":{}}}],["school",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4301,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3630,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3910,"title":{},"body":{"license.html":{}}}],["search",{"_index":228,"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":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/NetworkStatusComponent.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":509,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":250,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:37",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:39",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:42",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:46",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:66",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["searching",{"_index":2826,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["secondarily",{"_index":3844,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3224,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3304,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3957,"title":{},"body":{"license.html":{}}}],["sections",{"_index":1447,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["security",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3651,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["select",{"_index":2514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["selection",{"_index":1607,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive",{"_index":2889,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1603,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:25",{"_index":1625,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:8",{"_index":1614,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":226,"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/NetworkStatusComponent.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":4267,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3441,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3819,"title":{},"body":{"license.html":{}}}],["send",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1566,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1576,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1183,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["senderaddress",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3103,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1567,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1578,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1568,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1580,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1569,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1582,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1570,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1584,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendsignedchallenge",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendsignedchallenge(hobaresponseencoded",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1571,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1586,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1572,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1588,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentence",{"_index":1446,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sentencesforwarninglogging",{"_index":1420,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4080,"title":{},"body":{"license.html":{}}}],["separate",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":4017,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2980,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["serve",{"_index":3608,"title":{},"body":{"index.html":{}}}],["server",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":788,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":786,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3897,"title":{},"body":{"license.html":{}}}],["service",{"_index":190,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["services",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["serviceworkermodule",{"_index":782,"title":{},"body":{"modules/AppModule.html":{}}}],["serviceworkermodule.register('ngsw",{"_index":791,"title":{},"body":{"modules/AppModule.html":{}}}],["servicing",{"_index":4360,"title":{},"body":{"license.html":{}}}],["session",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":898,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":557,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["setconversion",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":555,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["sets",{"_index":1285,"title":{},"body":{"classes/CustomValidator.html":{}}}],["setsessiontoken",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["setsessiontoken(token",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["settimeout",{"_index":2577,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["setting",{"_index":1486,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["settings",{"_index":1085,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":337,"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/NetworkStatusComponent.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":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2836,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2835,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter",{"_index":1166,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":336,"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/NetworkStatusComponent.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":2865,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2869,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2635,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3962,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":561,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3916,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":463,"title":{"modules/SharedModule.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":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4412,"title":{},"body":{"license.html":{}}}],["show",{"_index":3744,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1373,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":726,"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":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/NetworkStatusComponent.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":2899,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2898,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":737,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":736,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":740,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1635,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":731,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":733,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":734,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1637,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":338,"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/NetworkStatusComponent.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":340,"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/NetworkStatusComponent.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":2691,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2629,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2650,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(opts",{"_index":2676,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signable",{"_index":2647,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":55,"title":{"interfaces/Signature.html":{},"interfaces/Signature-1.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signatureobject",{"_index":3303,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3309,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(0",{"_index":3306,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3308,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signer",{"_index":130,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2619,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts:109",{"_index":2651,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:11",{"_index":2903,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:144",{"_index":2655,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2904,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:34",{"_index":2905,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:36",{"_index":2906,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:42",{"_index":2907,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:48",{"_index":2908,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:54",{"_index":2909,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:60",{"_index":2636,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:62",{"_index":2637,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:64",{"_index":2638,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:66",{"_index":2639,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:68",{"_index":2640,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:70",{"_index":2641,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:72",{"_index":2643,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:74",{"_index":2632,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:90",{"_index":2645,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:99",{"_index":2648,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4109,"title":{},"body":{"license.html":{}}}],["signing",{"_index":2621,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["signs",{"_index":2652,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["silc",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3418,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3976,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4320,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4293,"title":{},"body":{"license.html":{}}}],["size",{"_index":4477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2741,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smallest",{"_index":2922,"title":{},"body":{"interfaces/Token.html":{}}}],["smokie",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3165,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3111,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2954,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socket",{"_index":2833,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["socks",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3684,"title":{},"body":{"license.html":{}}}],["soko",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4092,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3942,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3954,"title":{},"body":{"license.html":{}}}],["something",{"_index":711,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":2306,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1173,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["south",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":3716,"title":{},"body":{"license.html":{}}}],["special",{"_index":3801,"title":{},"body":{"license.html":{}}}],["specific",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3920,"title":{},"body":{"license.html":{}}}],["specified",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4338,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4341,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":507,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4333,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4441,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4438,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3540,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3541,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4442,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4443,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4444,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3542,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../global",{"_index":3546,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3543,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4440,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3544,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3545,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../sync.ts",{"_index":3547,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4439,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:125",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:22",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:24",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:26",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:61",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:82",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:99",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":2964,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:21",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:38",{"_index":879,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2779,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:21",{"_index":2780,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:38",{"_index":2781,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3457,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3460,"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":1293,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3463,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1413,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/http",{"_index":3467,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3469,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3473,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/sync.ts",{"_index":3477,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1343,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:21",{"_index":1350,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:37",{"_index":1356,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1484,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1549,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1551,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:35",{"_index":1552,"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":523,"title":{},"body":{"interfaces/Action.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2820,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:10",{"_index":2831,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:13",{"_index":2825,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:4",{"_index":2828,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2829,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2830,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2910,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2916,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1170,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["src/app/_pgp/pgp",{"_index":2618,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:126",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:136",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:164",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:170",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:18",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:182",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:188",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:19",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:200",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:204",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:22",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:29",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:36",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:40",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:44",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:48",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:70",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:82",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:91",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1322,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/keystore.service.ts",{"_index":1497,"title":{},"body":{"injectables/KeystoreService.html":{},"coverage.html":{}}}],["src/app/_services/keystore.service.ts:12",{"_index":1500,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["src/app/_services/keystore.service.ts:8",{"_index":1499,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["src/app/_services/location.service.ts",{"_index":1506,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:11",{"_index":1525,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:12",{"_index":1527,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:13",{"_index":1529,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:15",{"_index":1530,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1532,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:17",{"_index":1518,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:21",{"_index":1521,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1520,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:40",{"_index":1524,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:47",{"_index":1523,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1565,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:15",{"_index":1587,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:19",{"_index":1577,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:23",{"_index":1583,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:27",{"_index":1585,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:31",{"_index":1589,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:35",{"_index":1579,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:39",{"_index":1581,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:7",{"_index":1575,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2742,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2754,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2756,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2757,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:15",{"_index":2752,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:17",{"_index":2750,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:35",{"_index":2751,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:50",{"_index":2749,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":2990,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:12",{"_index":3014,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3015,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3016,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3018,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:18",{"_index":3020,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:19",{"_index":3000,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:23",{"_index":3012,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":3002,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:41",{"_index":3010,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:49",{"_index":3006,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:60",{"_index":3008,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:70",{"_index":3004,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:75",{"_index":3009,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:80",{"_index":3011,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3177,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:105",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:138",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:153",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:158",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:165",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3211,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3188,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:41",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3494,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/web3.service.ts",{"_index":3443,"title":{},"body":{"injectables/Web3Service.html":{},"coverage.html":{}}}],["src/app/_services/web3.service.ts:13",{"_index":3446,"title":{},"body":{"injectables/Web3Service.html":{}}}],["src/app/_services/web3.service.ts:9",{"_index":3445,"title":{},"body":{"injectables/Web3Service.html":{}}}],["src/app/app",{"_index":798,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":653,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:100",{"_index":674,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:20",{"_index":685,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:21",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:37",{"_index":677,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:69",{"_index":679,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:94",{"_index":676,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2722,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":910,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:18",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:27",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:40",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:52",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:65",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:72",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":905,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":513,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":389,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:27",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:30",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:38",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:56",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:60",{"_index":388,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:66",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:77",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:85",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1196,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":652,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:35",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:45",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:64",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:75",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:79",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":649,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2710,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2694,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:11",{"_index":2698,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2707,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2583,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2592,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2593,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2589,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:18",{"_index":2590,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:26",{"_index":2595,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2591,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2878,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2834,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2843,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2845,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2847,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2848,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2846,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2838,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:26",{"_index":2842,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:36",{"_index":2839,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:40",{"_index":2840,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:44",{"_index":2841,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2870,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2929,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3094,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3059,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:16",{"_index":3072,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:17",{"_index":3071,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3073,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3074,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3075,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3065,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:25",{"_index":3068,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:39",{"_index":3066,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:43",{"_index":3070,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:47",{"_index":3067,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3085,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3100,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3381,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3324,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3348,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3349,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:25",{"_index":3343,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3344,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3350,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:28",{"_index":3347,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:29",{"_index":3351,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:30",{"_index":3352,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:31",{"_index":3346,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:33",{"_index":3345,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:34",{"_index":3335,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:42",{"_index":3340,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:60",{"_index":3342,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:64",{"_index":3336,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:68",{"_index":3338,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:81",{"_index":3339,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:86",{"_index":3337,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3377,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1602,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2810,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:10",{"_index":2815,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2958,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/unix",{"_index":3382,"title":{},"body":{"pipes/UnixDatePipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1306,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1400,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:10",{"_index":1405,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1406,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/network",{"_index":2562,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2884,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2897,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:12",{"_index":2901,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2900,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3095,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:12",{"_index":3099,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3098,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3222,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3223,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3648,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{}}}],["src/environments/environment.dev.ts",{"_index":3504,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3505,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3506,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2793,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1411,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3055,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3318,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3390,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stack",{"_index":1439,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["stadium",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":639,"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.userid",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3788,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3881,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3884,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4398,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3610,"title":{},"body":{"index.html":{}}}],["start:prod",{"_index":3612,"title":{},"body":{"index.html":{}}}],["start:pwa",{"_index":3636,"title":{},"body":{"index.html":{}}}],["started",{"_index":3596,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4413,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1557,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2792,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3931,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4185,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3451,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2610,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1279,"title":{},"body":{"classes/CustomValidator.html":{},"injectables/KeystoreService.html":{},"injectables/RegistryService.html":{},"injectables/Web3Service.html":{}}}],["stating",{"_index":3995,"title":{},"body":{"license.html":{}}}],["station",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["status'},{'name",{"_index":331,"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/NetworkStatusComponent.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":{}}}],["status.component",{"_index":2894,"title":{},"body":{"modules/SharedModule.html":{}}}],["status.component.html",{"_index":2566,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.scss",{"_index":2565,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts",{"_index":2564,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["status.component.ts:10",{"_index":2571,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:16",{"_index":2574,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:18",{"_index":2573,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status/network",{"_index":2563,"title":{},"body":{"components/NetworkStatusComponent.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["statustext",{"_index":1482,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["steps",{"_index":3749,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":4027,"title":{},"body":{"license.html":{}}}],["store",{"_index":66,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":3482,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["stored",{"_index":3627,"title":{},"body":{"index.html":{}}}],["string",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{}}}],["stringfromurl",{"_index":2560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":534,"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:10",{"_index":2799,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:103",{"_index":3428,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:11",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:124",{"_index":3426,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:13",{"_index":2798,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:134",{"_index":3424,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":552,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3058,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":556,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:4",{"_index":3321,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3320,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:72",{"_index":3393,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":3319,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:87",{"_index":3431,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:9",{"_index":2797,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["student",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["styles",{"_index":215,"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/NetworkStatusComponent.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":229,"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/NetworkStatusComponent.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":{}}}],["styling",{"_index":3662,"title":{},"body":{"index.html":{}}}],["subdividing",{"_index":4234,"title":{},"body":{"license.html":{}}}],["subject",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/TokenService.html":{},"license.html":{}}}],["sublicenses",{"_index":4263,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3956,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3919,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4424,"title":{},"body":{"license.html":{}}}],["subscribe",{"_index":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["subscribe((res",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TransactionsComponent.html":{}}}],["subscribe(async",{"_index":290,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["subscribers",{"_index":564,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4058,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4105,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3786,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1559,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1187,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["successful",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/functions.html":{}}}],["successfully",{"_index":2542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3737,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4277,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4112,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":2801,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["sugar",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum",{"_index":3549,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sum.ts",{"_index":3458,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1457,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1454,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4139,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":2920,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["support",{"_index":2700,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":3634,"title":{},"body":{"index.html":{},"license.html":{}}}],["sure",{"_index":3708,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3733,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4184,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4373,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4432,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1388,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{}}}],["swupdate",{"_index":668,"title":{},"body":{"components/AppComponent.html":{}}}],["symbol",{"_index":1195,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["sync.service.ts",{"_index":1069,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:19",{"_index":1082,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:37",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:72",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:80",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2763,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountsindex.json",{"_index":176,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2984,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncable",{"_index":3593,"title":{},"body":{"miscellaneous/functions.html":{}}}],["system",{"_index":528,"title":{},"body":{"interfaces/Action.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3776,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3510,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2912,"title":{},"body":{"interfaces/Staff.html":{}}}],["tags",{"_index":2914,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3699,"title":{},"body":{"license.html":{}}}],["tangible",{"_index":4086,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1555,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3965,"title":{},"body":{"license.html":{}}}],["tel",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3871,"title":{},"body":{"license.html":{}}}],["template",{"_index":214,"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/NetworkStatusComponent.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":231,"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/NetworkStatusComponent.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":3929,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4411,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4190,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4211,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4199,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4187,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3745,"title":{},"body":{"license.html":{}}}],["test",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"index.html":{}}}],["tests",{"_index":3640,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":2737,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then((s",{"_index":2677,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["then((sig",{"_index":2689,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["therefore",{"_index":3734,"title":{},"body":{"license.html":{}}}],["thika",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3725,"title":{},"body":{"license.html":{}}}],["third",{"_index":895,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter((account",{"_index":438,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":436,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":298,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtrusteduser(key.users[0].userid",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.algo",{"_index":2680,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.areanameslist.asobservable",{"_index":1528,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areanameslist.next(res",{"_index":1536,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areatypeslist.asobservable",{"_index":1533,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.areatypeslist.next(res",{"_index":1544,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.authservice.getprivatekey",{"_index":837,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getprivatekeyinfo",{"_index":2854,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":699,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":701,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.init",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.login",{"_index":845,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.loginview",{"_index":838,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2856,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":700,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":843,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.trusteduserssubject.subscribe((users",{"_index":2850,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["this.categories",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.cdr.detectchanges",{"_index":2579,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.closewindow.emit(this.token",{"_index":2944,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.closewindow.emit(this.transaction",{"_index":3151,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.contract",{"_index":183,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.add(address).send",{"_index":201,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":2988,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entry(i).call",{"_index":208,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":2989,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":210,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.have(address).call",{"_index":203,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contractaddress",{"_index":182,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1217,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":437,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":433,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":419,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.dgst",{"_index":2665,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1338,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2679,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.formbuilder.group",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res",{"_index":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey().users[0].userid",{"_index":1067,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getsessiontoken",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.gettokens",{"_index":3043,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.handlenetworkchange",{"_index":2576,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.haveaccount(address",{"_index":200,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient",{"_index":1534,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/user/${address}/${offset}/${limit",{"_index":3229,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.isdialogopen",{"_index":1336,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1465,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":835,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":839,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":841,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2661,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2664,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2669,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2690,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2807,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.load.next(true",{"_index":3024,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":842,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.areanamessubject.subscribe((res",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.locationservice.getareanames",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1458,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1596,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1600,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1601,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1597,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1598,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1595,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1599,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/TransactionService.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":719,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2685,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1387,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1467,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3314,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3316,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1564,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1556,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":629,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1466,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginview",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addeventlistener('change",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{},"injectables/KeystoreService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1066,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach((key",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":1504,"title":{},"body":{"injectables/KeystoreService.html":{}}}],["this.name",{"_index":1456,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.navigatedto",{"_index":2806,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.nointernetconnection",{"_index":2578,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.onmenuselect",{"_index":1628,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1634,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize",{"_index":690,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onresize(this.mediaquery",{"_index":691,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2662,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2683,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2686,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2663,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2693,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2596,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2600,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2601,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":440,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3133,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":3021,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(address",{"_index":3033,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.addtoken(await",{"_index":3049,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1626,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.router.navigate",{"_index":2789,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":899,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":846,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl",{"_index":293,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1391,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3137,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3138,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3139,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.url",{"_index":1471,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2819,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2832,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["this.senderbloxberglink",{"_index":3131,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1592,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendsignedchallenge(r).then((response",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1469,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.setparammap(initialparams",{"_index":566,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setsessiontoken(tokenresponse",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setstate('click",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2678,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":195,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3146,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1455,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":551,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":567,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":840,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.swupdate.available.subscribe",{"_index":722,"title":{},"body":{"components/AppComponent.html":{}}}],["this.swupdate.isenabled",{"_index":721,"title":{},"body":{"components/AppComponent.html":{}}}],["this.toggledisplay(divone",{"_index":853,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":854,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2731,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2943,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["this.tokenname",{"_index":3135,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3022,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3050,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3031,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3017,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["this.tokens.findindex((tk",{"_index":3025,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens.splice(savedindex",{"_index":3028,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens.unshift(token",{"_index":3029,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenservice.gettokenname",{"_index":3136,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3076,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokensymbol",{"_index":432,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.tokenservice.init",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["this.tokenservice.load.subscribe(async",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.tokenservice.tokenssubject.subscribe((tokens",{"_index":3077,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenslist.asobservable",{"_index":3019,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenslist.next(this.tokens",{"_index":3030,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenssubject.subscribe((tokens",{"_index":3044,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokensymbol",{"_index":431,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.totalaccounts",{"_index":205,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3128,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3150,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3143,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3142,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3141,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3144,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3132,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3134,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3130,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3127,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3354,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3361,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3356,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3357,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter",{"_index":3362,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find((cachedtx",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.findindex((tx",{"_index":3256,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.splice(savedindex",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.init",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":749,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":745,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe((transactions",{"_index":3353,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3140,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3360,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3358,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["this.trustedusers.findindex((staff",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trustedusers.splice(savedindex",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trustedusers.unshift(user",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trusteduserslist.asobservable",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.trusteduserslist.next(this.trustedusers",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.userinfo",{"_index":2853,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.userservice.accountssubject.subscribe((accounts",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe((actions",{"_index":622,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.addaccount(accountinfo",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.addaccount(defaultaccount",{"_index":3236,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.categoriessubject.subscribe((res",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":300,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":288,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getactions",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.init",{"_index":694,"title":{},"body":{"components/AppComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":718,"title":{},"body":{"components/AppComponent.html":{}}}],["this.web3",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3315,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3313,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3784,"title":{},"body":{"license.html":{}}}],["though",{"_index":4142,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3793,"title":{},"body":{"license.html":{}}}],["three",{"_index":4047,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1478,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{},"license.html":{}}}],["throw",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1365,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1399,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":1431,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3947,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":888,"title":{},"body":{"guards/AuthGuard.html":{},"interfaces/Conversion.html":{},"guards/RoleGuard.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"license.html":{}}}],["timestamp",{"_index":1189,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{}}}],["tissue",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":658,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["tk.address",{"_index":3026,"title":{},"body":{"injectables/TokenService.html":{}}}],["todo",{"_index":186,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["toggle",{"_index":1604,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["toggle.directive",{"_index":909,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1629,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2728,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:15",{"_index":2726,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":1633,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:30",{"_index":2729,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":1632,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggledisplay",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2724,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3221,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":27,"title":{"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":3027,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.decimals",{"_index":3040,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.balanceof(address).call",{"_index":3051,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.name().call",{"_index":3052,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.methods.symbol().call",{"_index":3053,"title":{},"body":{"injectables/TokenService.html":{}}}],["token.name",{"_index":3034,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.supply",{"_index":3038,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":3036,"title":{},"body":{"injectables/TokenService.html":{},"components/TokensComponent.html":{}}}],["token?.address",{"_index":2947,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.name",{"_index":2945,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.owner",{"_index":2957,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.reserveratio",{"_index":2956,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.supply",{"_index":2955,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token?.symbol",{"_index":2946,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["tokenaddress",{"_index":3206,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokencontract",{"_index":3032,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.decimals().call",{"_index":3041,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.name().call",{"_index":3035,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.symbol().call",{"_index":3037,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokencontract.methods.totalsupply().call",{"_index":3039,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokendetailscomponent",{"_index":341,"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/NetworkStatusComponent.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":{}}}],["tokenname",{"_index":3104,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["tokenratio",{"_index":450,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2882,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2745,"title":{"classes/TokenRegistry.html":{}},"body":{"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"coverage.html":{}}}],["tokenregistry(tokenregistryaddress",{"_index":2771,"title":{},"body":{"injectables/RegistryService.html":{}}}],["tokenregistryaddress",{"_index":2768,"title":{},"body":{"injectables/RegistryService.html":{}}}],["tokenresponse",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["tokens",{"_index":1185,"title":{},"body":{"interfaces/Conversion.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tokens'},{'name",{"_index":343,"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/NetworkStatusComponent.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":3061,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3060,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find((token",{"_index":3046,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokenscomponent",{"_index":342,"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/NetworkStatusComponent.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":379,"title":{"injectables/TokenService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3054,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokenslist",{"_index":2991,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensmodule",{"_index":3080,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3084,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tokenssubject",{"_index":2992,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject",{"_index":3042,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject.asobservable",{"_index":3048,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensubject.next(queriedtoken",{"_index":3047,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokensymbol",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tom",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tools",{"_index":3912,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1412,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":345,"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/NetworkStatusComponent.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":3097,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3096,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":344,"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/NetworkStatusComponent.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":346,"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/NetworkStatusComponent.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":164,"title":{},"body":{"classes/AccountIndex.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":2967,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1174,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tovalue(value",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1440,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1591,"title":{},"body":{"injectables/LoggingService.html":{}}}],["tracks",{"_index":1265,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["trade",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4168,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4169,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1175,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["traderbloxberglink",{"_index":3105,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2950,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transacted",{"_index":1186,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["transaction",{"_index":348,"title":{"interfaces/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["transaction.destinationtoken.address",{"_index":3173,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3174,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3175,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3154,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.fromvalue",{"_index":3171,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3155,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3153,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3168,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3169,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3170,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3156,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.token._address",{"_index":3158,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3176,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3167,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3159,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3162,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3163,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3161,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3160,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3157,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3367,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3366,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3369,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3370,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3371,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3368,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3328,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":347,"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/NetworkStatusComponent.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":3329,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3178,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":350,"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/NetworkStatusComponent.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":3327,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3326,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":349,"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/NetworkStatusComponent.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":667,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3317,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1169,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1168,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1167,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":464,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3376,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3179,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3330,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3331,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3365,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2598,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferauthorization",{"_index":3271,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4118,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3187,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4232,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3364,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2812,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"pipes/UnixDatePipe.html":{}}}],["transform(timestamp",{"_index":3384,"title":{},"body":{"pipes/UnixDatePipe.html":{}}}],["transform(url",{"_index":2813,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2960,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4075,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":889,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4141,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3972,"title":{},"body":{"license.html":{}}}],["tree",{"_index":217,"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/NetworkStatusComponent.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":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["trigger('detailexpand",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["triggered",{"_index":2642,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["true",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.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":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":704,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trusteduserslist",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["trusteduserssubject",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":697,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2734,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3533,"title":{},"body":{"dependencies.html":{}}}],["tslint",{"_index":3661,"title":{},"body":{"index.html":{}}}],["tslint.json",{"_index":3666,"title":{},"body":{"index.html":{}}}],["tslint:disable",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["tudor",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":3748,"title":{},"body":{"license.html":{}}}],["tx",{"_index":1091,"title":{"interfaces/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"interfaces/Conversion.html":{},"modules/PagesRoutingModule.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3296,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3298,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3310,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.tx.txhash",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1192,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txhelper",{"_index":2822,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["txindex",{"_index":1193,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txmsg",{"_index":3297,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1176,"title":{"interfaces/TxToken.html":{}},"body":{"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3311,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":21,"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":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/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/KeystoreService.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":{},"components/NetworkStatusComponent.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/Signature.html":{},"interfaces/Signature-1.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":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"pipes/UnixDatePipe.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["typed",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["typeerror",{"_index":1474,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["types",{"_index":1429,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["typescript",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["typical",{"_index":4099,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2615,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2616,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unacceptable",{"_index":3781,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1390,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["under",{"_index":3823,"title":{},"body":{"license.html":{}}}],["unga",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unique",{"_index":1194,"title":{},"body":{"interfaces/Conversion.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["unit",{"_index":3639,"title":{},"body":{"index.html":{}}}],["united",{"_index":2609,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unixdate",{"_index":448,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"pipes/UnixDatePipe.html":{}}}],["unixdatepipe",{"_index":2883,"title":{"pipes/UnixDatePipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/UnixDatePipe.html":{},"coverage.html":{},"overview.html":{}}}],["unknown",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/UnixDatePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4107,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3935,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3839,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3959,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4137,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1379,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4198,"title":{},"body":{"license.html":{}}}],["updates",{"_index":4127,"title":{},"body":{"license.html":{}}}],["updatesyncable",{"_index":3478,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["updatesyncable(changes",{"_index":3591,"title":{},"body":{"miscellaneous/functions.html":{}}}],["uploaded",{"_index":881,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":443,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":891,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":796,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["useful",{"_index":4405,"title":{},"body":{"license.html":{}}}],["usehash",{"_index":809,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["user",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"guards/AuthGuard.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["user.email",{"_index":2864,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2863,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":449,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":447,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":451,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":445,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":446,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2844,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":2837,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userinfo?.email",{"_index":2862,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userinfo?.name",{"_index":2861,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userinfo?.userid",{"_index":2859,"title":{},"body":{"components/SettingsComponent.html":{}}}],["userkey",{"_index":3429,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2860,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2852,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3389,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4102,"title":{},"body":{"license.html":{}}}],["using",{"_index":2653,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{},"license.html":{}}}],["ustadh",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utange",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3217,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"miscellaneous/functions.html":{}}}],["validates",{"_index":3586,"title":{},"body":{"miscellaneous/functions.html":{}}}],["validation",{"_index":1266,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["validation.ts",{"_index":3474,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1292,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3520,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":48,"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":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.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":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":434,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":563,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"miscellaneous/functions.html":{}}}],["var",{"_index":309,"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/NetworkStatusComponent.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":3453,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3646,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":22,"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":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcardvalidation",{"_index":3476,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3590,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3691,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2644,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verify",{"_index":2630,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2654,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["verifying",{"_index":2622,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3705,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3576,"title":{},"body":{"miscellaneous/functions.html":{},"index.html":{}}}],["viatu",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":1620,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"components/TransactionDetailsComponent.html":{},"index.html":{},"license.html":{}}}],["view_in_ar",{"_index":304,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3108,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3109,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3063,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3069,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3110,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3334,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3341,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4133,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4194,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{},"directives/PasswordToggleDirective.html":{}}}],["visible",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":252,"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/LocationService.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.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":4026,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2823,"title":{"interfaces/W3.html":{}},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3980,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4385,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wallet",{"_index":192,"title":{},"body":{"classes/AccountIndex.html":{}}}],["want",{"_index":3722,"title":{},"body":{"license.html":{}}}],["ward",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warning",{"_index":1436,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warnings",{"_index":1449,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warranties",{"_index":3872,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3759,"title":{},"body":{"license.html":{}}}],["wash",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3712,"title":{},"body":{"license.html":{}}}],["ways",{"_index":4037,"title":{},"body":{"license.html":{}}}],["web",{"_index":3597,"title":{},"body":{"index.html":{}}}],["web3",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"injectables/Web3Service.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":3448,"title":{},"body":{"injectables/Web3Service.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":2986,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":196,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":185,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":2987,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["web3service",{"_index":169,"title":{"injectables/Web3Service.html":{}},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"injectables/Web3Service.html":{},"coverage.html":{}}}],["web3service.getinstance",{"_index":179,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["web3service.web3",{"_index":3447,"title":{},"body":{"injectables/Web3Service.html":{}}}],["weight",{"_index":2928,"title":{},"body":{"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{}}}],["welcome",{"_index":4415,"title":{},"body":{"license.html":{}}}],["welder",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3856,"title":{},"body":{"license.html":{}}}],["went",{"_index":1383,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4236,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3891,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4082,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3887,"title":{},"body":{"license.html":{}}}],["width",{"_index":642,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3902,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newevent(transaction",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":855,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload",{"_index":724,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":682,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2671,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":661,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":672,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":675,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3971,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3720,"title":{},"body":{"license.html":{}}}],["within",{"_index":4179,"title":{},"body":{"license.html":{}}}],["without",{"_index":3842,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3911,"title":{},"body":{"license.html":{}}}],["worker",{"_index":688,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["worker.js",{"_index":792,"title":{},"body":{"modules/AppModule.html":{}}}],["working",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3637,"title":{},"body":{"index.html":{},"license.html":{}}}],["world",{"_index":3323,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["world!'",{"_index":3557,"title":{},"body":{"miscellaneous/functions.html":{}}}],["worldwide",{"_index":4266,"title":{},"body":{"license.html":{}}}],["wote",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["wrapper",{"_index":1616,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["write",{"_index":69,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["writing",{"_index":4348,"title":{},"body":{"license.html":{}}}],["written",{"_index":4046,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1384,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":4048,"title":{},"body":{"license.html":{}}}],["yes",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4284,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3537,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":465,"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 Description\n \n \n Account data interface \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 Age of user \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 Token balance on account \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 Business category of user. \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 Account registration day \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 User's gender \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 Account identifiers \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 User's location \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 Products or services provided by user. \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 Type of account \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 Personal identifying information of user \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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:26\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:22\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:24\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:26\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:61\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:82\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:99\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:125\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 { Web3Service } from '@app/_services/web3.service';\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/AccountsIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = Web3Service.getInstance();\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 // TODO this signer logic should be part of the web3service\n // if signer address is not passed (for example in user service) then\n // this fallsback to a web3 wallet that is not even connected???\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.have(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;\n if (lowest = [];\n for (let i = count - 1; i >= lowest; i--) {\n const account: string = await this.contract.methods.entry(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.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"},"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 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 Async\n onPhoneSearch\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \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:22\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: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 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:66\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 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:46\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:19\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:21\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:20\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:22\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:16\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:18\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:17\n \n \n\n\n \n \n\n\n \n \n Accessors\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:39\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:42\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 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 this.phoneSearchForm = this.formBuilder.group({\n phoneNumber: ['', Validators.required],\n });\n this.addressSearchForm = this.formBuilder.group({\n address: ['', Validators.required],\n });\n }\n\n ngOnInit(): void {}\n\n get phoneSearchFormStub(): any {\n return this.phoneSearchForm.controls;\n }\n get addressSearchFormStub(): any {\n return this.addressSearchForm.controls;\n }\n\n async onPhoneSearch(): Promise {\n this.phoneSearchSubmitted = true;\n if (this.phoneSearchForm.invalid) {\n return;\n }\n this.phoneSearchLoading = true;\n (\n await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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) {\n return;\n }\n this.addressSearchLoading = true;\n (\n await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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 Accounts \n \n \n \n \n \n Search \n \n Phone Number is required.\n phone\n Phone Number\n \n \n SEARCH\n \n \n \n \n \n \n Search \n \n Account Address is required.\n view_in_ar\n Account Address\n \n \n SEARCH\n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 tokenSymbol\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, router: Router, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:30\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 router\n \n \n Router\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 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: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 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:85\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: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/accounts/accounts.component.ts:38\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:77\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:60\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:29\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:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:27\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 { TokenService, 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 tokenSymbol: string;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private userService: UserService,\n private router: Router,\n private tokenService: TokenService\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 this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n }\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(\n `/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\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 Accounts \n \n \n \n ACCOUNT TYPE \n \n ALL\n \n {{ accountType | uppercase }}\n \n \n \n \n SEARCH\n \n \n EXPORT\n \n \n\n \n Filter \n \n search\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 | unixDate }} \n \n\n \n BALANCE \n \n {{ user?.balance | tokenRatio }} {{ tokenSymbol | uppercase }}\n \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 | unixDate }} BALANCE {{ user?.balance | tokenRatio }} {{ tokenSymbol | uppercase }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_imports\n\n\n\ncluster_AccountsModule_declarations\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 { 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@NgModule({\n declarations: [\n AccountsComponent,\n AccountDetailsComponent,\n CreateAccountComponent,\n AccountSearchComponent,\n ],\n imports: [\n CommonModule,\n AccountsRoutingModule,\n SharedModule,\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 Description\n \n \n Action object interface \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 Action performed \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 Action approval status. \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 Action ID \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 Admin's role in the system \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 Admin who initialized the action. \n\n \n \n \n \n \n \n\n\n \n interface Action {\n /** Action performed */\n action: string;\n /** Action approval status. */\n approval: boolean;\n /** Action ID */\n id: number;\n /** Admin's role in the system */\n role: string;\n /** Admin who initialized the action. */\n user: string;\n}\n\n/** @exports */\nexport { Action };\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: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 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: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 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:64\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: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 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:79\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:75\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:35\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 '@app/_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(private userService: UserService, private loggingService: LoggingService) {}\n\n ngOnInit(): void {\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 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?')) {\n return;\n }\n this.userService\n .approveAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) {\n return;\n }\n this.userService\n .revokeAction(action.id)\n .pipe(first())\n .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 \n EXPORT\n \n \n \n \n \n Filter \n \n search\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 \n {{ approvalStatus(action.approval) }}\n \n \n {{ approvalStatus(action.approval) }}\n \n \n \n\n \n APPROVE \n \n \n Approve\n \n \n Disapprove\n \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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_imports\n\n\n\ncluster_AdminModule_declarations\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@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 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-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 title\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Async\n ngOnInit\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, blockSyncService: BlockSyncService, errorDialogService: ErrorDialogService, loggingService: LoggingService, tokenService: TokenService, transactionService: TransactionService, userService: UserService, swUpdate: SwUpdate)\n \n \n \n \n Defined in src/app/app.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 authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n blockSyncService\n \n \n BlockSyncService\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 loggingService\n \n \n LoggingService\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 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 swUpdate\n \n \n SwUpdate\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:100\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:94\n \n \n\n\n \n \n\n \n \n \n Methods\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/app.component.ts:37\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 onResize\n \n \n \n \n \n \n \nonResize(e)\n \n \n\n\n \n \n Defined in src/app/app.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 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:21\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:20\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';\nimport {\n AuthService,\n BlockSyncService,\n ErrorDialogService,\n LoggingService,\n TokenService,\n TransactionService,\n UserService,\n} from '@app/_services';\nimport { SwUpdate } from '@angular/service-worker';\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 implements OnInit {\n title = 'CICADA';\n mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');\n\n constructor(\n private authService: AuthService,\n private blockSyncService: BlockSyncService,\n private errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private tokenService: TokenService,\n private transactionService: TransactionService,\n private userService: UserService,\n private swUpdate: SwUpdate\n ) {\n this.mediaQuery.addEventListener('change', this.onResize);\n this.onResize(this.mediaQuery);\n }\n\n async ngOnInit(): Promise {\n await this.authService.init();\n await this.tokenService.init();\n await this.userService.init();\n await this.transactionService.init();\n await this.blockSyncService.blockSync();\n try {\n const publicKeys = await this.authService.getPublicKeys();\n await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n this.authService.getTrustedUsers();\n } catch (error) {\n this.errorDialogService.openDialog({\n message: 'Trusted keys endpoint cannot be reached. Please try again later.',\n });\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\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 if (!this.swUpdate.isEnabled) {\n this.swUpdate.available.subscribe(() => {\n if (confirm('New Version available. Load New Version?')) {\n window.location.reload();\n }\n });\n }\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_bootstrap\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AppModule_declarations\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 { GlobalErrorHandler, MockBackendProvider } from '@app/_helpers';\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';\nimport { ServiceWorkerModule } from '@angular/service-worker';\n\n@NgModule({\n declarations: [AppComponent],\n imports: [\n BrowserModule,\n AppRoutingModule,\n BrowserAnimationsModule,\n HttpClientModule,\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 ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }),\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 {\n path: '',\n loadChildren: () => \"import('@pages/pages.module').then((m) => m.PagesModule)\",\n canActivate: [AuthGuard],\n },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [\n RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules,\n useHash: true,\n }),\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"},"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 Async\n login\n \n \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, errorDialogService: ErrorDialogService)\n \n \n \n \n Defined in src/app/auth/auth.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 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 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 \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n login\n \n \n \n \n \n \n \n \n login()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:52\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 ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/auth/auth.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 \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:40\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: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 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:72\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:15\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:17\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:18\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:16\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 { ErrorDialogService } from '@app/_services/error-dialog.service';\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 private errorDialogService: ErrorDialogService\n ) {}\n\n ngOnInit(): void {\n this.keyForm = this.formBuilder.group({\n key: ['', Validators.required],\n });\n if (this.authService.getPrivateKey()) {\n this.authService.loginView();\n }\n }\n\n get keyFormStub(): any {\n return this.keyForm.controls;\n }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) {\n return;\n }\n\n this.loading = true;\n await this.authService.setKey(this.keyFormStub.key.value);\n this.loading = false;\n }\n\n async login(): Promise {\n try {\n const loginResult = await this.authService.login();\n if (loginResult) {\n this.router.navigate(['/home']);\n }\n } catch (HttpError) {\n this.errorDialogService.openDialog({\n message: HttpError.message,\n });\n }\n }\n\n switchWindows(): void {\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 \n CICADA\n \n \n \n \n Add Private Key\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 Login\n \n \n\n \n \n \n Change private key?\n Enter private key\n \n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 \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:21\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:38\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 {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} 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@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuard implements CanActivate {\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\n ): Observable | Promise | boolean | UrlTree {\n if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) {\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 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\nSharedModule\n\nSharedModule\n\nAuthModule -->\n\nSharedModule->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 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 { 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';\nimport { SharedModule } from '@app/shared/shared.module';\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 SharedModule,\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 trustedUsers\n \n \n Private\n trustedUsersList\n \n \n trustedUsersSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addTrustedUser\n \n \n getChallenge\n \n \n getPrivateKey\n \n \n getPrivateKeyInfo\n \n \n Async\n getPublicKeys\n \n \n getSessionToken\n \n \n getTrustedUsers\n \n \n getWithToken\n \n \n Async\n init\n \n \n Async\n login\n \n \n loginView\n \n \n logout\n \n \n sendSignedChallenge\n \n \n Async\n setKey\n \n \n setSessionToken\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(loggingService: LoggingService, errorDialogService: ErrorDialogService)\n \n \n \n \n Defined in src/app/_services/auth.service.ts:22\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 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 addTrustedUser\n \n \n \n \n \n \n \naddTrustedUser(user: Staff)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:170\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n user\n \n Staff\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 getChallenge\n \n \n \n \n \n \n \ngetChallenge()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:82\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 getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:200\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 getPrivateKeyInfo\n \n \n \n \n \n \n \ngetPrivateKeyInfo()\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:188\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 getSessionToken\n \n \n \n \n \n \n \ngetSessionToken()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:36\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 getTrustedUsers\n \n \n \n \n \n \n \ngetTrustedUsers()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:182\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 getWithToken\n \n \n \n \n \n \n \ngetWithToken()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:48\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 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:29\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 login\n \n \n \n \n \n \n \n \n login()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:91\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 loginView\n \n \n \n \n \n \n \nloginView()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:126\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:164\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 sendSignedChallenge\n \n \n \n \n \n \n \nsendSignedChallenge(hobaResponseEncoded: any)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:70\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:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n privateKeyArmored\n\n \n No\n \n\n\n \n \nPrivate key.\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 setSessionToken\n \n \n \n \n \n \n \nsetSessionToken(token)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:40\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 : void\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:44\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 trustedUsers\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/_services/auth.service.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n trustedUsersList\n \n \n \n \n \n \n Type : BehaviorSubject>\n\n \n \n \n \n Default value : new BehaviorSubject>(\n this.trustedUsers\n )\n \n \n \n \n Defined in src/app/_services/auth.service.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n trustedUsersSubject\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.trustedUsersList.asObservable()\n \n \n \n \n Defined in src/app/_services/auth.service.ts:22\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 } from '@app/_pgp';\nimport { ErrorDialogService } from '@app/_services/error-dialog.service';\nimport { HttpError, rejectBody } from '@app/_helpers/global-error-handler';\nimport { Staff } from '@app/_models';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { KeystoreService } from '@app/_services/keystore.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthService {\n mutableKeyStore: MutableKeyStore;\n trustedUsers: Array = [];\n private trustedUsersList: BehaviorSubject> = new BehaviorSubject>(\n this.trustedUsers\n );\n trustedUsersSubject: Observable> = this.trustedUsersList.asObservable();\n\n constructor(\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService\n ) {}\n\n async init(): Promise {\n this.mutableKeyStore = await KeystoreService.getKeystore();\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n }\n }\n\n getSessionToken(): string {\n return sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n }\n\n setSessionToken(token): void {\n sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), token);\n }\n\n setState(s): void {\n document.getElementById('state').innerHTML = s;\n }\n\n getWithToken(): Promise {\n const headers = {\n Authorization: 'Bearer ' + this.getSessionToken,\n 'Content-Type': 'application/json;charset=utf-8',\n 'x-cic-automerge': 'none',\n };\n const options = {\n headers,\n };\n return fetch(environment.cicMetaUrl, options).then((response) => {\n if (!response.ok) {\n this.loggingService.sendErrorLevelMessage('failed to get with auth token.', this, {\n error: '',\n });\n\n return false;\n }\n return true;\n });\n }\n\n // TODO rename to send signed challenge and set session. Also separate these responsibilities\n sendSignedChallenge(hobaResponseEncoded: any): Promise {\n const headers = {\n Authorization: 'HOBA ' + hobaResponseEncoded,\n 'Content-Type': 'application/json;charset=utf-8',\n 'x-cic-automerge': 'none',\n };\n const options = {\n headers,\n };\n return fetch(environment.cicMetaUrl, options);\n }\n\n getChallenge(): Promise {\n return fetch(environment.cicMetaUrl).then((response) => {\n if (response.status === 401) {\n const authHeader: string = response.headers.get('WWW-Authenticate');\n return hobaParseChallengeHeader(authHeader);\n }\n });\n }\n\n async login(): Promise {\n if (this.getSessionToken()) {\n sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n } else {\n const o = await this.getChallenge();\n\n const r = await signChallenge(\n o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore\n );\n\n const tokenResponse = await this.sendSignedChallenge(r).then((response) => {\n const token = response.headers.get('Token');\n if (token) {\n return token;\n }\n if (response.status === 401) {\n throw new HttpError('You are not authorized to use this system', response.status);\n }\n if (!response.ok) {\n throw new HttpError('Unknown error from authentication server', response.status);\n }\n });\n\n if (tokenResponse) {\n this.setSessionToken(tokenResponse);\n this.setState('Click button to log in');\n return true;\n }\n return false;\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 - Private key.\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(\n `Failed to set key: ${err.message || err.statusText}`,\n this,\n { error: err }\n );\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 localStorage.removeItem(btoa('CICADA_PRIVATE_KEY'));\n window.location.reload();\n }\n\n addTrustedUser(user: Staff): void {\n const savedIndex = this.trustedUsers.findIndex((staff) => staff.userid === user.userid);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.trustedUsers.splice(savedIndex, 1);\n }\n this.trustedUsers.unshift(user);\n this.trustedUsersList.next(this.trustedUsers);\n }\n\n getTrustedUsers(): void {\n this.mutableKeyStore.getPublicKeys().forEach((key) => {\n this.addTrustedUser(key.users[0].userId);\n });\n }\n\n async getPublicKeys(): Promise {\n return new Promise((resolve, reject) => {\n fetch(environment.publicKeysUrl).then((res) => {\n if (!res.ok) {\n // TODO does angular recommend an error interface?\n return reject(rejectBody(res));\n }\n return resolve(res.text());\n });\n });\n }\n\n getPrivateKey(): any {\n return this.mutableKeyStore.getPrivateKey();\n }\n\n getPrivateKeyInfo(): any {\n return this.getPrivateKey().users[0].userId;\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 Async\n blockSync\n \n \n fetcher\n \n \n newEvent\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)\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 \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n blockSync\n \n \n \n \n \n \n \n \n blockSync(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:19\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 : Promise\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 newEvent\n \n \n \n \n \n \n \nnewEvent(tx: any, eventType: string)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:72\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 eventType\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 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: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 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:80\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 '@cicnet/cic-client';\nimport { first } from 'rxjs/operators';\nimport { TransactionService } from '@app/_services/transaction.service';\nimport { environment } from '@src/environments/environment';\nimport { RegistryService } from '@app/_services/registry.service';\nimport { Web3Service } from '@app/_services/web3.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class BlockSyncService {\n readyStateTarget: number = 2;\n readyState: number = 0;\n\n constructor(private transactionService: TransactionService) {}\n\n async blockSync(address: string = null, offset: number = 0, limit: number = 100): Promise {\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 = Web3Service.getInstance();\n settings.registry = await 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.newEvent(transaction, 'cic_transfer'));\n };\n settings.txHelper.onconversion = async (transaction: any): Promise => {\n window.dispatchEvent(this.newEvent(transaction, 'cic_convert'));\n };\n this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n }\n\n readyStateProcessor(\n settings: Settings,\n bit: number,\n address: string,\n offset: number,\n limit: number\n ): void {\n // tslint:disable-next-line:no-bitwise\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\n .getAllTransactions(offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService\n .getAddressTransactions(address, offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n }\n }\n }\n\n newEvent(tx: any, eventType: string): any {\n return new CustomEvent(eventType, {\n detail: {\n tx,\n },\n });\n }\n\n async scan(\n settings: Settings,\n lo: number,\n hi: number,\n bloomBlockBytes: Uint8Array,\n bloomBlocktxBytes: Uint8Array,\n bloomRounds: any\n ): 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: [bloomBlockBytes, bloomBlocktxBytes],\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(\n settings,\n transactionsInfo.low,\n transactionsInfo.high,\n bOne,\n bTwo,\n transactionsInfo.filter_rounds\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/Conversion.html":{"url":"interfaces/Conversion.html","title":"interface - Conversion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Conversion object interface \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 Properties\n \n \n \n \n \n destinationToken\n \n \n \n \n destinationToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Final transaction token information. \n\n \n \n \n \n \n \n \n \n \n fromValue\n \n \n \n \n fromValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Initial transaction token amount. \n\n \n \n \n \n \n \n \n \n \n sourceToken\n \n \n \n \n sourceToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Initial transaction token information. \n\n \n \n \n \n \n \n \n \n \n toValue\n \n \n \n \n toValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Final transaction token amount. \n\n \n \n \n \n \n \n \n \n \n trader\n \n \n \n \n trader: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the initiator of the conversion. \n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n Conversion mining information. \n\n \n \n \n \n \n \n \n \n \n user\n \n \n \n \n user: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the initiator of the conversion. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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:20\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:28\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:63\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:19\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:18\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:17\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:14\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:20\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:15\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:16\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:59\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';\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();\n this.userService.categoriesSubject.subscribe((res) => {\n this.categories = Object.keys(res);\n });\n this.locationService.getAreaNames();\n this.locationService.areaNamesSubject.subscribe((res) => {\n this.areaNames = Object.keys(res);\n });\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.userService\n .getGenders()\n .pipe(first())\n .subscribe((res) => (this.genders = res));\n }\n\n get createFormStub(): any {\n return this.createForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) {\n return;\n }\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 CREATE A USER ACCOUNT \n \n \n \n \n Account Type: \n \n \n {{ accountType | uppercase }}\n \n \n Account type is required. \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 Given Name(s):* \n \n Given Names are required. \n \n\n \n \n Family/Surname: \n \n Surname is required. \n \n\n \n \n Directory Entry: \n \n Directory Entry is required. \n \n\n \n \n Location: \n \n \n {{ area | uppercase }}\n \n \n Location is required. \n \n\n \n \n Gender: \n \n \n {{ gender | uppercase }}\n \n \n Gender is required. \n \n\n \n \n Referrer Phone Number: \n \n Referrer is required. \n \n\n \n \n Business Category: \n \n \n {{ category | titlecase }}\n \n \n Business Category is required.\n \n \n\n \n Submit\n \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 \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:17\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 { ErrorStateMatcher } from '@angular/material/core';\nimport { FormControl, FormGroupDirective, NgForm } from '@angular/forms';\n\n/**\n * Custom provider that defines how form controls behave with regards to displaying error messages.\n *\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:11\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 constructor(@Inject(MAT_DIALOG_DATA) public data: any) {}\n}\n\n \n\n \n \n \n Message: {{ data.message }}\n Status: {{ data?.status }}\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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:13\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:11\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(public dialog: MatDialog) {}\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 Description\n \n \n Intercepts and handles errors from outgoing HTTP request. \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, router: Router)\n \n \n \n \n Defined in src/app/_interceptors/error.interceptor.ts:21\n \n \n\n \n \n Initialization of the error interceptor.\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 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:37\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 error caught from the request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpErrorResponse,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Third party imports\nimport { Observable, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\n// Application imports\nimport { LoggingService } from '@app/_services';\n\n/** Intercepts and handles errors from outgoing HTTP request. */\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n /**\n * Initialization of the error interceptor.\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(private loggingService: LoggingService, private router: Router) {}\n\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 error caught from the request.\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(\n err.error\n )}`;\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 Properties\n \n \n \n \n \n \n currentYear\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()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:10\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 Properties\n \n \n \n \n \n \n \n \n currentYear\n \n \n \n \n \n \n Default value : new Date().getFullYear()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:10\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 currentYear = new Date().getFullYear();\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n Copyleft \n 🄯.\n {{ currentYear }}\n 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 = ' Copyleft 🄯. {{ currentYear }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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:41\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:58\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:84\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:104\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:41\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 */\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(private loggingService: LoggingService, private router: Router) {\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 */\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: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\nexport function rejectBody(error): { status: any; statusText: any } {\n return {\n status: error.status,\n statusText: error.statusText,\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 Description\n \n \n Intercepts and handles setting of configurations to outgoing HTTP request. \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 Initialization of http config interceptor. \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:22\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 forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\nimport { environment } from '@src/environments/environment';\n\n/** Intercepts and handles setting of configurations to outgoing HTTP request. */\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n /** Initialization of http config interceptor. */\n constructor() {}\n\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 forwarded request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n if (request.url.startsWith(environment.cicMetaUrl)) {\n const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n\n if (token) {\n request = request.clone({\n headers: request.headers.set('Authorization', 'Bearer ' + token),\n });\n }\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 */\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(private loggingService: LoggingService, private router: Router) {\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 */\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: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\nexport function rejectBody(error): { status: any; statusText: any } {\n return {\n status: error.status,\n statusText: error.statusText,\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/KeystoreService.html":{"url":"injectables/KeystoreService.html","title":"injectable - KeystoreService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n KeystoreService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/keystore.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Static\n mutableKeyStore\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n Async\n getKeystore\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/keystore.service.ts:8\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n Async\n getKeystore\n \n \n \n \n \n \n \n \n getKeystore()\n \n \n\n\n \n \n Defined in src/app/_services/keystore.service.ts:12\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 Private\n Static\n mutableKeyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_services/keystore.service.ts:8\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { MutableKeyStore, MutablePgpKeyStore } from '@app/_pgp';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class KeystoreService {\n private static mutableKeyStore: MutableKeyStore;\n\n constructor() {}\n\n public static async getKeystore(): Promise {\n return new Promise(async (resolve, reject) => {\n if (!KeystoreService.mutableKeyStore) {\n this.mutableKeyStore = new MutablePgpKeyStore();\n await this.mutableKeyStore.loadKeyring();\n return resolve(KeystoreService.mutableKeyStore);\n }\n return resolve(KeystoreService.mutableKeyStore);\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/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 Properties\n \n \n \n \n \n \n areaNames\n \n \n Private\n areaNamesList\n \n \n areaNamesSubject\n \n \n areaTypes\n \n \n Private\n areaTypesList\n \n \n areaTypesSubject\n \n \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: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 \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, areaNames: object)\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 location\n \n string\n \n\n \n No\n \n\n\n \n \n areaNames\n \n object\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 getAreaNames\n \n \n \n \n \n \n \ngetAreaNames()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:21\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 getAreaTypeByArea\n \n \n \n \n \n \n \ngetAreaTypeByArea(area: string, areaTypes: object)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.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 area\n \n string\n \n\n \n No\n \n\n\n \n \n areaTypes\n \n object\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 getAreaTypes\n \n \n \n \n \n \n \ngetAreaTypes()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:40\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 areaNames\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in src/app/_services/location.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n areaNamesList\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(this.areaNames)\n \n \n \n \n Defined in src/app/_services/location.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaNamesSubject\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.areaNamesList.asObservable()\n \n \n \n \n Defined in src/app/_services/location.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaTypes\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in src/app/_services/location.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n areaTypesList\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(this.areaTypes)\n \n \n \n \n Defined in src/app/_services/location.service.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaTypesSubject\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.areaTypesList.asObservable()\n \n \n \n \n Defined in src/app/_services/location.service.ts:17\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject, 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 areaNames: object = {};\n private areaNamesList: BehaviorSubject = new BehaviorSubject(this.areaNames);\n areaNamesSubject: Observable = this.areaNamesList.asObservable();\n\n areaTypes: object = {};\n private areaTypesList: BehaviorSubject = new BehaviorSubject(this.areaTypes);\n areaTypesSubject: Observable = this.areaTypesList.asObservable();\n\n constructor(private httpClient: HttpClient) {}\n\n getAreaNames(): void {\n this.httpClient\n .get(`${environment.cicMetaUrl}/areanames`)\n .pipe(first())\n .subscribe((res: object) => this.areaNamesList.next(res));\n }\n\n getAreaNameByLocation(location: string, areaNames: object): string {\n const keywords = location.toLowerCase().split(' ');\n for (const keyword of keywords) {\n const queriedAreaName: string = Object.keys(areaNames).find((key) =>\n areaNames[key].includes(keyword)\n );\n if (queriedAreaName) {\n return queriedAreaName;\n }\n }\n }\n\n getAreaTypes(): void {\n this.httpClient\n .get(`${environment.cicMetaUrl}/areatypes`)\n .pipe(first())\n .subscribe((res: object) => this.areaTypesList.next(res));\n }\n\n getAreaTypeByArea(area: string, areaTypes: object): string {\n const keywords = area.toLowerCase().split(' ');\n for (const keyword of keywords) {\n const queriedAreaType: string = Object.keys(areaTypes).find((key) =>\n areaTypes[key].includes(keyword)\n );\n if (queriedAreaType) {\n return queriedAreaType;\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"},"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 Description\n \n \n Intercepts and handles of events from outgoing HTTP request. \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:20\n \n \n\n \n \n Initialization of the logging interceptor.\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 \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:35\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 forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\nimport { finalize, tap } from 'rxjs/operators';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Intercepts and handles of events from outgoing HTTP request. */\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n /**\n * Initialization of the logging interceptor.\n *\n * @param loggingService - A service that provides logging capabilities.\n */\n constructor(private loggingService: LoggingService) {}\n\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 forwarded request.\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 \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:7\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: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 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:35\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:39\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: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 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: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 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: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 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: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 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\n \n import { Injectable, isDevMode } from '@angular/core';\nimport { NGXLogger } from 'ngx-logger';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LoggingService {\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 Description\n \n \n Toggle availability of sidebar on menu item selection. \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:8\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:25\n \n \n\n\n \n \n Toggle the availability of the sidebar. \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/** Toggle availability of sidebar on menu item selection. */\n@Directive({\n selector: '[appMenuSelection]',\n})\nexport class MenuSelectionDirective {\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\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 /** Toggle the availability of the sidebar. */\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 Description\n \n \n Toggle availability of sidebar on menu toggle click. \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:8\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:22\n \n \n\n\n \n \n Toggle the availability of the sidebar. \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/** Toggle availability of sidebar on menu toggle click. */\n@Directive({\n selector: '[appMenuToggle]',\n})\nexport class MenuToggleDirective {\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.onMenuToggle();\n });\n }\n\n /** Toggle the availability of the sidebar. */\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 Description\n \n \n Meta object interface \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 Account details \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 Meta store id \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 Signature used during write. \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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 Description\n \n \n Meta response interface \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 Meta store id \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 Meta object \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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 \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:936\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 {\n HTTP_INTERCEPTORS,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} 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 } 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: object = {\n 'Mukuru Nairobi': [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n 'Kinango Kwale': [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n 'Misc Nairobi': [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n 'Kisauni Mombasa': [\n 'bamburi',\n 'mnyuchi',\n 'kisauni',\n 'kasauni',\n 'mworoni',\n 'nyali',\n 'falcon',\n 'shanzu',\n 'bombolulu',\n 'kandongo',\n 'kadongo',\n 'mshomoro',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'magongoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n 'mjinga',\n 'mlaleo',\n 'utange',\n ],\n 'Misc Mombasa': [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n Kilifi: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n Kakuma: ['kakuma'],\n Kitui: ['kitui', 'mwingi'],\n Nyanza: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n 'Misc Rural Counties': [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n other: ['other', 'none', 'unknown'],\n};\n\nconst areaTypes: object = {\n urban: ['urban', 'nairobi', 'mombasa', 'kisauni'],\n rural: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n periurban: ['kilifi', 'periurban'],\n other: ['other'],\n};\n\n/** A mock of the user's business categories */\nconst categories: object = {\n system: ['system', 'office main', 'office main phone'],\n education: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n faith: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n government: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n ],\n environment: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n farming: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n labour: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n food: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n water: ['maji', 'water'],\n health: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n savings: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n shop: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n transport: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n 'fuel/energy': [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n other: ['other', 'none', 'unknown', 'none'],\n};\n\n/** A mock of curated genders */\nconst genders: Array = ['male', 'female', 'other'];\n\n/** A mock of curated transaction types. */\nconst transactionTypes: Array = [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamations',\n];\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@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.endsWith('/areatypes') && method === 'GET':\n return getAreaTypes();\n case url.endsWith('/categories') && method === 'GET':\n return getCategories();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\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 return ok(areaNames);\n }\n\n function getAreaTypes(): Observable> {\n return ok(areaTypes);\n }\n\n function getCategories(): Observable> {\n return ok(categories);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\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/** Exports the MockBackendInterceptor as an Angular provider. */\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"},"components/NetworkStatusComponent.html":{"url":"components/NetworkStatusComponent.html","title":"component - NetworkStatusComponent","body":"\n \n\n\n\n\n\n Components\n NetworkStatusComponent\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/network-status/network-status.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-network-status\n \n\n \n styleUrls\n ./network-status.component.scss\n \n\n\n\n \n templateUrl\n ./network-status.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 noInternetConnection\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleNetworkChange\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(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in src/app/shared/network-status/network-status.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 cdr\n \n \n ChangeDetectorRef\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 handleNetworkChange\n \n \n \n \n \n \n \nhandleNetworkChange()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.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 ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:16\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 noInternetConnection\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : !navigator.onLine\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\n\n@Component({\n selector: 'app-network-status',\n templateUrl: './network-status.component.html',\n styleUrls: ['./network-status.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class NetworkStatusComponent implements OnInit {\n noInternetConnection: boolean = !navigator.onLine;\n\n constructor(private cdr: ChangeDetectorRef) {\n this.handleNetworkChange();\n }\n\n ngOnInit(): void {}\n\n handleNetworkChange(): void {\n setTimeout(() => {\n if (!navigator.onLine !== this.noInternetConnection) {\n this.noInternetConnection = !navigator.onLine;\n this.cdr.detectChanges();\n }\n this.handleNetworkChange();\n }, 5000);\n }\n}\n\n \n\n \n \n \n \n \n OFFLINE \n \n \n \n ONLINE \n \n \n \n\n\n \n\n \n \n ./network-status.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 = ' OFFLINE ONLINE '\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'NetworkStatusComponent'};\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/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: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 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:26\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(private formBuilder: FormBuilder) {}\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 {\n return this.organizationForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) {\n return;\n }\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 \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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Description\n \n \n Provides functionality for signing and verifying signed messages. \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:74\n \n \n\n \n \n Initializing the Signer.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n keyStore\n \n \n MutableKeyStore\n \n \n \n No\n \n \n \n \nA keystore holding pgp keys.\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 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:60\n \n \n\n \n \n Encryption algorithm used \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:62\n \n \n\n \n \n Message digest \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:64\n \n \n\n \n \n Encryption engine used. \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:66\n \n \n\n \n \n A keystore holding pgp keys. \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:68\n \n \n\n \n \n A service that provides logging capabilities. \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:70\n \n \n\n \n \n Event triggered on successful signing of message. \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:72\n \n \n\n \n \n Event triggered on successful verification of a signature. \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:74\n \n \n\n \n \n Generated signature \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:90\n \n \n\n\n \n \n Get the private key fingerprint.\n\n\n \n \n \n Returns : string\n\n \n \n A private key fingerprint.\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:99\n \n \n\n\n \n \n Load the message digest.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \nA signable object.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If digest has been loaded successfully.\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:109\n \n \n\n\n \n \n Signs a message using a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message to be signed.\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:144\n \n \n\n\n \n \n Verify that signature is valid.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message that was signed.\n\n\n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \nThe generated signature.\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 * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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:11\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 : environment.dashboardUrl\n \n \n \n \n Defined in src/app/pages/pages.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { environment } from '@src/environments/environment';\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 = environment.dashboardUrl;\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 { 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@NgModule({\n declarations: [PagesComponent],\n imports: [\n CommonModule,\n PagesRoutingModule,\n SharedModule,\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 {\n path: 'tx',\n loadChildren: () =>\n \"import('@pages/transactions/transactions.module').then((m) => m.TransactionsModule)\",\n },\n {\n path: 'settings',\n loadChildren: () => \"import('@pages/settings/settings.module').then((m) => m.SettingsModule)\",\n },\n {\n path: 'accounts',\n loadChildren: () => \"import('@pages/accounts/accounts.module').then((m) => m.AccountsModule)\",\n },\n {\n path: 'tokens',\n loadChildren: () => \"import('@pages/tokens/tokens.module').then((m) => m.TokensModule)\",\n },\n {\n path: 'admin',\n loadChildren: () => \"import('@pages/admin/admin.module').then((m) => m.AdminModule)\",\n },\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 Description\n \n \n Toggle password form field input visibility \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:15\n \n \n\n \n \n Handle click events on the html element.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \nA wrapper around a native element inside of a View.\n\n\n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \nExtend this base class to implement custom rendering.\n\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:15\n \n \n \n \n The password form field icon id \n\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:11\n \n \n \n \n The password form field id \n\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:30\n \n \n\n\n \n \n Toggle the visibility of the password input field value and accompanying icon. \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/** Toggle password form field input visibility */\n@Directive({\n selector: '[appPasswordToggle]',\n})\nexport class PasswordToggleDirective {\n /** The password form field id */\n @Input()\n id: string;\n\n /** The password form field icon id */\n @Input()\n iconId: string;\n\n /**\n * Handle click events on the html element.\n *\n * @param elementRef - A wrapper around a native element inside of a View.\n * @param renderer - Extend this base class to implement custom rendering.\n */\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.togglePasswordVisibility();\n });\n }\n\n /** Toggle the visibility of the password input field value and accompanying icon. */\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 Private\n Static\n accountRegistry\n \n \n Static\n fileGetter\n \n \n Private\n Static\n registry\n \n \n Private\n Static\n tokenRegistry\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n Async\n getAccountRegistry\n \n \n Static\n Async\n getRegistry\n \n \n Static\n Async\n getTokenRegistry\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 Async\n getAccountRegistry\n \n \n \n \n \n \n \n \n getAccountRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:50\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 Static\n Async\n getRegistry\n \n \n \n \n \n \n \n \n getRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:17\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 Static\n Async\n getTokenRegistry\n \n \n \n \n \n \n \n \n getTokenRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:35\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 Private\n Static\n accountRegistry\n \n \n \n \n \n \n Type : AccountIndex\n\n \n \n \n \n Defined in src/app/_services/registry.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n Static\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 Private\n Static\n registry\n \n \n \n \n \n \n Type : CICRegistry\n\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 Private\n Static\n tokenRegistry\n \n \n \n \n \n \n Type : TokenRegistry\n\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\n \n import { Injectable } from '@angular/core';\nimport { environment } from '@src/environments/environment';\nimport { CICRegistry, FileGetter } from '@cicnet/cic-client';\nimport { TokenRegistry, AccountIndex } from '@app/_eth';\nimport { HttpGetter } from '@app/_helpers';\nimport { Web3Service } from '@app/_services/web3.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class RegistryService {\n static fileGetter: FileGetter = new HttpGetter();\n private static registry: CICRegistry;\n private static tokenRegistry: TokenRegistry;\n private static accountRegistry: AccountIndex;\n\n public static async getRegistry(): Promise {\n return new Promise(async (resolve, reject) => {\n if (!RegistryService.registry) {\n RegistryService.registry = new CICRegistry(\n Web3Service.getInstance(),\n environment.registryAddress,\n 'Registry',\n RegistryService.fileGetter,\n ['../../assets/js/block-sync/data']\n );\n RegistryService.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n await RegistryService.registry.load();\n return resolve(RegistryService.registry);\n }\n return resolve(RegistryService.registry);\n });\n }\n\n public static async getTokenRegistry(): Promise {\n return new Promise(async (resolve, reject) => {\n if (!RegistryService.tokenRegistry) {\n const registry = await RegistryService.getRegistry();\n const tokenRegistryAddress = await registry.getContractAddressByName('TokenRegistry');\n if (!tokenRegistryAddress) {\n return reject('Unable to initialize Token Registry');\n }\n RegistryService.tokenRegistry = new TokenRegistry(tokenRegistryAddress);\n return resolve(RegistryService.tokenRegistry);\n }\n return resolve(RegistryService.tokenRegistry);\n });\n }\n\n public static async getAccountRegistry(): Promise {\n return new Promise(async (resolve, reject) => {\n if (!RegistryService.accountRegistry) {\n const registry = await RegistryService.getRegistry();\n const accountRegistryAddress = await registry.getContractAddressByName('AccountRegistry');\n\n if (!accountRegistryAddress) {\n return reject('Unable to initialize Account Registry');\n }\n RegistryService.accountRegistry = new AccountIndex(accountRegistryAddress);\n return resolve(RegistryService.accountRegistry);\n }\n return resolve(RegistryService.accountRegistry);\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"},"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 \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:21\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:38\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 {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} 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@Injectable({\n providedIn: 'root',\n})\nexport class RoleGuard implements CanActivate {\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\n ): 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 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 [appRouterLink]\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:9\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:13\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:10\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: '[appRouterLink]',\n})\n// tslint:disable-next-line:directive-class-suffix\nexport class RouterLinkDirectiveStub {\n // tslint:disable-next-line:no-input-rename\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:10\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 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 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 Description\n \n \n Settings class \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:13\n \n \n\n \n \n Initialize the settings.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n scanFilter\n \n \n any\n \n \n \n No\n \n \n \n \nA resource for searching through blocks on the blockchain network.\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 registry\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:4\n \n \n\n \n \n CIC Registry instance \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 A resource for searching through blocks on the blockchain network. \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 Transaction Helper instance \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:10\n \n \n\n \n \n Web3 Object \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n class Settings {\n /** CIC Registry instance */\n registry: any;\n /** A resource for searching through blocks on the blockchain network. */\n scanFilter: any;\n /** Transaction Helper instance */\n txHelper: any;\n /** Web3 Object */\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n\n /**\n * Initialize the settings.\n *\n * @param scanFilter - A resource for searching through blocks on the blockchain network.\n */\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n /** An active web3 instance connected to the blockchain network. */\n engine: any;\n /** The connection socket to the blockchain network. */\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\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 displayedColumns\n \n \n paginator\n \n \n sort\n \n \n trustedUsers\n \n \n userInfo\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:36\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:40\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:44\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:26\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: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:17\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:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n userInfo\n \n \n \n \n \n \n Type : Staff\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 dataSource: MatTableDataSource;\n displayedColumns: Array = ['name', 'email', 'userId'];\n trustedUsers: Array;\n userInfo: Staff;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private authService: AuthService) {}\n\n ngOnInit(): void {\n this.authService.trustedUsersSubject.subscribe((users) => {\n this.dataSource = new MatTableDataSource(users);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.trustedUsers = users;\n });\n this.userInfo = this.authService.getPrivateKeyInfo();\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 ACCOUNT MANAGEMENT \n \n CICADA Admin Credentials\n UserId: {{ userInfo?.userid }} \n Username: {{ userInfo?.name }} \n Email: {{ userInfo?.email }} \n \n \n \n \n LOGOUT ADMIN\n \n \n \n \n \n \n \n \n TRUSTED USERS\n \n EXPORT\n \n \n \n \n \n Filter \n \n search\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 ./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 ACCOUNT MANAGEMENT CICADA Admin Credentials UserId: {{ userInfo?.userid }} Username: {{ userInfo?.name }} Email: {{ userInfo?.email }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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@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_declarations\n\n\n\ncluster_SharedModule_exports\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\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->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\nUnixDatePipe\n\nUnixDatePipe\n\nSharedModule -->\n\nUnixDatePipe->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\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \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\nUnixDatePipe \n\nUnixDatePipe \n\nUnixDatePipe -->\n\nSharedModule->UnixDatePipe \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 NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n UnixDatePipe\n \n \n \n \n Exports\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n UnixDatePipe\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';\nimport { NetworkStatusComponent } from './network-status/network-status.component';\nimport { UnixDatePipe } from './_pipes/unix-date.pipe';\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe,\n NetworkStatusComponent,\n UnixDatePipe,\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe,\n NetworkStatusComponent,\n UnixDatePipe,\n ],\n imports: [CommonModule, RouterModule, MatIconModule, MatDialogModule],\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:12\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 constructor() {}\n\n ngOnInit(): void {}\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Description\n \n \n Signable object interface \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:11\n \n \n\n\n \n \n The message to be signed. \n\n\n \n Returns : string\n\n \n \n \n \n \n\n\n \n\n\n \n import * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Meta signature interface \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 Algorithm used \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 Data that was signed. \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 Message digest \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 Encryption engine used. \n\n \n \n \n \n \n \n\n\n \n interface AccountDetails {\n /** Age of user */\n age?: string;\n /** Token balance on account */\n balance?: number;\n /** Business category of user. */\n category?: string;\n /** Account registration day */\n date_registered: number;\n /** User's gender */\n gender: string;\n /** Account identifiers */\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n /** User's location */\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n /** Products or services provided by user. */\n products: string[];\n /** Type of account */\n type?: string;\n /** Personal identifying information of user */\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n /** Algorithm used */\n algo: string;\n /** Data that was signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n /** Account details */\n data: AccountDetails;\n /** Meta store id */\n id: string;\n /** Signature used during write. */\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n /** Meta store id */\n id: string;\n /** Meta object */\n m: Meta;\n}\n\n/** Default account data object */\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\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-1.html":{"url":"interfaces/Signature-1.html","title":"interface - Signature-1","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/_pgp/pgp-signer.ts\n \n\n \n Description\n \n \n Signature object interface \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 Encryption algorithm used \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 Data to be signed. \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 Message digest \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 Encryption engine used. \n\n \n \n \n \n \n \n\n\n \n import * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Signer interface \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:32\n \n \n\n\n \n \n Get the private key fingerprint.\n\n\n \n \n \n Returns : string\n\n \n \n A private key fingerprint.\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:34\n \n \n\n\n \n \n Event triggered on successful signing of message. \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:36\n \n \n\n\n \n \n Event triggered on successful verification of a signature. \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:42\n \n \n\n\n \n \n Load the message digest.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \nA signable object.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If digest has been loaded successfully.\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:48\n \n \n\n\n \n \n Signs a message using a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message to be signed.\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:54\n \n \n\n\n \n \n Verify that signature is valid.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \nThe message that was signed.\n\n\n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \nThe generated signature.\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 * as openpgp from 'openpgp';\n\n// Application imports\nimport { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Signable object interface */\ninterface Signable {\n /** The message to be signed. */\n digest(): string;\n}\n\n/** Signature object interface */\ninterface Signature {\n /** Encryption algorithm used */\n algo: string;\n /** Data to be signed. */\n data: string;\n /** Message digest */\n digest: string;\n /** Encryption engine used. */\n engine: string;\n}\n\n/** Signer interface */\ninterface Signer {\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n fingerprint(): string;\n /** Event triggered on successful signing of message. */\n onsign(signature: Signature): void;\n /** Event triggered on successful verification of a signature. */\n onverify(flag: boolean): void;\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n prepare(material: Signable): boolean;\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\n */\n sign(digest: string): Promise;\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n verify(digest: string, signature: Signature): void;\n}\n\n/** Provides functionality for signing and verifying signed messages. */\nclass PGPSigner implements Signer {\n /** Encryption algorithm used */\n algo = 'sha256';\n /** Message digest */\n dgst: string;\n /** Encryption engine used. */\n engine = 'pgp';\n /** A keystore holding pgp keys. */\n keyStore: MutableKeyStore;\n /** A service that provides logging capabilities. */\n loggingService: LoggingService;\n /** Event triggered on successful signing of message. */\n onsign: (signature: Signature) => void;\n /** Event triggered on successful verification of a signature. */\n onverify: (flag: boolean) => void;\n /** Generated signature */\n signature: Signature;\n\n /**\n * Initializing the Signer.\n * @param keyStore - A keystore holding pgp keys.\n */\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n /**\n * Get the private key fingerprint.\n * @returns A private key fingerprint.\n */\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n /**\n * Load the message digest.\n * @param material - A signable object.\n * @returns true - If digest has been loaded successfully.\n */\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n /**\n * Signs a message using a private key.\n * @async\n * @param digest - The message to be signed.\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\n .sign(opts)\n .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 })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n\n /**\n * Verify that signature is valid.\n * @param digest - The message that was signed.\n * @param signature - The generated signature.\n */\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .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\n/** @exports */\nexport { PGPSigner, Signable, Signature, Signer };\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 Description\n \n \n Staff object interface \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 Comment made on the public key. \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 Email used to create the public key. \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 Name of the owner of the public key \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 Tags added to the public key. \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 User ID of the owner of the public key. \n\n \n \n \n \n \n \n\n\n \n interface Staff {\n /** Comment made on the public key. */\n comment: string;\n /** Email used to create the public key. */\n email: string;\n /** Name of the owner of the public key */\n name: string;\n /** Tags added to the public key. */\n tag: number;\n /** User ID of the owner of the public key. */\n userid: string;\n}\n\n/** @exports */\nexport { Staff };\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 Description\n \n \n Token object interface \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 Optional\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 Address of the deployed token contract. \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 Number of decimals to convert to smallest denomination of the token. \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 Name of the token. \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 Address of account that deployed token. \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 Token reserve to token minting ratio. \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 Optional\n \n \n\n\n\n\n \n \n Token reserve information \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 Total token supply. \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 The unique token symbol. \n\n \n \n \n \n \n \n\n\n \n interface Token {\n /** Address of the deployed token contract. */\n address: string;\n /** Number of decimals to convert to smallest denomination of the token. */\n decimals: string;\n /** Name of the token. */\n name: string;\n /** Address of account that deployed token. */\n owner?: string;\n /** Token reserve to token minting ratio. */\n reserveRatio?: string;\n /** Token reserve information */\n reserves?: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n weight: string;\n balance: string;\n };\n };\n /** Total token supply. */\n supply: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Token };\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 \n Methods\n \n \n \n \n \n \n close\n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n token\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n closeWindow\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/tokens/token-details/token-details.component.ts:20\n \n \n\n \n \n\n\n \n Inputs\n \n \n \n \n \n token\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:18\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n closeWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:20\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n close\n \n \n \n \n \n \n \nclose()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/token-details/token-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 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:24\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 {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n OnInit,\n Output,\n} from '@angular/core';\nimport { Token } from '@app/_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 @Input() token: Token;\n\n @Output() closeWindow: EventEmitter = new EventEmitter();\n\n constructor() {}\n\n ngOnInit(): void {}\n\n close(): void {\n this.token = null;\n this.closeWindow.emit(this.token);\n }\n}\n\n \n\n \n \n \n \n \n TOKEN DETAILS\n \n CLOSE\n \n \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\n middle income societies.\n \n \n Supply: {{ token?.supply | tokenRatio }}\n \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 ./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 = ' TOKEN DETAILS CLOSE 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 Default value\n \n \n \n \n value\n \n any\n \n\n \n No\n \n\n \n 0\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 \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 = 0, ...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';\nimport { Web3Service } from '@app/_services/web3.service';\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 = Web3Service.getInstance();\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 load\n \n \n registry\n \n \n tokenRegistry\n \n \n tokens\n \n \n Private\n tokensList\n \n \n tokensSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addToken\n \n \n Async\n getTokenBalance\n \n \n Async\n getTokenByAddress\n \n \n Async\n getTokenBySymbol\n \n \n Async\n getTokenName\n \n \n Async\n getTokens\n \n \n Async\n getTokenSymbol\n \n \n Async\n init\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/token.service.ts:19\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addToken\n \n \n \n \n \n \n \naddToken(token: Token)\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 Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n token\n \n Token\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 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:70\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 Async\n getTokenByAddress\n \n \n \n \n \n \n \n \n getTokenByAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.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 \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 getTokenBySymbol\n \n \n \n \n \n \n \n \n getTokenBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:60\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 : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getTokenName\n \n \n \n \n \n \n \n \n getTokenName()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:75\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 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:41\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 getTokenSymbol\n \n \n \n \n \n \n \n \n getTokenSymbol()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:80\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 init\n \n \n \n \n \n \n \n \n init()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:23\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 load\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(false)\n \n \n \n \n Defined in src/app/_services/token.service.ts:19\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:12\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:13\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 \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 \n Private\n tokensList\n \n \n \n \n \n \n Type : BehaviorSubject>\n\n \n \n \n \n Default value : new BehaviorSubject>(\n this.tokens\n )\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 tokensSubject\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.tokensList.asObservable()\n \n \n \n \n Defined in src/app/_services/token.service.ts:18\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CICRegistry } from '@cicnet/cic-client';\nimport { TokenRegistry } from '@app/_eth';\nimport { RegistryService } from '@app/_services/registry.service';\nimport { Token } from '@app/_models';\nimport { BehaviorSubject, Observable, Subject } from 'rxjs';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TokenService {\n registry: CICRegistry;\n tokenRegistry: TokenRegistry;\n tokens: Array = [];\n private tokensList: BehaviorSubject> = new BehaviorSubject>(\n this.tokens\n );\n tokensSubject: Observable> = this.tokensList.asObservable();\n load: BehaviorSubject = new BehaviorSubject(false);\n\n constructor() {}\n\n async init(): Promise {\n this.registry = await RegistryService.getRegistry();\n this.tokenRegistry = await RegistryService.getTokenRegistry();\n this.load.next(true);\n }\n\n addToken(token: Token): void {\n const savedIndex = this.tokens.findIndex((tk) => tk.address === token.address);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.tokens.splice(savedIndex, 1);\n }\n this.tokens.unshift(token);\n this.tokensList.next(this.tokens);\n }\n\n async getTokens(): Promise {\n const count: number = await this.tokenRegistry.totalTokens();\n for (let i = 0; i {\n const token: any = {};\n const tokenContract = await this.registry.addToken(address);\n token.address = address;\n token.name = await tokenContract.methods.name().call();\n token.symbol = await tokenContract.methods.symbol().call();\n token.supply = await tokenContract.methods.totalSupply().call();\n token.decimals = await tokenContract.methods.decimals().call();\n return token;\n }\n\n async getTokenBySymbol(symbol: string): Promise> {\n const tokenSubject: Subject = new Subject();\n await this.getTokens();\n this.tokensSubject.subscribe((tokens) => {\n const queriedToken = tokens.find((token) => token.symbol === symbol);\n tokenSubject.next(queriedToken);\n });\n return tokenSubject.asObservable();\n }\n\n async getTokenBalance(address: string): Promise Promise> {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.balanceOf(address).call();\n }\n\n async getTokenName(): Promise {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.name().call();\n }\n\n async getTokenSymbol(): Promise {\n const token = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await token.methods.symbol().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 token\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 ngOnInit\n \n \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)\n \n \n \n \n Defined in src/app/pages/tokens/tokens.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 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 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:39\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:47\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/tokens/tokens.component.ts:25\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 viewToken\n \n \n \n \n \n \n \nviewToken(token)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.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 token\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 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:17\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:16\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:18\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:19\n \n \n\n\n \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/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:20\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 { TokenService } from '@app/_services';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { exportCsv } from '@app/_helpers';\nimport { Token } from '@app/_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 token: Token;\n\n constructor(private tokenService: TokenService) {}\n\n ngOnInit(): void {\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n await this.tokenService.getTokens();\n }\n });\n this.tokenService.tokensSubject.subscribe((tokens) => {\n this.dataSource = new MatTableDataSource(tokens);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.tokens = tokens;\n });\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n viewToken(token): void {\n this.token = token;\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 \n EXPORT\n \n \n \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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_declarations\n\n\n\ncluster_TokensModule_imports\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@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:12\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 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 ./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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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"},"interfaces/Transaction.html":{"url":"interfaces/Transaction.html","title":"interface - Transaction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction object interface \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 Properties\n \n \n \n \n \n from\n \n \n \n \n from: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the transaction sender. \n\n \n \n \n \n \n \n \n \n \n recipient\n \n \n \n \n recipient: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the transaction recipient. \n\n \n \n \n \n \n \n \n \n \n sender\n \n \n \n \n sender: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n Account information of the transaction sender. \n\n \n \n \n \n \n \n \n \n \n to\n \n \n \n \n to: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Address of the transaction recipient. \n\n \n \n \n \n \n \n \n \n \n token\n \n \n \n \n token: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n Transaction token information. \n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n Transaction mining information. \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 Type of transaction. \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n value: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Amount of tokens transacted. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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 tokenName\n \n \n tokenSymbol\n \n \n traderBloxbergLink\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n close\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 Outputs\n \n \n \n \n \n \n closeWindow\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, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:30\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 tokenService\n \n \n TokenService\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:22\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n closeWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n close\n \n \n \n \n \n \n \nclose()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.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 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:78\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:39\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:69\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:61\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:57\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:65\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:27\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:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenName\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:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\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:30\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:28\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n OnInit,\n Output,\n} from '@angular/core';\nimport { Router } from '@angular/router';\nimport { TokenService, 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\n @Output() closeWindow: EventEmitter = new EventEmitter();\n\n senderBloxbergLink: string;\n recipientBloxbergLink: string;\n traderBloxbergLink: string;\n tokenName: string;\n tokenSymbol: string;\n\n constructor(\n private router: Router,\n private transactionService: TransactionService,\n private snackBar: MatSnackBar,\n private tokenService: TokenService\n ) {}\n\n ngOnInit(): void {\n if (this.transaction?.type === 'conversion') {\n this.traderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n }\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n this.tokenName = await this.tokenService.getTokenName();\n }\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 close(): void {\n this.transaction = null;\n this.closeWindow.emit(this.transaction);\n }\n}\n\n \n\n \n \n \n \n \n TRANSACTION DETAILS\n \n CLOSE\n \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 \n Recipient: {{ transaction.recipient?.vcard.fn[0].value }}\n \n Recipient Address:\n {{ transaction.to }} \n \n \n View Recipient\n \n \n \n Amount: {{ transaction.value | tokenRatio }} {{ tokenSymbol | uppercase }}\n \n \n Token:\n \n \n \n Address:\n {{ transaction.token._address }}\n \n \n \n \n Name: {{ tokenName }}\n \n \n Symbol: {{ tokenSymbol | uppercase }}\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 | unixDate }}\n \n \n \n \n \n Resend SMS\n \n \n \n \n Reverse Transaction\n \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 \n View Trader\n \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 | uppercase }}\n \n \n Amount: {{ transaction.fromValue }}\n {{ transaction.sourceToken.symbol | uppercase }}\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 | uppercase }}\n \n \n Amount: {{ transaction.toValue }}\n {{ transaction.destinationToken.symbol | uppercase }}\n \n \n \n \n \n Resend SMS\n \n \n \n \n Reverse Transaction\n \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: {{ transaction.value | tokenRatio }} {{ tokenSymbol | uppercase }} Token: Address: {{ transaction.token._address }} Name: {{ tokenName }} Symbol: {{ tokenSymbol | uppercase }} Transaction: Block: {{ transaction.tx.block }} Index: {{ transaction.tx.txIndex }} Hash: {{ transaction.tx.txHash }} Success: {{ transaction.tx.success }} Timestamp: {{ transaction.tx.timestamp | unixDate }} 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 | uppercase }} Amount: {{ transaction.fromValue }} {{ transaction.sourceToken.symbol | uppercase }} Destination Token: Address: {{ transaction.destinationToken.address }} Name: {{ transaction.destinationToken.name }} Symbol: {{ transaction.destinationToken.symbol | uppercase }} Amount: {{ transaction.toValue }} {{ transaction.destinationToken.symbol | uppercase }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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 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 Async\n init\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, userService: UserService, loggingService: LoggingService)\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 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 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:138\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, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:158\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 account\n \n string\n \n\n \n No\n \n\n \n \n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n \n 100\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 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/transaction.service.ts:41\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 resetTransactionsList\n \n \n \n \n \n \n \nresetTransactionsList()\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:153\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:105\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:165\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:28\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:27\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: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 { defaultAccount } from '@app/_models';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { HttpClient } from '@angular/common/http';\nimport { CICRegistry } from '@cicnet/cic-client';\nimport { RegistryService } from '@app/_services/registry.service';\nimport Web3 from 'web3';\nimport { Web3Service } from '@app/_services/web3.service';\nimport { KeystoreService } from '@app/_services/keystore.service';\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 web3: Web3;\n registry: CICRegistry;\n\n constructor(\n private httpClient: HttpClient,\n private userService: UserService,\n private loggingService: LoggingService\n ) {\n this.web3 = Web3Service.getInstance();\n }\n\n async init(): Promise {\n this.registry = await RegistryService.getRegistry();\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/user/${address}/${offset}/${limit}`);\n }\n\n async setTransaction(transaction, cacheSize: number): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === transaction.tx.txHash)) {\n return;\n }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n if (transaction.from === environment.trustedDeclaratorAddress) {\n transaction.sender = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.from))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.sender = this.getAccountInfo(res, cacheSize);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${transaction.from} not found`,\n this,\n { error }\n );\n }\n );\n }\n if (transaction.to === environment.trustedDeclaratorAddress) {\n transaction.recipient = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.to))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.recipient = this.getAccountInfo(res, cacheSize);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${transaction.to} not found`,\n this,\n { error }\n );\n }\n );\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)) {\n return;\n }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n if (conversion.trader === environment.trustedDeclaratorAddress) {\n conversion.sender = conversion.recipient = defaultAccount;\n this.userService.addAccount(defaultAccount, cacheSize);\n } else {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(conversion.trader))\n .pipe(first())\n .subscribe(\n (res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res);\n },\n (error) => {\n this.loggingService.sendErrorLevelMessage(\n `Account with address ${conversion.trader} not found`,\n this,\n { error }\n );\n }\n );\n }\n } finally {\n this.addTransaction(conversion, cacheSize);\n }\n }\n\n addTransaction(transaction, cacheSize: number): void {\n const savedIndex = this.transactions.findIndex((tx) => tx.tx.txHash === transaction.tx.txHash);\n if (savedIndex === 0) {\n return;\n }\n if (savedIndex > 0) {\n this.transactions.splice(savedIndex, 1);\n }\n this.transactions.unshift(transaction);\n if (this.transactions.length > cacheSize) {\n this.transactions.length = Math.min(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, cacheSize: number = 100): any {\n const accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n this.userService.addAccount(accountInfo, cacheSize);\n return accountInfo;\n }\n\n async transferRequest(\n tokenAddress: string,\n senderAddress: string,\n recipientAddress: string,\n value: number\n ): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName(\n 'TransferAuthorization'\n );\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(\n ['address', 'address', 'address', 'uint256'],\n [senderAddress, recipientAddress, tokenAddress, value]\n );\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 keystore = await KeystoreService.getKeystore();\n const privateKey = keystore.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 tokenSymbol\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(transactionService: TransactionService, userService: UserService, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:34\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 userService\n \n \n UserService\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 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:64\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:86\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:68\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:81\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: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 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:60\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:25\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: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/transactions/transactions.component.ts:33\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:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenSymbol\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:31\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:28\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:23\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:24\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:27\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:29\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:30\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit,\n ChangeDetectionStrategy,\n Component,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { TokenService, 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 tokenSymbol: string;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private transactionService: TransactionService,\n private userService: UserService,\n private tokenService: TokenService\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\n .getTransactionTypes()\n .pipe(first())\n .subscribe((res) => (this.transactionsTypes = res));\n this.tokenService.load.subscribe(async (status: boolean) => {\n if (status) {\n this.tokenSymbol = await this.tokenService.getTokenSymbol();\n }\n });\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(\n (transaction) => transaction.type + 's' === this.transactionsType\n );\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 Transfers \n \n \n\n \n \n TRANSFER TYPE \n \n ALL TRANSFERS\n \n {{ transactionType | uppercase }}\n \n \n \n \n EXPORT\n \n \n\n \n Filter \n \n search\n \n\n \n \n Sender\n \n {{ transaction?.sender?.vcard.fn[0].value || transaction.from }}\n \n \n\n \n Recipient\n \n {{ transaction?.recipient?.vcard.fn[0].value || transaction.to }}\n \n \n\n \n Value\n \n {{ transaction?.value | tokenRatio }} {{ tokenSymbol | uppercase }}\n {{ transaction?.toValue | tokenRatio }} {{ tokenSymbol | uppercase }}\n \n \n\n \n Created\n \n {{ transaction?.tx.timestamp | unixDate }}\n \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 ./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 || transaction.from }} Recipient {{ transaction?.recipient?.vcard.fn[0].value || transaction.to }} Value {{ transaction?.value | tokenRatio }} {{ tokenSymbol | uppercase }} {{ transaction?.toValue | tokenRatio }} {{ tokenSymbol | uppercase }} Created {{ transaction?.tx.timestamp | unixDate }} 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': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'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': '[appRouterLink]'}];\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_exports\n\n\n\ncluster_TransactionsModule_imports\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 { 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@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [TransactionDetailsComponent],\n imports: [\n CommonModule,\n TransactionsRoutingModule,\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"},"interfaces/Tx.html":{"url":"interfaces/Tx.html","title":"interface - Tx","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction data interface \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 Properties\n \n \n \n \n \n block\n \n \n \n \n block: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Transaction block number. \n\n \n \n \n \n \n \n \n \n \n success\n \n \n \n \n success: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Transaction mining status. \n\n \n \n \n \n \n \n \n \n \n timestamp\n \n \n \n \n timestamp: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Time transaction was mined. \n\n \n \n \n \n \n \n \n \n \n txHash\n \n \n \n \n txHash: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Hash generated by transaction. \n\n \n \n \n \n \n \n \n \n \n txIndex\n \n \n \n \n txIndex: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n Index of transaction in block. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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/TxToken.html":{"url":"interfaces/TxToken.html","title":"interface - TxToken","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Transaction token object interface \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 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 Address of the deployed token contract. \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 Name of the token. \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 The unique token symbol. \n\n \n \n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** Conversion object interface */\ninterface Conversion {\n /** Final transaction token information. */\n destinationToken: TxToken;\n /** Initial transaction token amount. */\n fromValue: number;\n /** Initial transaction token information. */\n sourceToken: TxToken;\n /** Final transaction token amount. */\n toValue: number;\n /** Address of the initiator of the conversion. */\n trader: string;\n /** Conversion mining information. */\n tx: Tx;\n /** Account information of the initiator of the conversion. */\n user: AccountDetails;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n /** Address of the transaction sender. */\n from: string;\n /** Account information of the transaction recipient. */\n recipient: AccountDetails;\n /** Account information of the transaction sender. */\n sender: AccountDetails;\n /** Address of the transaction recipient. */\n to: string;\n /** Transaction token information. */\n token: TxToken;\n /** Transaction mining information. */\n tx: Tx;\n /** Type of transaction. */\n type?: string;\n /** Amount of tokens transacted. */\n value: number;\n}\n\n/** Transaction data interface */\ninterface Tx {\n /** Transaction block number. */\n block: number;\n /** Transaction mining status. */\n success: boolean;\n /** Time transaction was mined. */\n timestamp: number;\n /** Hash generated by transaction. */\n txHash: string;\n /** Index of transaction in block. */\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n /** Address of the deployed token contract. */\n address: string;\n /** Name of the token. */\n name: string;\n /** The unique token symbol. */\n symbol: string;\n}\n\n/** @exports */\nexport { Conversion, Transaction, Tx, TxToken };\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/UnixDatePipe.html":{"url":"pipes/UnixDatePipe.html","title":"pipe - UnixDatePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n UnixDatePipe\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/unix-date.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n unixDate\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(timestamp: number, ...args: unknown[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/unix-date.pipe.ts:7\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n timestamp\n \n number\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 : 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({\n name: 'unixDate',\n})\nexport class UnixDatePipe implements PipeTransform {\n transform(timestamp: number, ...args: unknown[]): any {\n return new Date(timestamp * 1000).toLocaleDateString('en-GB');\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/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 {\n id: 6,\n user: 'Patience',\n role: 'enroller',\n action: 'Change user information',\n approval: false,\n },\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:72\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 {\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 id: 2,\n name: 'Jane Buck',\n phone: '+25412341234',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'vendor',\n created: '04/02/2020',\n balance: '56281',\n failedPinAttempts: 0,\n status: 'approved',\n bio: 'Groceries',\n gender: 'female',\n },\n {\n id: 3,\n name: 'Mc Donald',\n phone: '+25498765432',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'group',\n created: '11/16/2020',\n balance: '450',\n failedPinAttempts: 2,\n status: 'unapproved',\n bio: 'Food',\n gender: 'male',\n },\n {\n id: 4,\n name: 'Hera Cles',\n phone: '+25498769876',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '05/28/2020',\n balance: '5621',\n failedPinAttempts: 3,\n status: 'approved',\n bio: 'Shop',\n gender: 'female',\n },\n {\n id: 5,\n name: 'Silver Fia',\n phone: '+25462518374',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'token agent',\n created: '10/10/2020',\n balance: '817',\n failedPinAttempts: 0,\n status: 'unapproved',\n bio: 'Electronics',\n gender: 'male',\n },\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:134\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:124\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:103\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:87\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 {\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 id: 2,\n name: 'Jane Buck',\n phone: '+25412341234',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'vendor',\n created: '04/02/2020',\n balance: '56281',\n failedPinAttempts: 0,\n status: 'approved',\n bio: 'Groceries',\n gender: 'female',\n },\n {\n id: 3,\n name: 'Mc Donald',\n phone: '+25498765432',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'group',\n created: '11/16/2020',\n balance: '450',\n failedPinAttempts: 2,\n status: 'unapproved',\n bio: 'Food',\n gender: 'male',\n },\n {\n id: 4,\n name: 'Hera Cles',\n phone: '+25498769876',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '05/28/2020',\n balance: '5621',\n failedPinAttempts: 3,\n status: 'approved',\n bio: 'Shop',\n gender: 'female',\n },\n {\n id: 5,\n name: 'Silver Fia',\n phone: '+25462518374',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'token agent',\n created: '10/10/2020',\n balance: '817',\n failedPinAttempts: 0,\n status: 'unapproved',\n bio: 'Electronics',\n gender: 'male',\n },\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 {\n id: 6,\n user: 'Patience',\n role: 'enroller',\n action: 'Change user information',\n approval: false,\n },\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: ['environment', 'health', 'transport'],\n vcard:\n '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"},"interfaces/W3.html":{"url":"interfaces/W3.html","title":"interface - W3","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\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 Description\n \n \n Web3 object interface \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 Properties\n \n \n \n \n \n engine\n \n \n \n \n engine: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n An active web3 instance connected to the blockchain network. \n\n \n \n \n \n \n \n \n \n \n provider\n \n \n \n \n provider: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n The connection socket to the blockchain network. \n\n \n \n \n \n \n \n\n\n \n class Settings {\n /** CIC Registry instance */\n registry: any;\n /** A resource for searching through blocks on the blockchain network. */\n scanFilter: any;\n /** Transaction Helper instance */\n txHelper: any;\n /** Web3 Object */\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n\n /**\n * Initialize the settings.\n *\n * @param scanFilter - A resource for searching through blocks on the blockchain network.\n */\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n /** An active web3 instance connected to the blockchain network. */\n engine: any;\n /** The connection socket to the blockchain network. */\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\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/Web3Service.html":{"url":"injectables/Web3Service.html","title":"injectable - Web3Service","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n Web3Service\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/web3.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Static\n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n getInstance\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/web3.service.ts:9\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n getInstance\n \n \n \n \n \n \n \n \n getInstance()\n \n \n\n\n \n \n Defined in src/app/_services/web3.service.ts:13\n \n \n\n\n \n \n\n \n Returns : Web3\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n Static\n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Defined in src/app/_services/web3.service.ts:9\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';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class Web3Service {\n private static web3: Web3;\n\n constructor() {}\n\n public static getInstance(): Web3 {\n if (!Web3Service.web3) {\n Web3Service.web3 = new Web3(environment.web3Provider);\n }\n return Web3Service.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"},"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/global-error-handler.ts\n \n function\n rejectBody\n \n 0 %\n (0/1)\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 0 %\n (0/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 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/_helpers/sync.ts\n \n function\n updateSyncable\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 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n AccountDetails\n \n 100 %\n (11/11)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Meta\n \n 100 %\n (4/4)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n MetaResponse\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Signature\n \n 100 %\n (5/5)\n \n \n \n \n \n src/app/_models/account.ts\n \n variable\n defaultAccount\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Action\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n class\n Settings\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n interface\n W3\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/staff.ts\n \n interface\n Staff\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/token.ts\n \n interface\n Token\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Conversion\n \n 100 %\n (8/8)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Transaction\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Tx\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n TxToken\n \n 100 %\n (4/4)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n class\n MutablePgpKeyStore\n \n 100 %\n (26/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n interface\n MutableKeyStore\n \n 100 %\n (26/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n variable\n keyring\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n class\n PGPSigner\n \n 100 %\n (14/14)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signable\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signature\n \n 100 %\n (5/5)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signer\n \n 100 %\n (7/7)\n \n \n \n \n \n src/app/_services/auth.service.ts\n \n injectable\n AuthService\n \n 0 %\n (0/22)\n \n \n \n \n \n src/app/_services/block-sync.service.ts\n \n injectable\n BlockSyncService\n \n 0 %\n (0/9)\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/keystore.service.ts\n \n injectable\n KeystoreService\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/_services/location.service.ts\n \n injectable\n LocationService\n \n 0 %\n (0/12)\n \n \n \n \n \n src/app/_services/logging.service.ts\n \n injectable\n LoggingService\n \n 0 %\n (0/9)\n \n \n \n \n \n src/app/_services/registry.service.ts\n \n injectable\n RegistryService\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/_services/token.service.ts\n \n injectable\n TokenService\n \n 0 %\n (0/16)\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/37)\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/_services/web3.service.ts\n \n injectable\n Web3Service\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n directive\n PasswordToggleDirective\n \n 100 %\n (5/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/47)\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/12)\n \n \n \n \n \n src/app/pages/accounts/accounts.component.ts\n \n component\n AccountsComponent\n \n 0 %\n (0/18)\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/6)\n \n \n \n \n \n src/app/pages/tokens/tokens.component.ts\n \n component\n TokensComponent\n \n 0 %\n (0/12)\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/16)\n \n \n \n \n \n src/app/pages/transactions/transactions.component.ts\n \n component\n TransactionsComponent\n \n 0 %\n (0/19)\n \n \n \n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n directive\n MenuSelectionDirective\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n directive\n MenuToggleDirective\n \n 100 %\n (3/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/_pipes/unix-date.pipe.ts\n \n pipe\n UnixDatePipe\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/4)\n \n \n \n \n \n src/app/shared/network-status/network-status.component.ts\n \n component\n NetworkStatusComponent\n \n 0 %\n (0/5)\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 @angular/service-worker : ~10.2.0\n \n @cicnet/cic-client : ^0.1.6\n \n @cicnet/schemas-data-validator : *\n \n @popperjs/core : ^2.5.4\n \n bootstrap : ^4.5.3\n \n cic-client-meta : 0.0.7-alpha.6\n \n ethers : ^5.0.31\n \n http-server : ^0.12.3\n \n jquery : ^3.5.1\n \n ngx-logger : ^4.2.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 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 rejectBody   (src/.../global-error-handler.ts)\n \n \n updateSyncable   (src/.../sync.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 src/app/_helpers/global-error-handler.ts\n \n \n \n \n \n \n \n \n rejectBody\n \n \n \n \n \n \n \nrejectBody(error)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n error\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : literal type\n\n \n \n \n \n \n \n \n \n src/app/_helpers/sync.ts\n \n \n \n \n \n \n \n \n updateSyncable\n \n \n \n \n \n \n \nupdateSyncable(changes, changesDescription, syncable)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n\n \n No\n \n\n\n \n \n changesDescription\n\n \n No\n \n\n\n \n \n syncable\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 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 ng serve for a local server, npm run start:dev for a dev server and npm run start:prod for a prod server..\nNavigate 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\nRun ng build to build the project using local configurations.\nThe build artifacts will be stored in the dist/ directory.\nUse the npm run build:dev script for a development build and the npm run build:prod script for a production build.\nPWA\nThe app supports Progressive Web App capabilities.\nRun npm run start:pwa to run the project in PWA mode.\nPWA mode works using production configurations.\nRunning unit tests\nRun ng test 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\nDefault environment variables are located in the src/environments/ directory.\nCustom environment variables are contained in the .env file. See .env.example for a template.\nCustom environment variables are set via the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.dev.ts and production on environment.prod.ts.\nCode formatting\nThe system has automated code formatting using Prettier and TsLint.\nTo view the styling rules set, check out .prettierrc and tslint.json.\nRun npm run format:lint To perform formatting and linting of the codebase.\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\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nSharedModule->AuthModule\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\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \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\nUnixDatePipe \n\nUnixDatePipe \n\nUnixDatePipe -->\n\nSharedModule->UnixDatePipe \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\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\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->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\nUnixDatePipe\n\nUnixDatePipe\n\nSharedModule -->\n\nUnixDatePipe->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 22 Components\n \n \n \n \n \n \n \n 4 Directives\n \n \n \n \n \n \n \n 12 Injectables\n \n \n \n \n \n \n \n 3 Pipes\n \n \n \n \n \n \n \n 12 Classes\n \n \n \n \n \n \n \n 2 Guards\n \n \n \n \n \n \n \n 16 Interfaces\n \n \n \n \n \n \n \n \n 0 \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/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 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/AccountsIndex.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 : Web3Service.getInstance()\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 : Web3Service.getInstance()\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 : object\n\n \n \n \n \n Default value : {\n 'Mukuru Nairobi': [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n 'Kinango Kwale': [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n 'Misc Nairobi': [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n 'Kisauni Mombasa': [\n 'bamburi',\n 'mnyuchi',\n 'kisauni',\n 'kasauni',\n 'mworoni',\n 'nyali',\n 'falcon',\n 'shanzu',\n 'bombolulu',\n 'kandongo',\n 'kadongo',\n 'mshomoro',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'magongoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n 'mjinga',\n 'mlaleo',\n 'utange',\n ],\n 'Misc Mombasa': [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n Kilifi: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n Kakuma: ['kakuma'],\n Kitui: ['kitui', 'mwingi'],\n Nyanza: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n 'Misc Rural Counties': [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n other: ['other', 'none', 'unknown'],\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 : object\n\n \n \n \n \n Default value : {\n urban: ['urban', 'nairobi', 'mombasa', 'kisauni'],\n rural: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n periurban: ['kilifi', 'periurban'],\n other: ['other'],\n}\n \n \n\n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n system: ['system', 'office main', 'office main phone'],\n education: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n faith: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n government: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n ],\n environment: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n farming: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n labour: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n food: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n water: ['maji', 'water'],\n health: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n savings: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n shop: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n transport: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n 'fuel/energy': [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n other: ['other', 'none', 'unknown', 'none'],\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 transactionTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamations',\n]\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 {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '+254700000000',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n}\n \n \n\n \n \n Default account data object \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.DEBUG,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: '',\n cicMetaUrl: 'https://meta-auth.dev.grassrootseconomics.net:443',\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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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-auth.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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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-auth.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://user.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n dashboardUrl: 'https://dashboard.sarafu.network/',\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 An openpgp Keyring instance. \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/_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/variables.html b/docs/compodoc/miscellaneous/variables.html index 1b94872..177f195 100644 --- a/docs/compodoc/miscellaneous/variables.html +++ b/docs/compodoc/miscellaneous/variables.html @@ -1517,10 +1517,10 @@ Default value : { production: false, bloxbergChainId: 8996, - logLevel: NgxLoggerLevel.ERROR, + logLevel: NgxLoggerLevel.DEBUG, serverLogLevel: NgxLoggerLevel.OFF, loggingUrl: '', - cicMetaUrl: 'https://meta-auth.dev.grassrootseconomics.net', + cicMetaUrl: 'https://meta-auth.dev.grassrootseconomics.net:443', publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/', cicCacheUrl: 'https://cache.dev.grassrootseconomics.net', web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net', diff --git a/docs/typedoc/assets/js/search.js b/docs/typedoc/assets/js/search.js index 2694643..3988efd 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","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":64,"name":"rejectBody","url":"modules/app__helpers_global_error_handler.html#rejectbody","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"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":47,"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":48,"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":49,"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":50,"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":51,"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":52,"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":53,"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":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":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":56,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":57,"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":58,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":59,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":60,"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":61,"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":62,"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":63,"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":64,"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":65,"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":66,"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":67,"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":68,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":69,"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":70,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":71,"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":72,"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":73,"kind":1,"name":"app/_helpers/sync","url":"modules/app__helpers_sync.html","classes":"tsd-kind-module"},{"id":74,"kind":64,"name":"updateSyncable","url":"modules/app__helpers_sync.html#updatesyncable","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/sync"},{"id":75,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":76,"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":77,"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":78,"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":79,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":80,"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":81,"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":82,"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":83,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":84,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":85,"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":86,"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":87,"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":88,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":89,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":90,"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":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":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"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":94,"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":95,"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":96,"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":97,"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":98,"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":99,"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":100,"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":101,"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":102,"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":103,"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":104,"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":105,"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":106,"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":107,"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":108,"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":109,"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":110,"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":111,"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":112,"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":113,"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":114,"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":115,"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":116,"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":117,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":118,"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":119,"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":120,"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":121,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":122,"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":123,"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":124,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":125,"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":126,"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":127,"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":128,"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":129,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":130,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":131,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":132,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"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":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":136,"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":137,"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":138,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":139,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":140,"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":141,"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":142,"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":143,"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":144,"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":145,"kind":256,"name":"W3","url":"interfaces/app__models_settings.w3.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":1024,"name":"engine","url":"interfaces/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":147,"kind":1024,"name":"provider","url":"interfaces/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":148,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":149,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":150,"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":151,"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":152,"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":153,"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":154,"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":155,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":157,"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":158,"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":159,"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":160,"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":161,"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":162,"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":163,"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":164,"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":165,"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":166,"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":167,"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":168,"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":169,"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":170,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":171,"kind":256,"name":"Conversion","url":"interfaces/app__models_transaction.conversion.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":172,"kind":1024,"name":"destinationToken","url":"interfaces/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":173,"kind":1024,"name":"fromValue","url":"interfaces/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":174,"kind":1024,"name":"sourceToken","url":"interfaces/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":175,"kind":1024,"name":"toValue","url":"interfaces/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":176,"kind":1024,"name":"trader","url":"interfaces/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":177,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":178,"kind":1024,"name":"user","url":"interfaces/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":179,"kind":256,"name":"Transaction","url":"interfaces/app__models_transaction.transaction.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":180,"kind":1024,"name":"from","url":"interfaces/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":181,"kind":1024,"name":"recipient","url":"interfaces/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":182,"kind":1024,"name":"sender","url":"interfaces/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":183,"kind":1024,"name":"to","url":"interfaces/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":184,"kind":1024,"name":"token","url":"interfaces/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":185,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":186,"kind":1024,"name":"type","url":"interfaces/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":187,"kind":1024,"name":"value","url":"interfaces/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":188,"kind":256,"name":"Tx","url":"interfaces/app__models_transaction.tx.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":189,"kind":1024,"name":"block","url":"interfaces/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":190,"kind":1024,"name":"success","url":"interfaces/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":191,"kind":1024,"name":"timestamp","url":"interfaces/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"txHash","url":"interfaces/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"txIndex","url":"interfaces/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":194,"kind":256,"name":"TxToken","url":"interfaces/app__models_transaction.txtoken.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":195,"kind":1024,"name":"address","url":"interfaces/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":196,"kind":1024,"name":"name","url":"interfaces/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":197,"kind":1024,"name":"symbol","url":"interfaces/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":198,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":199,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":200,"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":201,"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":202,"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":203,"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":204,"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":205,"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":206,"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":207,"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":208,"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":209,"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":210,"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":211,"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":212,"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":213,"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":214,"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":215,"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":216,"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":217,"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":218,"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":219,"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":220,"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":221,"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":222,"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":223,"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":224,"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":225,"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":226,"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":227,"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":228,"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":229,"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":230,"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":231,"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":232,"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":233,"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":234,"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":235,"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":236,"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":237,"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":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":"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":240,"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":241,"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":242,"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":243,"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":244,"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":245,"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":246,"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":247,"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":248,"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":249,"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":250,"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":251,"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":252,"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":253,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":254,"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":255,"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":256,"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":257,"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":258,"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":259,"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":260,"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":261,"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":262,"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":263,"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":264,"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":265,"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":266,"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":267,"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":268,"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":269,"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":270,"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":271,"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":272,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":274,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":275,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":277,"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":278,"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":279,"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":280,"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":281,"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":282,"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":283,"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":284,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":285,"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":286,"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":287,"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":288,"kind":1024,"name":"trustedUsers","url":"classes/app__services_auth_service.authservice.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":289,"kind":1024,"name":"trustedUsersList","url":"classes/app__services_auth_service.authservice.html#trusteduserslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/auth.service.AuthService"},{"id":290,"kind":1024,"name":"trustedUsersSubject","url":"classes/app__services_auth_service.authservice.html#trusteduserssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":291,"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":292,"kind":2048,"name":"getSessionToken","url":"classes/app__services_auth_service.authservice.html#getsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":293,"kind":2048,"name":"setSessionToken","url":"classes/app__services_auth_service.authservice.html#setsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":294,"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":295,"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":296,"kind":2048,"name":"sendSignedChallenge","url":"classes/app__services_auth_service.authservice.html#sendsignedchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":297,"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":298,"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":299,"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":300,"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":301,"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":302,"kind":2048,"name":"addTrustedUser","url":"classes/app__services_auth_service.authservice.html#addtrusteduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":303,"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":304,"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":305,"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":306,"kind":2048,"name":"getPrivateKeyInfo","url":"classes/app__services_auth_service.authservice.html#getprivatekeyinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":308,"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":309,"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":310,"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":311,"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":312,"kind":2048,"name":"init","url":"classes/app__services_block_sync_service.blocksyncservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":313,"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":314,"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":315,"kind":2048,"name":"newEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":316,"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":317,"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":318,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":319,"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":320,"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":321,"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":322,"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":323,"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":324,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":325,"kind":1,"name":"app/_services/keystore.service","url":"modules/app__services_keystore_service.html","classes":"tsd-kind-module"},{"id":326,"kind":128,"name":"KeystoreService","url":"classes/app__services_keystore_service.keystoreservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/keystore.service"},{"id":327,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_keystore_service.keystoreservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":328,"kind":2048,"name":"getKeystore","url":"classes/app__services_keystore_service.keystoreservice.html#getkeystore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":329,"kind":512,"name":"constructor","url":"classes/app__services_keystore_service.keystoreservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/keystore.service.KeystoreService"},{"id":330,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":331,"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":332,"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":333,"kind":1024,"name":"areaNames","url":"classes/app__services_location_service.locationservice.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":334,"kind":1024,"name":"areaNamesList","url":"classes/app__services_location_service.locationservice.html#areanameslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":335,"kind":1024,"name":"areaNamesSubject","url":"classes/app__services_location_service.locationservice.html#areanamessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":336,"kind":1024,"name":"areaTypes","url":"classes/app__services_location_service.locationservice.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":337,"kind":1024,"name":"areaTypesList","url":"classes/app__services_location_service.locationservice.html#areatypeslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":338,"kind":1024,"name":"areaTypesSubject","url":"classes/app__services_location_service.locationservice.html#areatypessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":339,"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":340,"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":341,"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":342,"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":343,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":344,"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":345,"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":346,"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":347,"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":348,"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":349,"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":350,"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":351,"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":352,"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":353,"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":354,"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":355,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":356,"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":357,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":358,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":359,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":360,"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":361,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":362,"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":363,"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":364,"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":365,"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":366,"kind":1024,"name":"tokens","url":"classes/app__services_token_service.tokenservice.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":367,"kind":1024,"name":"tokensList","url":"classes/app__services_token_service.tokenservice.html#tokenslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/token.service.TokenService"},{"id":368,"kind":1024,"name":"tokensSubject","url":"classes/app__services_token_service.tokenservice.html#tokenssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":369,"kind":1024,"name":"load","url":"classes/app__services_token_service.tokenservice.html#load","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":2048,"name":"init","url":"classes/app__services_token_service.tokenservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":2048,"name":"addToken","url":"classes/app__services_token_service.tokenservice.html#addtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"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":373,"kind":2048,"name":"getTokenByAddress","url":"classes/app__services_token_service.tokenservice.html#gettokenbyaddress","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":2048,"name":"getTokenName","url":"classes/app__services_token_service.tokenservice.html#gettokenname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":377,"kind":2048,"name":"getTokenSymbol","url":"classes/app__services_token_service.tokenservice.html#gettokensymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":378,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":379,"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":380,"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":381,"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":382,"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":383,"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":384,"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":385,"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":386,"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":387,"kind":2048,"name":"init","url":"classes/app__services_transaction_service.transactionservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"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":389,"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":390,"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":391,"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":392,"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":393,"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":394,"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":395,"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":396,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":397,"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":398,"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":399,"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":400,"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":401,"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":402,"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":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"kind":1024,"name":"categories","url":"classes/app__services_user_service.userservice.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":1024,"name":"categoriesList","url":"classes/app__services_user_service.userservice.html#categorieslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":411,"kind":1024,"name":"categoriesSubject","url":"classes/app__services_user_service.userservice.html#categoriessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"init","url":"classes/app__services_user_service.userservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"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":414,"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":415,"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":416,"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":417,"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":418,"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":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"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":428,"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":429,"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":430,"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":431,"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":432,"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":433,"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":434,"kind":2048,"name":"addAccount","url":"classes/app__services_user_service.userservice.html#addaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":435,"kind":1,"name":"app/_services/web3.service","url":"modules/app__services_web3_service.html","classes":"tsd-kind-module"},{"id":436,"kind":128,"name":"Web3Service","url":"classes/app__services_web3_service.web3service.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/web3.service"},{"id":437,"kind":1024,"name":"web3","url":"classes/app__services_web3_service.web3service.html#web3","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":438,"kind":2048,"name":"getInstance","url":"classes/app__services_web3_service.web3service.html#getinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":439,"kind":512,"name":"constructor","url":"classes/app__services_web3_service.web3service.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/web3.service.Web3Service"},{"id":440,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":441,"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":442,"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":443,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":444,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":445,"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":446,"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":447,"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":448,"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":449,"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":450,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":451,"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":452,"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":453,"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":454,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":455,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":456,"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":457,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":458,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":459,"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":460,"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":461,"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":462,"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":463,"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":464,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":465,"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":466,"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":467,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":468,"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":469,"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":470,"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":471,"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":472,"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":473,"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":474,"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":475,"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":476,"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":477,"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":478,"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":479,"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":480,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":481,"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":482,"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":483,"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":484,"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":485,"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":486,"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":487,"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":488,"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":489,"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":490,"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":491,"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":492,"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":493,"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":494,"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":495,"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":496,"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":497,"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":498,"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":499,"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":500,"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":501,"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":502,"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":503,"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":504,"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":505,"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":506,"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":507,"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":508,"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":509,"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":510,"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":511,"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":512,"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":513,"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":514,"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":515,"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":516,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":517,"kind":1024,"name":"category","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":518,"kind":1024,"name":"area","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":519,"kind":1024,"name":"areaType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":520,"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":521,"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":522,"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":523,"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":524,"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":525,"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":526,"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":527,"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":528,"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":529,"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":530,"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":531,"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":532,"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":533,"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":534,"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":535,"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":536,"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":537,"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":538,"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":539,"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":540,"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":541,"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":542,"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":543,"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":544,"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":545,"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":546,"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":547,"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":548,"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":549,"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":550,"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":551,"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":552,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":553,"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":554,"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":555,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":556,"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":557,"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":558,"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":559,"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":560,"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":561,"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":562,"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":563,"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":564,"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":565,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":566,"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":567,"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":568,"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":569,"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":570,"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":571,"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":572,"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":573,"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":574,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":575,"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":576,"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":577,"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":578,"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":579,"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":580,"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":581,"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":582,"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":583,"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":584,"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":585,"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":586,"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":587,"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":588,"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":589,"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":590,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":591,"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":592,"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":593,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":594,"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":595,"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":596,"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":597,"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":598,"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":599,"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":600,"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":601,"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":602,"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":603,"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":604,"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":605,"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":606,"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":607,"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":608,"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":609,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":610,"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":611,"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":612,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":613,"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":614,"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":615,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":616,"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":617,"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":618,"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":619,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":620,"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":621,"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":622,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":623,"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":624,"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":625,"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":626,"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":627,"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":628,"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":629,"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":630,"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":631,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":632,"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":633,"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":634,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":635,"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":636,"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":637,"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":638,"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":639,"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":640,"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":641,"kind":1024,"name":"userInfo","url":"classes/app_pages_settings_settings_component.settingscomponent.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":642,"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":643,"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":644,"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":645,"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":646,"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":647,"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":648,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":649,"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":650,"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":651,"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":652,"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":653,"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":654,"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":655,"kind":1024,"name":"closeWindow","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":656,"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":657,"kind":2048,"name":"close","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":658,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":659,"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":660,"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":661,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":662,"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":663,"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":664,"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":665,"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":666,"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":667,"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":668,"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":669,"kind":1024,"name":"token","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":670,"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":671,"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":672,"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":673,"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":674,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":675,"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":676,"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":677,"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":678,"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":679,"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":680,"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":681,"kind":1024,"name":"closeWindow","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":682,"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":683,"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":684,"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":685,"kind":1024,"name":"tokenName","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokenname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":686,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":687,"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":688,"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":689,"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":690,"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":691,"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":692,"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":693,"kind":2048,"name":"close","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":694,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":695,"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":696,"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":697,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":698,"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":699,"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":700,"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":701,"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":702,"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":703,"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":704,"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":705,"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":706,"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":707,"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":708,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":709,"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":710,"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":711,"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":712,"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":713,"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":714,"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":715,"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":716,"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":717,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":718,"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":719,"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":720,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":721,"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":722,"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":723,"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":724,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":725,"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":726,"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":727,"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":728,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":729,"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":730,"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":731,"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":732,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":733,"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":734,"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":735,"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":736,"kind":1,"name":"app/shared/_pipes/unix-date.pipe","url":"modules/app_shared__pipes_unix_date_pipe.html","classes":"tsd-kind-module"},{"id":737,"kind":128,"name":"UnixDatePipe","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/unix-date.pipe"},{"id":738,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":739,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":740,"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":741,"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":742,"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":743,"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":744,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":745,"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":746,"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":747,"kind":1024,"name":"currentYear","url":"classes/app_shared_footer_footer_component.footercomponent.html#currentyear","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":748,"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":749,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":750,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":751,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":752,"kind":1024,"name":"noInternetConnection","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#nointernetconnection","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":753,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":754,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":755,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":756,"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":757,"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":758,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":759,"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":760,"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":761,"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":762,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":763,"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":764,"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":765,"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":766,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":767,"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":768,"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":769,"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":770,"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":771,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":772,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":773,"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":774,"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":775,"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":776,"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":777,"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":778,"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":779,"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":780,"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":781,"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":782,"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":783,"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":784,"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":785,"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":786,"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":787,"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":788,"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":789,"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":790,"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":791,"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":792,"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":793,"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":794,"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":795,"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":796,"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":797,"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":798,"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":799,"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":800,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":801,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":802,"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":803,"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":804,"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":805,"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":806,"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":807,"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":808,"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":809,"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":810,"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":811,"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":812,"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":813,"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":814,"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":815,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_dev.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":816,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":817,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":818,"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":819,"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":820,"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":821,"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":822,"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":823,"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":824,"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":825,"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":826,"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":827,"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":828,"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":829,"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":830,"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":831,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_prod.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":832,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":833,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":834,"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":835,"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":836,"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":837,"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":838,"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":839,"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":840,"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":841,"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":842,"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":843,"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":844,"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":845,"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":846,"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":847,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":848,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":849,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":850,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":851,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":852,"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":853,"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":854,"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":855,"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":856,"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":857,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":858,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":859,"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":860,"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":861,"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":862,"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":863,"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":864,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":865,"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":866,"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":867,"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":868,"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":869,"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":870,"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":871,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":872,"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":873,"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":874,"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":875,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":876,"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":877,"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":878,"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":879,"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":880,"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":881,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":882,"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":883,"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":884,"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":885,"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":886,"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":887,"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":888,"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":889,"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":890,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":891,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":892,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":893,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":894,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":895,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":896,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":897,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":898,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":899,"kind":16777216,"name":"rejectBody","url":"modules/app__helpers.html#rejectbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":900,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":901,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":902,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":903,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":904,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":905,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":906,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":907,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":908,"kind":16777216,"name":"updateSyncable","url":"modules/app__helpers.html#updatesyncable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":909,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":910,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":911,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":912,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":913,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":914,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":915,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":916,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":917,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":918,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":919,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":920,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":921,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":922,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":923,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":924,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":925,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":926,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":927,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":928,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":929,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":930,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":931,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":932,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":933,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":934,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":935,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":936,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":937,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":938,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":939,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":940,"kind":16777216,"name":"Web3Service","url":"modules/app__services.html#web3service","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":941,"kind":16777216,"name":"KeystoreService","url":"modules/app__services.html#keystoreservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":942,"kind":16777216,"name":"RegistryService","url":"modules/app__services.html#registryservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":943,"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":944,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":945,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":946,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":947,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":948,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":949,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":950,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":951,"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.887]],["parent/0",[]],["name/1",[1,60.887]],["parent/1",[0,6.802]],["name/2",[2,25.707]],["parent/2",[3,5.402]],["name/3",[4,60.887]],["parent/3",[3,5.402]],["name/4",[5,60.887]],["parent/4",[3,5.402]],["name/5",[6,60.887]],["parent/5",[3,5.402]],["name/6",[7,66.12]],["parent/6",[3,5.402]],["name/7",[8,66.12]],["parent/7",[3,5.402]],["name/8",[9,66.12]],["parent/8",[3,5.402]],["name/9",[10,66.12]],["parent/9",[3,5.402]],["name/10",[11,57.44]],["parent/10",[]],["name/11",[12,33.851,13,35.588]],["parent/11",[]],["name/12",[14,57.44]],["parent/12",[12,3.984,13,4.189]],["name/13",[2,25.707]],["parent/13",[12,3.984,15,4.189]],["name/14",[4,60.887]],["parent/14",[12,3.984,15,4.189]],["name/15",[5,60.887]],["parent/15",[12,3.984,15,4.189]],["name/16",[6,60.887]],["parent/16",[12,3.984,15,4.189]],["name/17",[16,66.12]],["parent/17",[12,3.984,15,4.189]],["name/18",[17,66.12]],["parent/18",[12,3.984,15,4.189]],["name/19",[18,66.12]],["parent/19",[12,3.984,15,4.189]],["name/20",[19,60.887]],["parent/20",[]],["name/21",[20,60.887]],["parent/21",[19,6.802]],["name/22",[2,25.707]],["parent/22",[21,6.802]],["name/23",[22,60.887]],["parent/23",[21,6.802]],["name/24",[23,57.44]],["parent/24",[]],["name/25",[24,60.887]],["parent/25",[]],["name/26",[25,60.887]],["parent/26",[24,6.802]],["name/27",[2,25.707]],["parent/27",[26,6.802]],["name/28",[22,60.887]],["parent/28",[26,6.802]],["name/29",[27,43.658,28,43.658]],["parent/29",[]],["name/30",[29,60.887]],["parent/30",[27,5.139,28,5.139]],["name/31",[30,43.658,31,43.658]],["parent/31",[]],["name/32",[32,60.887]],["parent/32",[30,5.139,31,5.139]],["name/33",[33,25.122,34,19.028,35,25.122,36,22.726]],["parent/33",[]],["name/34",[37,60.887]],["parent/34",[33,3.11,34,2.355,35,3.11,36,2.813]],["name/35",[2,25.707]],["parent/35",[33,3.11,34,2.355,35,3.11,38,3.451]],["name/36",[39,66.12]],["parent/36",[33,3.11,34,2.355,35,3.11,38,3.451]],["name/37",[40,60.887]],["parent/37",[]],["name/38",[41,60.887]],["parent/38",[40,6.802]],["name/39",[42,66.12]],["parent/39",[43,6.417]],["name/40",[44,66.12]],["parent/40",[43,6.417]],["name/41",[2,25.707]],["parent/41",[43,6.417]],["name/42",[45,43.658,46,39.34]],["parent/42",[]],["name/43",[47,60.887]],["parent/43",[45,5.139,46,4.631]],["name/44",[34,23.224,48,24.814,49,30.663]],["parent/44",[]],["name/45",[50,60.887]],["parent/45",[34,2.818,48,3.011,49,3.721]],["name/46",[51,60.887]],["parent/46",[34,2.818,48,3.011,49,3.721]],["name/47",[52,43.61]],["parent/47",[34,2.818,48,3.011,53,3.895]],["name/48",[2,25.707]],["parent/48",[34,2.818,48,3.011,53,3.895]],["name/49",[54,66.12]],["parent/49",[34,2.818,48,3.011,53,3.895]],["name/50",[55,60.887]],["parent/50",[34,2.818,48,3.011,49,3.721]],["name/51",[2,25.707]],["parent/51",[34,2.818,48,3.011,56,3.581]],["name/52",[57,66.12]],["parent/52",[34,2.818,48,3.011,56,3.581]],["name/53",[58,66.12]],["parent/53",[34,2.818,48,3.011,56,3.581]],["name/54",[59,66.12]],["parent/54",[34,2.818,48,3.011,56,3.581]],["name/55",[60,66.12]],["parent/55",[34,2.818,48,3.011,56,3.581]],["name/56",[61,43.658,62,43.658]],["parent/56",[]],["name/57",[63,60.887]],["parent/57",[61,5.139,62,5.139]],["name/58",[64,41.555]],["parent/58",[]],["name/59",[65,33.851,66,41.186]],["parent/59",[]],["name/60",[67,60.887]],["parent/60",[65,3.984,66,4.848]],["name/61",[2,25.707]],["parent/61",[65,3.984,68,5.139]],["name/62",[69,54.865]],["parent/62",[65,3.984,68,5.139]],["name/63",[70,60.887]],["parent/63",[65,3.984,66,4.848]],["name/64",[52,43.61]],["parent/64",[65,3.984,71,5.58]],["name/65",[72,66.12]],["parent/65",[65,3.984,73,4.848]],["name/66",[74,66.12]],["parent/66",[65,3.984,73,4.848]],["name/67",[75,66.12]],["parent/67",[65,3.984,73,4.848]],["name/68",[46,39.34,76,43.658]],["parent/68",[]],["name/69",[77,60.887]],["parent/69",[46,4.631,76,5.139]],["name/70",[78,41.186,79,41.186]],["parent/70",[]],["name/71",[80,60.887]],["parent/71",[78,4.848,79,4.848]],["name/72",[81,60.887]],["parent/72",[78,4.848,79,4.848]],["name/73",[82,60.887]],["parent/73",[]],["name/74",[83,60.887]],["parent/74",[82,6.802]],["name/75",[84,60.887]],["parent/75",[]],["name/76",[85,60.887]],["parent/76",[84,6.802]],["name/77",[2,25.707]],["parent/77",[86,6.802]],["name/78",[69,54.865]],["parent/78",[86,6.802]],["name/79",[87,39.34,88,43.658]],["parent/79",[]],["name/80",[89,60.887]],["parent/80",[87,4.631,88,5.139]],["name/81",[2,25.707]],["parent/81",[87,4.631,90,5.139]],["name/82",[69,54.865]],["parent/82",[87,4.631,90,5.139]],["name/83",[91,54.865]],["parent/83",[]],["name/84",[92,60.887]],["parent/84",[]],["name/85",[93,60.887]],["parent/85",[92,6.802]],["name/86",[2,25.707]],["parent/86",[94,6.802]],["name/87",[69,54.865]],["parent/87",[94,6.802]],["name/88",[95,51.098]],["parent/88",[]],["name/89",[96,60.887]],["parent/89",[95,5.709]],["name/90",[97,66.12]],["parent/90",[98,4.872]],["name/91",[99,60.887]],["parent/91",[98,4.872]],["name/92",[100,60.887]],["parent/92",[98,4.872]],["name/93",[101,66.12]],["parent/93",[98,4.872]],["name/94",[102,66.12]],["parent/94",[98,4.872]],["name/95",[103,66.12]],["parent/95",[98,4.872]],["name/96",[52,43.61]],["parent/96",[98,4.872]],["name/97",[104,66.12]],["parent/97",[105,4.96]],["name/98",[52,43.61]],["parent/98",[105,4.96]],["name/99",[106,66.12]],["parent/99",[107,6.802]],["name/100",[108,66.12]],["parent/100",[107,6.802]],["name/101",[109,66.12]],["parent/101",[105,4.96]],["name/102",[110,66.12]],["parent/102",[105,4.96]],["name/103",[111,66.12]],["parent/103",[98,4.872]],["name/104",[52,43.61]],["parent/104",[98,4.872]],["name/105",[112,60.887]],["parent/105",[105,4.96]],["name/106",[113,66.12]],["parent/106",[105,4.96]],["name/107",[114,66.12]],["parent/107",[105,4.96]],["name/108",[115,66.12]],["parent/108",[98,4.872]],["name/109",[116,60.887]],["parent/109",[98,4.872]],["name/110",[117,66.12]],["parent/110",[98,4.872]],["name/111",[52,43.61]],["parent/111",[98,4.872]],["name/112",[118,60.887]],["parent/112",[105,4.96]],["name/113",[119,66.12]],["parent/113",[105,4.96]],["name/114",[120,66.12]],["parent/114",[105,4.96]],["name/115",[121,66.12]],["parent/115",[105,4.96]],["name/116",[122,66.12]],["parent/116",[105,4.96]],["name/117",[123,60.887]],["parent/117",[95,5.709]],["name/118",[124,52.809]],["parent/118",[125,6.417]],["name/119",[126,54.865]],["parent/119",[125,6.417]],["name/120",[127,51.098]],["parent/120",[125,6.417]],["name/121",[128,60.887]],["parent/121",[95,5.709]],["name/122",[126,54.865]],["parent/122",[129,6.802]],["name/123",[130,66.12]],["parent/123",[129,6.802]],["name/124",[127,51.098]],["parent/124",[95,5.709]],["name/125",[131,57.44]],["parent/125",[132,6.129]],["name/126",[124,52.809]],["parent/126",[132,6.129]],["name/127",[133,57.44]],["parent/127",[132,6.129]],["name/128",[134,54.865]],["parent/128",[132,6.129]],["name/129",[135,60.887]],["parent/129",[95,5.709]],["name/130",[136,42.195]],["parent/130",[]],["name/131",[137,60.887]],["parent/131",[]],["name/132",[138,54.865]],["parent/132",[137,6.802]],["name/133",[138,54.865]],["parent/133",[139,5.9]],["name/134",[140,66.12]],["parent/134",[139,5.9]],["name/135",[126,54.865]],["parent/135",[139,5.9]],["name/136",[141,66.12]],["parent/136",[139,5.9]],["name/137",[142,60.887]],["parent/137",[139,5.9]],["name/138",[143,57.44]],["parent/138",[]],["name/139",[144,60.887]],["parent/139",[143,6.417]],["name/140",[2,25.707]],["parent/140",[145,5.9]],["name/141",[13,49.632]],["parent/141",[145,5.9]],["name/142",[146,66.12]],["parent/142",[145,5.9]],["name/143",[147,66.12]],["parent/143",[145,5.9]],["name/144",[148,57.44]],["parent/144",[145,5.9]],["name/145",[148,57.44]],["parent/145",[143,6.417]],["name/146",[134,54.865]],["parent/146",[149,6.802]],["name/147",[150,66.12]],["parent/147",[149,6.802]],["name/148",[151,60.887]],["parent/148",[]],["name/149",[152,60.887]],["parent/149",[151,6.802]],["name/150",[153,66.12]],["parent/150",[154,5.9]],["name/151",[118,60.887]],["parent/151",[154,5.9]],["name/152",[155,57.44]],["parent/152",[154,5.9]],["name/153",[156,66.12]],["parent/153",[154,5.9]],["name/154",[157,66.12]],["parent/154",[154,5.9]],["name/155",[158,60.887]],["parent/155",[]],["name/156",[159,52.809]],["parent/156",[158,6.802]],["name/157",[160,60.887]],["parent/157",[161,5.274]],["name/158",[162,66.12]],["parent/158",[161,5.274]],["name/159",[155,57.44]],["parent/159",[161,5.274]],["name/160",[163,66.12]],["parent/160",[161,5.274]],["name/161",[164,66.12]],["parent/161",[161,5.274]],["name/162",[165,66.12]],["parent/162",[161,5.274]],["name/163",[52,43.61]],["parent/163",[161,5.274]],["name/164",[166,66.12]],["parent/164",[167,6.802]],["name/165",[52,43.61]],["parent/165",[167,6.802]],["name/166",[168,66.12]],["parent/166",[169,6.802]],["name/167",[99,60.887]],["parent/167",[169,6.802]],["name/168",[170,66.12]],["parent/168",[161,5.274]],["name/169",[171,60.887]],["parent/169",[161,5.274]],["name/170",[172,52.809]],["parent/170",[]],["name/171",[173,60.887]],["parent/171",[172,5.9]],["name/172",[174,66.12]],["parent/172",[175,5.545]],["name/173",[176,66.12]],["parent/173",[175,5.545]],["name/174",[177,66.12]],["parent/174",[175,5.545]],["name/175",[178,60.887]],["parent/175",[175,5.545]],["name/176",[179,66.12]],["parent/176",[175,5.545]],["name/177",[180,51.098]],["parent/177",[175,5.545]],["name/178",[142,60.887]],["parent/178",[175,5.545]],["name/179",[181,52.809]],["parent/179",[172,5.9]],["name/180",[182,66.12]],["parent/180",[183,5.402]],["name/181",[184,66.12]],["parent/181",[183,5.402]],["name/182",[185,66.12]],["parent/182",[183,5.402]],["name/183",[186,60.887]],["parent/183",[183,5.402]],["name/184",[159,52.809]],["parent/184",[183,5.402]],["name/185",[180,51.098]],["parent/185",[183,5.402]],["name/186",[116,60.887]],["parent/186",[183,5.402]],["name/187",[187,60.887]],["parent/187",[183,5.402]],["name/188",[180,51.098]],["parent/188",[172,5.9]],["name/189",[188,66.12]],["parent/189",[189,5.9]],["name/190",[190,66.12]],["parent/190",[189,5.9]],["name/191",[191,66.12]],["parent/191",[189,5.9]],["name/192",[192,66.12]],["parent/192",[189,5.9]],["name/193",[193,66.12]],["parent/193",[189,5.9]],["name/194",[194,60.887]],["parent/194",[172,5.9]],["name/195",[160,60.887]],["parent/195",[195,6.417]],["name/196",[155,57.44]],["parent/196",[195,6.417]],["name/197",[171,60.887]],["parent/197",[195,6.417]],["name/198",[196,49.632]],["parent/198",[]],["name/199",[197,13.805,198,16.383,199,32.102]],["parent/199",[]],["name/200",[200,54.865]],["parent/200",[197,1.675,198,1.988,199,3.895]],["name/201",[201,60.887]],["parent/201",[197,1.675,198,1.988,202,2.516]],["name/202",[203,60.887]],["parent/202",[197,1.675,198,1.988,202,2.516]],["name/203",[204,60.887]],["parent/203",[197,1.675,198,1.988,202,2.516]],["name/204",[205,60.887]],["parent/204",[197,1.675,198,1.988,202,2.516]],["name/205",[206,60.887]],["parent/205",[197,1.675,198,1.988,202,2.516]],["name/206",[207,57.44]],["parent/206",[197,1.675,198,1.988,202,2.516]],["name/207",[208,60.887]],["parent/207",[197,1.675,198,1.988,202,2.516]],["name/208",[209,60.887]],["parent/208",[197,1.675,198,1.988,202,2.516]],["name/209",[210,60.887]],["parent/209",[197,1.675,198,1.988,202,2.516]],["name/210",[211,60.887]],["parent/210",[197,1.675,198,1.988,202,2.516]],["name/211",[212,60.887]],["parent/211",[197,1.675,198,1.988,202,2.516]],["name/212",[213,57.44]],["parent/212",[197,1.675,198,1.988,202,2.516]],["name/213",[214,60.887]],["parent/213",[197,1.675,198,1.988,202,2.516]],["name/214",[215,60.887]],["parent/214",[197,1.675,198,1.988,202,2.516]],["name/215",[216,60.887]],["parent/215",[197,1.675,198,1.988,202,2.516]],["name/216",[217,60.887]],["parent/216",[197,1.675,198,1.988,202,2.516]],["name/217",[218,60.887]],["parent/217",[197,1.675,198,1.988,202,2.516]],["name/218",[219,60.887]],["parent/218",[197,1.675,198,1.988,202,2.516]],["name/219",[220,60.887]],["parent/219",[197,1.675,198,1.988,202,2.516]],["name/220",[221,60.887]],["parent/220",[197,1.675,198,1.988,202,2.516]],["name/221",[222,60.887]],["parent/221",[197,1.675,198,1.988,202,2.516]],["name/222",[223,60.887]],["parent/222",[197,1.675,198,1.988,202,2.516]],["name/223",[224,60.887]],["parent/223",[197,1.675,198,1.988,202,2.516]],["name/224",[225,60.887]],["parent/224",[197,1.675,198,1.988,202,2.516]],["name/225",[226,54.865]],["parent/225",[197,1.675,198,1.988,202,2.516]],["name/226",[227,60.887]],["parent/226",[197,1.675,198,1.988,199,3.895]],["name/227",[2,25.707]],["parent/227",[197,1.675,198,1.988,228,2.489]],["name/228",[201,60.887]],["parent/228",[197,1.675,198,1.988,228,2.489]],["name/229",[203,60.887]],["parent/229",[197,1.675,198,1.988,228,2.489]],["name/230",[204,60.887]],["parent/230",[197,1.675,198,1.988,228,2.489]],["name/231",[205,60.887]],["parent/231",[197,1.675,198,1.988,228,2.489]],["name/232",[206,60.887]],["parent/232",[197,1.675,198,1.988,228,2.489]],["name/233",[207,57.44]],["parent/233",[197,1.675,198,1.988,228,2.489]],["name/234",[208,60.887]],["parent/234",[197,1.675,198,1.988,228,2.489]],["name/235",[209,60.887]],["parent/235",[197,1.675,198,1.988,228,2.489]],["name/236",[210,60.887]],["parent/236",[197,1.675,198,1.988,228,2.489]],["name/237",[211,60.887]],["parent/237",[197,1.675,198,1.988,228,2.489]],["name/238",[212,60.887]],["parent/238",[197,1.675,198,1.988,228,2.489]],["name/239",[213,57.44]],["parent/239",[197,1.675,198,1.988,228,2.489]],["name/240",[214,60.887]],["parent/240",[197,1.675,198,1.988,228,2.489]],["name/241",[215,60.887]],["parent/241",[197,1.675,198,1.988,228,2.489]],["name/242",[216,60.887]],["parent/242",[197,1.675,198,1.988,228,2.489]],["name/243",[217,60.887]],["parent/243",[197,1.675,198,1.988,228,2.489]],["name/244",[218,60.887]],["parent/244",[197,1.675,198,1.988,228,2.489]],["name/245",[219,60.887]],["parent/245",[197,1.675,198,1.988,228,2.489]],["name/246",[220,60.887]],["parent/246",[197,1.675,198,1.988,228,2.489]],["name/247",[221,60.887]],["parent/247",[197,1.675,198,1.988,228,2.489]],["name/248",[222,60.887]],["parent/248",[197,1.675,198,1.988,228,2.489]],["name/249",[223,60.887]],["parent/249",[197,1.675,198,1.988,228,2.489]],["name/250",[224,60.887]],["parent/250",[197,1.675,198,1.988,228,2.489]],["name/251",[225,60.887]],["parent/251",[197,1.675,198,1.988,228,2.489]],["name/252",[226,54.865]],["parent/252",[197,1.675,198,1.988,228,2.489]],["name/253",[197,17.711,229,34.668]],["parent/253",[]],["name/254",[230,60.887]],["parent/254",[197,2.085,229,4.081]],["name/255",[2,25.707]],["parent/255",[197,2.085,231,3.561]],["name/256",[131,57.44]],["parent/256",[197,2.085,231,3.561]],["name/257",[232,66.12]],["parent/257",[197,2.085,231,3.561]],["name/258",[134,54.865]],["parent/258",[197,2.085,231,3.561]],["name/259",[233,60.887]],["parent/259",[197,2.085,231,3.561]],["name/260",[234,57.44]],["parent/260",[197,2.085,231,3.561]],["name/261",[235,60.887]],["parent/261",[197,2.085,231,3.561]],["name/262",[52,43.61]],["parent/262",[197,2.085,231,3.561]],["name/263",[236,60.887]],["parent/263",[197,2.085,231,3.561]],["name/264",[52,43.61]],["parent/264",[197,2.085,231,3.561]],["name/265",[127,51.098]],["parent/265",[197,2.085,231,3.561]],["name/266",[237,60.887]],["parent/266",[197,2.085,231,3.561]],["name/267",[238,60.887]],["parent/267",[197,2.085,231,3.561]],["name/268",[226,54.865]],["parent/268",[197,2.085,231,3.561]],["name/269",[239,60.887]],["parent/269",[197,2.085,231,3.561]],["name/270",[240,60.887]],["parent/270",[197,2.085,229,4.081]],["name/271",[133,57.44]],["parent/271",[197,2.085,241,5.58]],["name/272",[127,51.098]],["parent/272",[197,2.085,229,4.081]],["name/273",[131,57.44]],["parent/273",[197,2.085,242,4.631]],["name/274",[124,52.809]],["parent/274",[197,2.085,242,4.631]],["name/275",[133,57.44]],["parent/275",[197,2.085,242,4.631]],["name/276",[134,54.865]],["parent/276",[197,2.085,242,4.631]],["name/277",[229,48.35]],["parent/277",[197,2.085,229,4.081]],["name/278",[237,60.887]],["parent/278",[197,2.085,243,4.313]],["name/279",[235,60.887]],["parent/279",[197,2.085,243,4.313]],["name/280",[236,60.887]],["parent/280",[197,2.085,243,4.313]],["name/281",[238,60.887]],["parent/281",[197,2.085,243,4.313]],["name/282",[226,54.865]],["parent/282",[197,2.085,243,4.313]],["name/283",[239,60.887]],["parent/283",[197,2.085,243,4.313]],["name/284",[244,60.887]],["parent/284",[]],["name/285",[245,60.887]],["parent/285",[244,6.802]],["name/286",[2,25.707]],["parent/286",[246,4.339]],["name/287",[200,54.865]],["parent/287",[246,4.339]],["name/288",[247,60.887]],["parent/288",[246,4.339]],["name/289",[248,66.12]],["parent/289",[246,4.339]],["name/290",[249,66.12]],["parent/290",[246,4.339]],["name/291",[250,52.809]],["parent/291",[246,4.339]],["name/292",[251,66.12]],["parent/292",[246,4.339]],["name/293",[252,66.12]],["parent/293",[246,4.339]],["name/294",[253,66.12]],["parent/294",[246,4.339]],["name/295",[254,66.12]],["parent/295",[246,4.339]],["name/296",[255,66.12]],["parent/296",[246,4.339]],["name/297",[256,66.12]],["parent/297",[246,4.339]],["name/298",[257,60.887]],["parent/298",[246,4.339]],["name/299",[258,66.12]],["parent/299",[246,4.339]],["name/300",[259,66.12]],["parent/300",[246,4.339]],["name/301",[260,60.887]],["parent/301",[246,4.339]],["name/302",[261,66.12]],["parent/302",[246,4.339]],["name/303",[262,66.12]],["parent/303",[246,4.339]],["name/304",[213,57.44]],["parent/304",[246,4.339]],["name/305",[207,57.44]],["parent/305",[246,4.339]],["name/306",[263,66.12]],["parent/306",[246,4.339]],["name/307",[264,32.448,265,43.658]],["parent/307",[]],["name/308",[266,60.887]],["parent/308",[264,3.819,265,5.139]],["name/309",[2,25.707]],["parent/309",[264,3.819,267,3.984]],["name/310",[268,60.887]],["parent/310",[264,3.819,267,3.984]],["name/311",[269,60.887]],["parent/311",[264,3.819,267,3.984]],["name/312",[250,52.809]],["parent/312",[264,3.819,267,3.984]],["name/313",[270,66.12]],["parent/313",[264,3.819,267,3.984]],["name/314",[271,66.12]],["parent/314",[264,3.819,267,3.984]],["name/315",[272,66.12]],["parent/315",[264,3.819,267,3.984]],["name/316",[273,66.12]],["parent/316",[264,3.819,267,3.984]],["name/317",[274,66.12]],["parent/317",[264,3.819,267,3.984]],["name/318",[275,36.639,276,43.658]],["parent/318",[]],["name/319",[277,60.887]],["parent/319",[275,4.313,276,5.139]],["name/320",[2,25.707]],["parent/320",[275,4.313,278,4.631]],["name/321",[279,66.12]],["parent/321",[275,4.313,278,4.631]],["name/322",[280,66.12]],["parent/322",[275,4.313,278,4.631]],["name/323",[281,66.12]],["parent/323",[275,4.313,278,4.631]],["name/324",[282,44.399]],["parent/324",[]],["name/325",[283,60.887]],["parent/325",[]],["name/326",[284,60.887]],["parent/326",[283,6.802]],["name/327",[200,54.865]],["parent/327",[285,6.417]],["name/328",[286,66.12]],["parent/328",[285,6.417]],["name/329",[2,25.707]],["parent/329",[285,6.417]],["name/330",[287,60.887]],["parent/330",[]],["name/331",[288,60.887]],["parent/331",[287,6.802]],["name/332",[2,25.707]],["parent/332",[289,5.056]],["name/333",[290,57.44]],["parent/333",[289,5.056]],["name/334",[291,66.12]],["parent/334",[289,5.056]],["name/335",[292,66.12]],["parent/335",[289,5.056]],["name/336",[293,60.887]],["parent/336",[289,5.056]],["name/337",[294,66.12]],["parent/337",[289,5.056]],["name/338",[295,66.12]],["parent/338",[289,5.056]],["name/339",[296,66.12]],["parent/339",[289,5.056]],["name/340",[297,66.12]],["parent/340",[289,5.056]],["name/341",[298,66.12]],["parent/341",[289,5.056]],["name/342",[299,66.12]],["parent/342",[289,5.056]],["name/343",[300,60.887]],["parent/343",[]],["name/344",[234,57.44]],["parent/344",[300,6.802]],["name/345",[2,25.707]],["parent/345",[301,5.16]],["name/346",[302,66.12]],["parent/346",[301,5.16]],["name/347",[303,66.12]],["parent/347",[301,5.16]],["name/348",[304,66.12]],["parent/348",[301,5.16]],["name/349",[305,66.12]],["parent/349",[301,5.16]],["name/350",[306,66.12]],["parent/350",[301,5.16]],["name/351",[307,66.12]],["parent/351",[301,5.16]],["name/352",[308,66.12]],["parent/352",[301,5.16]],["name/353",[309,66.12]],["parent/353",[301,5.16]],["name/354",[310,66.12]],["parent/354",[301,5.16]],["name/355",[311,60.887]],["parent/355",[]],["name/356",[312,60.887]],["parent/356",[311,6.802]],["name/357",[313,66.12]],["parent/357",[314,6.129]],["name/358",[13,49.632]],["parent/358",[314,6.129]],["name/359",[315,66.12]],["parent/359",[314,6.129]],["name/360",[2,25.707]],["parent/360",[314,6.129]],["name/361",[316,60.887]],["parent/361",[]],["name/362",[317,60.887]],["parent/362",[316,6.802]],["name/363",[2,25.707]],["parent/363",[318,4.714]],["name/364",[13,49.632]],["parent/364",[318,4.714]],["name/365",[14,57.44]],["parent/365",[318,4.714]],["name/366",[319,60.887]],["parent/366",[318,4.714]],["name/367",[320,66.12]],["parent/367",[318,4.714]],["name/368",[321,66.12]],["parent/368",[318,4.714]],["name/369",[322,66.12]],["parent/369",[318,4.714]],["name/370",[250,52.809]],["parent/370",[318,4.714]],["name/371",[323,66.12]],["parent/371",[318,4.714]],["name/372",[324,66.12]],["parent/372",[318,4.714]],["name/373",[325,66.12]],["parent/373",[318,4.714]],["name/374",[326,66.12]],["parent/374",[318,4.714]],["name/375",[327,66.12]],["parent/375",[318,4.714]],["name/376",[328,66.12]],["parent/376",[318,4.714]],["name/377",[329,66.12]],["parent/377",[318,4.714]],["name/378",[330,60.887]],["parent/378",[]],["name/379",[331,60.887]],["parent/379",[330,6.802]],["name/380",[2,25.707]],["parent/380",[332,4.642]],["name/381",[333,57.44]],["parent/381",[332,4.642]],["name/382",[334,66.12]],["parent/382",[332,4.642]],["name/383",[335,66.12]],["parent/383",[332,4.642]],["name/384",[336,60.887]],["parent/384",[332,4.642]],["name/385",[337,60.887]],["parent/385",[332,4.642]],["name/386",[13,49.632]],["parent/386",[332,4.642]],["name/387",[250,52.809]],["parent/387",[332,4.642]],["name/388",[338,60.887]],["parent/388",[332,4.642]],["name/389",[339,66.12]],["parent/389",[332,4.642]],["name/390",[340,60.887]],["parent/390",[332,4.642]],["name/391",[341,60.887]],["parent/391",[332,4.642]],["name/392",[342,66.12]],["parent/392",[332,4.642]],["name/393",[343,66.12]],["parent/393",[332,4.642]],["name/394",[344,66.12]],["parent/394",[332,4.642]],["name/395",[345,66.12]],["parent/395",[332,4.642]],["name/396",[346,60.887]],["parent/396",[]],["name/397",[347,60.887]],["parent/397",[346,6.802]],["name/398",[2,25.707]],["parent/398",[348,3.703]],["name/399",[349,66.12]],["parent/399",[348,3.703]],["name/400",[233,60.887]],["parent/400",[348,3.703]],["name/401",[229,48.35]],["parent/401",[348,3.703]],["name/402",[13,49.632]],["parent/402",[348,3.703]],["name/403",[350,57.44]],["parent/403",[348,3.703]],["name/404",[351,66.12]],["parent/404",[348,3.703]],["name/405",[352,66.12]],["parent/405",[348,3.703]],["name/406",[353,57.44]],["parent/406",[348,3.703]],["name/407",[354,66.12]],["parent/407",[348,3.703]],["name/408",[355,66.12]],["parent/408",[348,3.703]],["name/409",[356,57.44]],["parent/409",[348,3.703]],["name/410",[357,66.12]],["parent/410",[348,3.703]],["name/411",[358,66.12]],["parent/411",[348,3.703]],["name/412",[250,52.809]],["parent/412",[348,3.703]],["name/413",[359,60.887]],["parent/413",[348,3.703]],["name/414",[360,66.12]],["parent/414",[348,3.703]],["name/415",[361,66.12]],["parent/415",[348,3.703]],["name/416",[362,66.12]],["parent/416",[348,3.703]],["name/417",[363,66.12]],["parent/417",[348,3.703]],["name/418",[364,66.12]],["parent/418",[348,3.703]],["name/419",[365,60.887]],["parent/419",[348,3.703]],["name/420",[366,57.44]],["parent/420",[348,3.703]],["name/421",[367,66.12]],["parent/421",[348,3.703]],["name/422",[368,66.12]],["parent/422",[348,3.703]],["name/423",[369,66.12]],["parent/423",[348,3.703]],["name/424",[370,66.12]],["parent/424",[348,3.703]],["name/425",[371,66.12]],["parent/425",[348,3.703]],["name/426",[372,66.12]],["parent/426",[348,3.703]],["name/427",[373,66.12]],["parent/427",[348,3.703]],["name/428",[374,66.12]],["parent/428",[348,3.703]],["name/429",[375,66.12]],["parent/429",[348,3.703]],["name/430",[376,66.12]],["parent/430",[348,3.703]],["name/431",[377,66.12]],["parent/431",[348,3.703]],["name/432",[378,66.12]],["parent/432",[348,3.703]],["name/433",[379,66.12]],["parent/433",[348,3.703]],["name/434",[380,66.12]],["parent/434",[348,3.703]],["name/435",[381,60.887]],["parent/435",[]],["name/436",[382,60.887]],["parent/436",[381,6.802]],["name/437",[337,60.887]],["parent/437",[383,6.417]],["name/438",[384,66.12]],["parent/438",[383,6.417]],["name/439",[2,25.707]],["parent/439",[383,6.417]],["name/440",[385,41.186,386,29.796]],["parent/440",[]],["name/441",[387,66.12]],["parent/441",[385,4.848,386,3.507]],["name/442",[2,25.707]],["parent/442",[385,4.848,388,5.58]],["name/443",[389,60.887]],["parent/443",[]],["name/444",[390,66.12]],["parent/444",[389,6.802]],["name/445",[2,25.707]],["parent/445",[391,5.274]],["name/446",[392,66.12]],["parent/446",[391,5.274]],["name/447",[268,60.887]],["parent/447",[391,5.274]],["name/448",[269,60.887]],["parent/448",[391,5.274]],["name/449",[393,66.12]],["parent/449",[391,5.274]],["name/450",[394,40.952]],["parent/450",[391,5.274]],["name/451",[395,66.12]],["parent/451",[391,5.274]],["name/452",[396,66.12]],["parent/452",[391,5.274]],["name/453",[397,66.12]],["parent/453",[391,5.274]],["name/454",[398,60.887]],["parent/454",[]],["name/455",[399,66.12]],["parent/455",[398,6.802]],["name/456",[2,25.707]],["parent/456",[400,7.387]],["name/457",[401,66.12]],["parent/457",[]],["name/458",[402,36.639,403,39.34]],["parent/458",[]],["name/459",[404,66.12]],["parent/459",[402,4.313,403,4.631]],["name/460",[2,25.707]],["parent/460",[402,4.313,405,4.631]],["name/461",[126,54.865]],["parent/461",[402,4.313,405,4.631]],["name/462",[406,66.12]],["parent/462",[402,4.313,405,4.631]],["name/463",[407,66.12]],["parent/463",[402,4.313,405,4.631]],["name/464",[386,29.796,408,41.186]],["parent/464",[]],["name/465",[409,66.12]],["parent/465",[386,3.507,408,4.848]],["name/466",[2,25.707]],["parent/466",[408,4.848,410,5.58]],["name/467",[411,60.887]],["parent/467",[]],["name/468",[412,66.12]],["parent/468",[411,6.802]],["name/469",[2,25.707]],["parent/469",[413,5.056]],["name/470",[414,66.12]],["parent/470",[413,5.056]],["name/471",[415,54.865]],["parent/471",[413,5.056]],["name/472",[416,66.12]],["parent/472",[413,5.056]],["name/473",[36,49.632]],["parent/473",[413,5.056]],["name/474",[394,40.952]],["parent/474",[413,5.056]],["name/475",[417,66.12]],["parent/475",[413,5.056]],["name/476",[418,57.44]],["parent/476",[413,5.056]],["name/477",[257,60.887]],["parent/477",[413,5.056]],["name/478",[419,66.12]],["parent/478",[413,5.056]],["name/479",[420,66.12]],["parent/479",[413,5.056]],["name/480",[421,60.887]],["parent/480",[]],["name/481",[422,66.12]],["parent/481",[421,6.802]],["name/482",[2,25.707]],["parent/482",[423,7.387]],["name/483",[424,14.991,425,16.934,426,28.558]],["parent/483",[]],["name/484",[427,66.12]],["parent/484",[424,1.819,425,2.055,426,3.465]],["name/485",[2,25.707]],["parent/485",[424,1.819,425,2.055,428,2.083]],["name/486",[429,66.12]],["parent/486",[424,1.819,425,2.055,428,2.083]],["name/487",[430,66.12]],["parent/487",[424,1.819,425,2.055,428,2.083]],["name/488",[431,66.12]],["parent/488",[424,1.819,425,2.055,428,2.083]],["name/489",[432,66.12]],["parent/489",[424,1.819,425,2.055,428,2.083]],["name/490",[433,66.12]],["parent/490",[424,1.819,425,2.055,428,2.083]],["name/491",[434,66.12]],["parent/491",[424,1.819,425,2.055,428,2.083]],["name/492",[435,66.12]],["parent/492",[424,1.819,425,2.055,428,2.083]],["name/493",[436,66.12]],["parent/493",[424,1.819,425,2.055,428,2.083]],["name/494",[437,66.12]],["parent/494",[424,1.819,425,2.055,428,2.083]],["name/495",[438,66.12]],["parent/495",[424,1.819,425,2.055,428,2.083]],["name/496",[439,66.12]],["parent/496",[424,1.819,425,2.055,428,2.083]],["name/497",[440,66.12]],["parent/497",[424,1.819,425,2.055,428,2.083]],["name/498",[441,66.12]],["parent/498",[424,1.819,425,2.055,428,2.083]],["name/499",[442,66.12]],["parent/499",[424,1.819,425,2.055,428,2.083]],["name/500",[443,66.12]],["parent/500",[424,1.819,425,2.055,428,2.083]],["name/501",[444,66.12]],["parent/501",[424,1.819,425,2.055,428,2.083]],["name/502",[350,57.44]],["parent/502",[424,1.819,425,2.055,428,2.083]],["name/503",[445,60.887]],["parent/503",[424,1.819,425,2.055,428,2.083]],["name/504",[356,57.44]],["parent/504",[424,1.819,425,2.055,428,2.083]],["name/505",[290,57.44]],["parent/505",[424,1.819,425,2.055,428,2.083]],["name/506",[293,60.887]],["parent/506",[424,1.819,425,2.055,428,2.083]],["name/507",[181,52.809]],["parent/507",[424,1.819,425,2.055,428,2.083]],["name/508",[333,57.44]],["parent/508",[424,1.819,425,2.055,428,2.083]],["name/509",[446,60.887]],["parent/509",[424,1.819,425,2.055,428,2.083]],["name/510",[447,57.44]],["parent/510",[424,1.819,425,2.055,428,2.083]],["name/511",[448,60.887]],["parent/511",[424,1.819,425,2.055,428,2.083]],["name/512",[449,60.887]],["parent/512",[424,1.819,425,2.055,428,2.083]],["name/513",[36,49.632]],["parent/513",[424,1.819,425,2.055,428,2.083]],["name/514",[415,54.865]],["parent/514",[424,1.819,425,2.055,428,2.083]],["name/515",[450,66.12]],["parent/515",[424,1.819,425,2.055,428,2.083]],["name/516",[451,54.865]],["parent/516",[424,1.819,425,2.055,428,2.083]],["name/517",[100,60.887]],["parent/517",[424,1.819,425,2.055,428,2.083]],["name/518",[112,60.887]],["parent/518",[424,1.819,425,2.055,428,2.083]],["name/519",[452,66.12]],["parent/519",[424,1.819,425,2.055,428,2.083]],["name/520",[394,40.952]],["parent/520",[424,1.819,425,2.055,428,2.083]],["name/521",[453,66.12]],["parent/521",[424,1.819,425,2.055,428,2.083]],["name/522",[454,66.12]],["parent/522",[424,1.819,425,2.055,428,2.083]],["name/523",[455,60.887]],["parent/523",[424,1.819,425,2.055,428,2.083]],["name/524",[456,60.887]],["parent/524",[424,1.819,425,2.055,428,2.083]],["name/525",[457,66.12]],["parent/525",[424,1.819,425,2.055,428,2.083]],["name/526",[458,66.12]],["parent/526",[424,1.819,425,2.055,428,2.083]],["name/527",[459,60.887]],["parent/527",[424,1.819,425,2.055,428,2.083]],["name/528",[460,60.887]],["parent/528",[424,1.819,425,2.055,428,2.083]],["name/529",[359,60.887]],["parent/529",[424,1.819,425,2.055,428,2.083]],["name/530",[461,51.098]],["parent/530",[424,1.819,425,2.055,428,2.083]],["name/531",[462,60.887]],["parent/531",[424,1.819,425,2.055,428,2.083]],["name/532",[424,14.991,463,21.981,464,34.029]],["parent/532",[]],["name/533",[465,66.12]],["parent/533",[424,1.819,463,2.667,464,4.129]],["name/534",[2,25.707]],["parent/534",[424,1.819,463,2.667,466,2.739]],["name/535",[467,66.12]],["parent/535",[424,1.819,463,2.667,466,2.739]],["name/536",[468,66.12]],["parent/536",[424,1.819,463,2.667,466,2.739]],["name/537",[469,66.12]],["parent/537",[424,1.819,463,2.667,466,2.739]],["name/538",[470,66.12]],["parent/538",[424,1.819,463,2.667,466,2.739]],["name/539",[471,66.12]],["parent/539",[424,1.819,463,2.667,466,2.739]],["name/540",[472,66.12]],["parent/540",[424,1.819,463,2.667,466,2.739]],["name/541",[473,66.12]],["parent/541",[424,1.819,463,2.667,466,2.739]],["name/542",[474,66.12]],["parent/542",[424,1.819,463,2.667,466,2.739]],["name/543",[475,66.12]],["parent/543",[424,1.819,463,2.667,466,2.739]],["name/544",[36,49.632]],["parent/544",[424,1.819,463,2.667,466,2.739]],["name/545",[394,40.952]],["parent/545",[424,1.819,463,2.667,466,2.739]],["name/546",[476,66.12]],["parent/546",[424,1.819,463,2.667,466,2.739]],["name/547",[477,66.12]],["parent/547",[424,1.819,463,2.667,466,2.739]],["name/548",[478,66.12]],["parent/548",[424,1.819,463,2.667,466,2.739]],["name/549",[479,66.12]],["parent/549",[424,1.819,463,2.667,466,2.739]],["name/550",[480,66.12]],["parent/550",[424,1.819,463,2.667,466,2.739]],["name/551",[481,66.12]],["parent/551",[424,1.819,463,2.667,466,2.739]],["name/552",[386,29.796,482,41.186]],["parent/552",[]],["name/553",[483,66.12]],["parent/553",[386,3.507,482,4.848]],["name/554",[2,25.707]],["parent/554",[482,4.848,484,5.58]],["name/555",[485,60.887]],["parent/555",[]],["name/556",[486,66.12]],["parent/556",[485,6.802]],["name/557",[2,25.707]],["parent/557",[487,4.575]],["name/558",[488,54.865]],["parent/558",[487,4.575]],["name/559",[350,57.44]],["parent/559",[487,4.575]],["name/560",[489,57.44]],["parent/560",[487,4.575]],["name/561",[490,60.887]],["parent/561",[487,4.575]],["name/562",[491,60.887]],["parent/562",[487,4.575]],["name/563",[445,60.887]],["parent/563",[487,4.575]],["name/564",[447,57.44]],["parent/564",[487,4.575]],["name/565",[451,54.865]],["parent/565",[487,4.575]],["name/566",[492,52.809]],["parent/566",[487,4.575]],["name/567",[493,52.809]],["parent/567",[487,4.575]],["name/568",[394,40.952]],["parent/568",[487,4.575]],["name/569",[494,52.809]],["parent/569",[487,4.575]],["name/570",[456,60.887]],["parent/570",[487,4.575]],["name/571",[459,60.887]],["parent/571",[487,4.575]],["name/572",[495,66.12]],["parent/572",[487,4.575]],["name/573",[461,51.098]],["parent/573",[487,4.575]],["name/574",[496,60.887]],["parent/574",[]],["name/575",[497,66.12]],["parent/575",[496,6.802]],["name/576",[2,25.707]],["parent/576",[498,7.387]],["name/577",[499,24.373,500,24.373,501,34.029]],["parent/577",[]],["name/578",[502,66.12]],["parent/578",[499,2.957,500,2.957,501,4.129]],["name/579",[2,25.707]],["parent/579",[499,2.957,500,2.957,503,3.069]],["name/580",[504,66.12]],["parent/580",[499,2.957,500,2.957,503,3.069]],["name/581",[36,49.632]],["parent/581",[499,2.957,500,2.957,503,3.069]],["name/582",[415,54.865]],["parent/582",[499,2.957,500,2.957,503,3.069]],["name/583",[356,57.44]],["parent/583",[499,2.957,500,2.957,503,3.069]],["name/584",[290,57.44]],["parent/584",[499,2.957,500,2.957,503,3.069]],["name/585",[447,57.44]],["parent/585",[499,2.957,500,2.957,503,3.069]],["name/586",[449,60.887]],["parent/586",[499,2.957,500,2.957,503,3.069]],["name/587",[394,40.952]],["parent/587",[499,2.957,500,2.957,503,3.069]],["name/588",[505,66.12]],["parent/588",[499,2.957,500,2.957,503,3.069]],["name/589",[418,57.44]],["parent/589",[499,2.957,500,2.957,503,3.069]],["name/590",[386,29.796,506,41.186]],["parent/590",[]],["name/591",[507,66.12]],["parent/591",[386,3.507,506,4.848]],["name/592",[2,25.707]],["parent/592",[506,4.848,508,5.58]],["name/593",[509,60.887]],["parent/593",[]],["name/594",[510,66.12]],["parent/594",[509,6.802]],["name/595",[2,25.707]],["parent/595",[511,4.79]],["name/596",[488,54.865]],["parent/596",[511,4.79]],["name/597",[489,57.44]],["parent/597",[511,4.79]],["name/598",[138,54.865]],["parent/598",[511,4.79]],["name/599",[353,57.44]],["parent/599",[511,4.79]],["name/600",[492,52.809]],["parent/600",[511,4.79]],["name/601",[493,52.809]],["parent/601",[511,4.79]],["name/602",[394,40.952]],["parent/602",[511,4.79]],["name/603",[494,52.809]],["parent/603",[511,4.79]],["name/604",[512,66.12]],["parent/604",[511,4.79]],["name/605",[366,57.44]],["parent/605",[511,4.79]],["name/606",[513,66.12]],["parent/606",[511,4.79]],["name/607",[514,66.12]],["parent/607",[511,4.79]],["name/608",[461,51.098]],["parent/608",[511,4.79]],["name/609",[515,60.887]],["parent/609",[]],["name/610",[516,66.12]],["parent/610",[515,6.802]],["name/611",[2,25.707]],["parent/611",[517,7.387]],["name/612",[386,29.796,518,41.186]],["parent/612",[]],["name/613",[519,66.12]],["parent/613",[386,3.507,518,4.848]],["name/614",[2,25.707]],["parent/614",[518,4.848,520,5.58]],["name/615",[521,60.887]],["parent/615",[]],["name/616",[522,66.12]],["parent/616",[521,6.802]],["name/617",[2,25.707]],["parent/617",[523,6.802]],["name/618",[524,66.12]],["parent/618",[523,6.802]],["name/619",[525,60.887]],["parent/619",[]],["name/620",[526,66.12]],["parent/620",[525,6.802]],["name/621",[2,25.707]],["parent/621",[527,7.387]],["name/622",[528,60.887]],["parent/622",[]],["name/623",[529,66.12]],["parent/623",[528,6.802]],["name/624",[2,25.707]],["parent/624",[530,5.545]],["name/625",[531,66.12]],["parent/625",[530,5.545]],["name/626",[415,54.865]],["parent/626",[530,5.545]],["name/627",[36,49.632]],["parent/627",[530,5.545]],["name/628",[394,40.952]],["parent/628",[530,5.545]],["name/629",[532,66.12]],["parent/629",[530,5.545]],["name/630",[418,57.44]],["parent/630",[530,5.545]],["name/631",[386,29.796,533,41.186]],["parent/631",[]],["name/632",[534,66.12]],["parent/632",[386,3.507,533,4.848]],["name/633",[2,25.707]],["parent/633",[533,4.848,535,5.58]],["name/634",[536,60.887]],["parent/634",[]],["name/635",[537,66.12]],["parent/635",[536,6.802]],["name/636",[2,25.707]],["parent/636",[538,4.96]],["name/637",[539,66.12]],["parent/637",[538,4.96]],["name/638",[488,54.865]],["parent/638",[538,4.96]],["name/639",[489,57.44]],["parent/639",[538,4.96]],["name/640",[247,60.887]],["parent/640",[538,4.96]],["name/641",[336,60.887]],["parent/641",[538,4.96]],["name/642",[492,52.809]],["parent/642",[538,4.96]],["name/643",[493,52.809]],["parent/643",[538,4.96]],["name/644",[394,40.952]],["parent/644",[538,4.96]],["name/645",[494,52.809]],["parent/645",[538,4.96]],["name/646",[461,51.098]],["parent/646",[538,4.96]],["name/647",[260,60.887]],["parent/647",[538,4.96]],["name/648",[540,60.887]],["parent/648",[]],["name/649",[541,66.12]],["parent/649",[540,6.802]],["name/650",[2,25.707]],["parent/650",[542,7.387]],["name/651",[426,28.558,543,27.739,544,27.739]],["parent/651",[]],["name/652",[545,66.12]],["parent/652",[426,3.465,543,3.366,544,3.366]],["name/653",[2,25.707]],["parent/653",[543,3.366,544,3.366,546,3.581]],["name/654",[159,52.809]],["parent/654",[543,3.366,544,3.366,546,3.581]],["name/655",[547,60.887]],["parent/655",[543,3.366,544,3.366,546,3.581]],["name/656",[394,40.952]],["parent/656",[543,3.366,544,3.366,546,3.581]],["name/657",[548,60.887]],["parent/657",[543,3.366,544,3.366,546,3.581]],["name/658",[386,29.796,549,41.186]],["parent/658",[]],["name/659",[550,66.12]],["parent/659",[386,3.507,549,4.848]],["name/660",[2,25.707]],["parent/660",[549,4.848,551,5.58]],["name/661",[552,60.887]],["parent/661",[]],["name/662",[553,66.12]],["parent/662",[552,6.802]],["name/663",[2,25.707]],["parent/663",[554,5.056]],["name/664",[488,54.865]],["parent/664",[554,5.056]],["name/665",[555,66.12]],["parent/665",[554,5.056]],["name/666",[492,52.809]],["parent/666",[554,5.056]],["name/667",[493,52.809]],["parent/667",[554,5.056]],["name/668",[319,60.887]],["parent/668",[554,5.056]],["name/669",[159,52.809]],["parent/669",[554,5.056]],["name/670",[394,40.952]],["parent/670",[554,5.056]],["name/671",[494,52.809]],["parent/671",[554,5.056]],["name/672",[556,66.12]],["parent/672",[554,5.056]],["name/673",[461,51.098]],["parent/673",[554,5.056]],["name/674",[557,60.887]],["parent/674",[]],["name/675",[558,66.12]],["parent/675",[557,6.802]],["name/676",[2,25.707]],["parent/676",[559,7.387]],["name/677",[426,28.558,560,22.887,561,22.887]],["parent/677",[]],["name/678",[562,66.12]],["parent/678",[426,3.465,560,2.777,561,2.777]],["name/679",[2,25.707]],["parent/679",[560,2.777,561,2.777,563,2.861]],["name/680",[181,52.809]],["parent/680",[560,2.777,561,2.777,563,2.861]],["name/681",[547,60.887]],["parent/681",[560,2.777,561,2.777,563,2.861]],["name/682",[564,66.12]],["parent/682",[560,2.777,561,2.777,563,2.861]],["name/683",[565,66.12]],["parent/683",[560,2.777,561,2.777,563,2.861]],["name/684",[566,66.12]],["parent/684",[560,2.777,561,2.777,563,2.861]],["name/685",[567,66.12]],["parent/685",[560,2.777,561,2.777,563,2.861]],["name/686",[451,54.865]],["parent/686",[560,2.777,561,2.777,563,2.861]],["name/687",[394,40.952]],["parent/687",[560,2.777,561,2.777,563,2.861]],["name/688",[568,66.12]],["parent/688",[560,2.777,561,2.777,563,2.861]],["name/689",[569,66.12]],["parent/689",[560,2.777,561,2.777,563,2.861]],["name/690",[570,66.12]],["parent/690",[560,2.777,561,2.777,563,2.861]],["name/691",[571,66.12]],["parent/691",[560,2.777,561,2.777,563,2.861]],["name/692",[462,60.887]],["parent/692",[560,2.777,561,2.777,563,2.861]],["name/693",[548,60.887]],["parent/693",[560,2.777,561,2.777,563,2.861]],["name/694",[386,29.796,572,41.186]],["parent/694",[]],["name/695",[573,66.12]],["parent/695",[386,3.507,572,4.848]],["name/696",[2,25.707]],["parent/696",[572,4.848,574,5.58]],["name/697",[575,60.887]],["parent/697",[]],["name/698",[576,66.12]],["parent/698",[575,6.802]],["name/699",[2,25.707]],["parent/699",[577,4.511]],["name/700",[578,66.12]],["parent/700",[577,4.511]],["name/701",[579,66.12]],["parent/701",[577,4.511]],["name/702",[490,60.887]],["parent/702",[577,4.511]],["name/703",[491,60.887]],["parent/703",[577,4.511]],["name/704",[333,57.44]],["parent/704",[577,4.511]],["name/705",[181,52.809]],["parent/705",[577,4.511]],["name/706",[446,60.887]],["parent/706",[577,4.511]],["name/707",[448,60.887]],["parent/707",[577,4.511]],["name/708",[451,54.865]],["parent/708",[577,4.511]],["name/709",[492,52.809]],["parent/709",[577,4.511]],["name/710",[493,52.809]],["parent/710",[577,4.511]],["name/711",[394,40.952]],["parent/711",[577,4.511]],["name/712",[455,60.887]],["parent/712",[577,4.511]],["name/713",[494,52.809]],["parent/713",[577,4.511]],["name/714",[460,60.887]],["parent/714",[577,4.511]],["name/715",[580,66.12]],["parent/715",[577,4.511]],["name/716",[461,51.098]],["parent/716",[577,4.511]],["name/717",[581,60.887]],["parent/717",[]],["name/718",[582,66.12]],["parent/718",[581,6.802]],["name/719",[2,25.707]],["parent/719",[583,7.387]],["name/720",[584,34.668,585,43.658]],["parent/720",[]],["name/721",[586,66.12]],["parent/721",[584,4.081,585,5.139]],["name/722",[2,25.707]],["parent/722",[584,4.081,587,5.139]],["name/723",[588,66.12]],["parent/723",[584,4.081,587,5.139]],["name/724",[403,39.34,584,34.668]],["parent/724",[]],["name/725",[589,66.12]],["parent/725",[403,4.631,584,4.081]],["name/726",[2,25.707]],["parent/726",[584,4.081,590,5.139]],["name/727",[591,66.12]],["parent/727",[584,4.081,590,5.139]],["name/728",[592,60.887]],["parent/728",[]],["name/729",[593,66.12]],["parent/729",[592,6.802]],["name/730",[2,25.707]],["parent/730",[594,6.802]],["name/731",[595,57.44]],["parent/731",[594,6.802]],["name/732",[596,39.34,597,43.658]],["parent/732",[]],["name/733",[598,66.12]],["parent/733",[596,4.631,597,5.139]],["name/734",[2,25.707]],["parent/734",[596,4.631,599,5.139]],["name/735",[595,57.44]],["parent/735",[596,4.631,599,5.139]],["name/736",[600,39.34,601,43.658]],["parent/736",[]],["name/737",[602,66.12]],["parent/737",[600,4.631,601,5.139]],["name/738",[2,25.707]],["parent/738",[600,4.631,603,5.139]],["name/739",[595,57.44]],["parent/739",[600,4.631,603,5.139]],["name/740",[604,30.663,605,30.663,606,34.029]],["parent/740",[]],["name/741",[607,66.12]],["parent/741",[604,3.721,605,3.721,606,4.129]],["name/742",[2,25.707]],["parent/742",[604,3.721,605,3.721,608,4.129]],["name/743",[124,52.809]],["parent/743",[604,3.721,605,3.721,608,4.129]],["name/744",[609,60.887]],["parent/744",[]],["name/745",[610,66.12]],["parent/745",[609,6.802]],["name/746",[2,25.707]],["parent/746",[611,6.417]],["name/747",[612,66.12]],["parent/747",[611,6.417]],["name/748",[394,40.952]],["parent/748",[611,6.417]],["name/749",[613,28.558,614,28.558,615,34.029]],["parent/749",[]],["name/750",[616,66.12]],["parent/750",[613,3.465,614,3.465,615,4.129]],["name/751",[2,25.707]],["parent/751",[613,3.465,614,3.465,617,3.721]],["name/752",[618,66.12]],["parent/752",[613,3.465,614,3.465,617,3.721]],["name/753",[394,40.952]],["parent/753",[613,3.465,614,3.465,617,3.721]],["name/754",[619,66.12]],["parent/754",[613,3.465,614,3.465,617,3.721]],["name/755",[620,60.887]],["parent/755",[]],["name/756",[621,66.12]],["parent/756",[620,6.802]],["name/757",[2,25.707]],["parent/757",[622,7.387]],["name/758",[623,60.887]],["parent/758",[]],["name/759",[624,66.12]],["parent/759",[623,6.802]],["name/760",[2,25.707]],["parent/760",[625,6.802]],["name/761",[394,40.952]],["parent/761",[625,6.802]],["name/762",[626,60.887]],["parent/762",[]],["name/763",[627,66.12]],["parent/763",[626,6.802]],["name/764",[2,25.707]],["parent/764",[628,6.802]],["name/765",[394,40.952]],["parent/765",[628,6.802]],["name/766",[629,52.809]],["parent/766",[]],["name/767",[630,66.12]],["parent/767",[629,5.9]],["name/768",[631,66.12]],["parent/768",[629,5.9]],["name/769",[632,66.12]],["parent/769",[629,5.9]],["name/770",[633,66.12]],["parent/770",[629,5.9]],["name/771",[634,60.887]],["parent/771",[]],["name/772",[635,52.809]],["parent/772",[]],["name/773",[180,51.098]],["parent/773",[635,5.9]],["name/774",[2,25.707]],["parent/774",[636,4.238]],["name/775",[637,66.12]],["parent/775",[636,4.238]],["name/776",[638,66.12]],["parent/776",[636,4.238]],["name/777",[639,66.12]],["parent/777",[636,4.238]],["name/778",[186,60.887]],["parent/778",[636,4.238]],["name/779",[187,60.887]],["parent/779",[636,4.238]],["name/780",[124,52.809]],["parent/780",[636,4.238]],["name/781",[640,66.12]],["parent/781",[636,4.238]],["name/782",[641,66.12]],["parent/782",[636,4.238]],["name/783",[642,66.12]],["parent/783",[636,4.238]],["name/784",[643,66.12]],["parent/784",[636,4.238]],["name/785",[644,66.12]],["parent/785",[636,4.238]],["name/786",[645,66.12]],["parent/786",[636,4.238]],["name/787",[646,66.12]],["parent/787",[636,4.238]],["name/788",[647,66.12]],["parent/788",[636,4.238]],["name/789",[648,66.12]],["parent/789",[636,4.238]],["name/790",[649,66.12]],["parent/790",[636,4.238]],["name/791",[650,66.12]],["parent/791",[636,4.238]],["name/792",[651,66.12]],["parent/792",[636,4.238]],["name/793",[652,66.12]],["parent/793",[636,4.238]],["name/794",[653,66.12]],["parent/794",[636,4.238]],["name/795",[654,66.12]],["parent/795",[636,4.238]],["name/796",[655,66.12]],["parent/796",[636,4.238]],["name/797",[656,66.12]],["parent/797",[635,5.9]],["name/798",[657,66.12]],["parent/798",[635,5.9]],["name/799",[178,60.887]],["parent/799",[635,5.9]],["name/800",[658,60.887]],["parent/800",[]],["name/801",[659,57.44]],["parent/801",[658,6.802]],["name/802",[52,43.61]],["parent/802",[660,7.387]],["name/803",[661,57.44]],["parent/803",[662,4.872]],["name/804",[663,57.44]],["parent/804",[662,4.872]],["name/805",[664,57.44]],["parent/805",[662,4.872]],["name/806",[665,57.44]],["parent/806",[662,4.872]],["name/807",[666,57.44]],["parent/807",[662,4.872]],["name/808",[667,57.44]],["parent/808",[662,4.872]],["name/809",[668,57.44]],["parent/809",[662,4.872]],["name/810",[669,57.44]],["parent/810",[662,4.872]],["name/811",[670,57.44]],["parent/811",[662,4.872]],["name/812",[671,57.44]],["parent/812",[662,4.872]],["name/813",[672,57.44]],["parent/813",[662,4.872]],["name/814",[673,57.44]],["parent/814",[662,4.872]],["name/815",[674,57.44]],["parent/815",[662,4.872]],["name/816",[675,60.887]],["parent/816",[]],["name/817",[659,57.44]],["parent/817",[675,6.802]],["name/818",[52,43.61]],["parent/818",[676,7.387]],["name/819",[661,57.44]],["parent/819",[677,4.872]],["name/820",[663,57.44]],["parent/820",[677,4.872]],["name/821",[664,57.44]],["parent/821",[677,4.872]],["name/822",[665,57.44]],["parent/822",[677,4.872]],["name/823",[666,57.44]],["parent/823",[677,4.872]],["name/824",[667,57.44]],["parent/824",[677,4.872]],["name/825",[668,57.44]],["parent/825",[677,4.872]],["name/826",[669,57.44]],["parent/826",[677,4.872]],["name/827",[670,57.44]],["parent/827",[677,4.872]],["name/828",[671,57.44]],["parent/828",[677,4.872]],["name/829",[672,57.44]],["parent/829",[677,4.872]],["name/830",[673,57.44]],["parent/830",[677,4.872]],["name/831",[674,57.44]],["parent/831",[677,4.872]],["name/832",[678,60.887]],["parent/832",[]],["name/833",[659,57.44]],["parent/833",[678,6.802]],["name/834",[52,43.61]],["parent/834",[679,7.387]],["name/835",[661,57.44]],["parent/835",[680,4.872]],["name/836",[663,57.44]],["parent/836",[680,4.872]],["name/837",[664,57.44]],["parent/837",[680,4.872]],["name/838",[665,57.44]],["parent/838",[680,4.872]],["name/839",[666,57.44]],["parent/839",[680,4.872]],["name/840",[667,57.44]],["parent/840",[680,4.872]],["name/841",[668,57.44]],["parent/841",[680,4.872]],["name/842",[669,57.44]],["parent/842",[680,4.872]],["name/843",[670,57.44]],["parent/843",[680,4.872]],["name/844",[671,57.44]],["parent/844",[680,4.872]],["name/845",[672,57.44]],["parent/845",[680,4.872]],["name/846",[673,57.44]],["parent/846",[680,4.872]],["name/847",[674,57.44]],["parent/847",[680,4.872]],["name/848",[681,66.12]],["parent/848",[]],["name/849",[682,66.12]],["parent/849",[]],["name/850",[683,66.12]],["parent/850",[]],["name/851",[684,28.558,685,28.558,686,23.964]],["parent/851",[]],["name/852",[687,60.887]],["parent/852",[684,3.465,685,3.465,686,2.908]],["name/853",[2,25.707]],["parent/853",[684,3.465,685,3.465,688,3.721]],["name/854",[689,66.12]],["parent/854",[684,3.465,685,3.465,688,3.721]],["name/855",[690,66.12]],["parent/855",[684,3.465,685,3.465,688,3.721]],["name/856",[691,66.12]],["parent/856",[684,3.465,685,3.465,688,3.721]],["name/857",[692,47.21]],["parent/857",[]],["name/858",[686,19.634,693,23.397,694,23.397,695,23.397]],["parent/858",[]],["name/859",[696,60.887]],["parent/859",[686,2.43,693,2.896,694,2.896,695,2.896]],["name/860",[2,25.707]],["parent/860",[693,2.896,694,2.896,695,2.896,697,3.11]],["name/861",[698,66.12]],["parent/861",[693,2.896,694,2.896,695,2.896,697,3.11]],["name/862",[699,66.12]],["parent/862",[693,2.896,694,2.896,695,2.896,697,3.11]],["name/863",[700,66.12]],["parent/863",[693,2.896,694,2.896,695,2.896,697,3.11]],["name/864",[686,23.964,701,27.739,702,27.739]],["parent/864",[]],["name/865",[703,60.887]],["parent/865",[686,2.908,701,3.366,702,3.366]],["name/866",[2,25.707]],["parent/866",[701,3.366,702,3.366,704,4.484]],["name/867",[705,60.887]],["parent/867",[686,2.908,701,3.366,702,3.366]],["name/868",[2,25.707]],["parent/868",[701,3.366,702,3.366,706,4.484]],["name/869",[707,60.887]],["parent/869",[686,2.908,701,3.366,702,3.366]],["name/870",[2,25.707]],["parent/870",[701,3.366,702,3.366,708,4.484]],["name/871",[686,23.964,709,30.663,710,22.268]],["parent/871",[]],["name/872",[711,60.887]],["parent/872",[686,2.908,709,3.721,710,2.702]],["name/873",[2,25.707]],["parent/873",[709,3.721,710,2.702,712,4.129]],["name/874",[713,66.12]],["parent/874",[709,3.721,710,2.702,712,4.129]],["name/875",[686,23.964,710,22.268,714,28.558]],["parent/875",[]],["name/876",[715,60.887]],["parent/876",[686,2.908,710,2.702,714,3.465]],["name/877",[2,25.707]],["parent/877",[710,2.702,714,3.465,716,3.721]],["name/878",[340,60.887]],["parent/878",[710,2.702,714,3.465,716,3.721]],["name/879",[341,60.887]],["parent/879",[710,2.702,714,3.465,716,3.721]],["name/880",[338,60.887]],["parent/880",[710,2.702,714,3.465,716,3.721]],["name/881",[686,23.964,710,22.268,717,26.385]],["parent/881",[]],["name/882",[718,60.887]],["parent/882",[686,2.908,710,2.702,717,3.202]],["name/883",[2,25.707]],["parent/883",[710,2.702,717,3.202,719,3.366]],["name/884",[720,66.12]],["parent/884",[710,2.702,717,3.202,719,3.366]],["name/885",[353,57.44]],["parent/885",[710,2.702,717,3.202,719,3.366]],["name/886",[721,66.12]],["parent/886",[710,2.702,717,3.202,719,3.366]],["name/887",[722,66.12]],["parent/887",[710,2.702,717,3.202,719,3.366]],["name/888",[365,60.887]],["parent/888",[710,2.702,717,3.202,719,3.366]],["name/889",[366,57.44]],["parent/889",[710,2.702,717,3.202,719,3.366]],["name/890",[1,60.887]],["parent/890",[11,6.417]],["name/891",[14,57.44]],["parent/891",[11,6.417]],["name/892",[20,60.887]],["parent/892",[23,6.417]],["name/893",[25,60.887]],["parent/893",[23,6.417]],["name/894",[29,60.887]],["parent/894",[64,4.642]],["name/895",[32,60.887]],["parent/895",[64,4.642]],["name/896",[41,60.887]],["parent/896",[64,4.642]],["name/897",[37,60.887]],["parent/897",[64,4.642]],["name/898",[47,60.887]],["parent/898",[64,4.642]],["name/899",[50,60.887]],["parent/899",[64,4.642]],["name/900",[51,60.887]],["parent/900",[64,4.642]],["name/901",[55,60.887]],["parent/901",[64,4.642]],["name/902",[63,60.887]],["parent/902",[64,4.642]],["name/903",[67,60.887]],["parent/903",[64,4.642]],["name/904",[70,60.887]],["parent/904",[64,4.642]],["name/905",[77,60.887]],["parent/905",[64,4.642]],["name/906",[80,60.887]],["parent/906",[64,4.642]],["name/907",[81,60.887]],["parent/907",[64,4.642]],["name/908",[83,60.887]],["parent/908",[64,4.642]],["name/909",[85,60.887]],["parent/909",[91,6.129]],["name/910",[89,60.887]],["parent/910",[91,6.129]],["name/911",[93,60.887]],["parent/911",[91,6.129]],["name/912",[96,60.887]],["parent/912",[136,4.714]],["name/913",[123,60.887]],["parent/913",[136,4.714]],["name/914",[128,60.887]],["parent/914",[136,4.714]],["name/915",[127,51.098]],["parent/915",[136,4.714]],["name/916",[135,60.887]],["parent/916",[136,4.714]],["name/917",[138,54.865]],["parent/917",[136,4.714]],["name/918",[144,60.887]],["parent/918",[136,4.714]],["name/919",[148,57.44]],["parent/919",[136,4.714]],["name/920",[152,60.887]],["parent/920",[136,4.714]],["name/921",[159,52.809]],["parent/921",[136,4.714]],["name/922",[173,60.887]],["parent/922",[136,4.714]],["name/923",[181,52.809]],["parent/923",[136,4.714]],["name/924",[180,51.098]],["parent/924",[136,4.714]],["name/925",[194,60.887]],["parent/925",[136,4.714]],["name/926",[200,54.865]],["parent/926",[196,5.545]],["name/927",[227,60.887]],["parent/927",[196,5.545]],["name/928",[230,60.887]],["parent/928",[196,5.545]],["name/929",[240,60.887]],["parent/929",[196,5.545]],["name/930",[127,51.098]],["parent/930",[196,5.545]],["name/931",[229,48.35]],["parent/931",[196,5.545]],["name/932",[245,60.887]],["parent/932",[282,4.96]],["name/933",[331,60.887]],["parent/933",[282,4.96]],["name/934",[347,60.887]],["parent/934",[282,4.96]],["name/935",[317,60.887]],["parent/935",[282,4.96]],["name/936",[266,60.887]],["parent/936",[282,4.96]],["name/937",[288,60.887]],["parent/937",[282,4.96]],["name/938",[234,57.44]],["parent/938",[282,4.96]],["name/939",[277,60.887]],["parent/939",[282,4.96]],["name/940",[382,60.887]],["parent/940",[282,4.96]],["name/941",[284,60.887]],["parent/941",[282,4.96]],["name/942",[312,60.887]],["parent/942",[282,4.96]],["name/943",[180,51.098]],["parent/943",[634,6.802]],["name/944",[687,60.887]],["parent/944",[692,5.274]],["name/945",[696,60.887]],["parent/945",[692,5.274]],["name/946",[703,60.887]],["parent/946",[692,5.274]],["name/947",[705,60.887]],["parent/947",[692,5.274]],["name/948",[707,60.887]],["parent/948",[692,5.274]],["name/949",[718,60.887]],["parent/949",[692,5.274]],["name/950",[711,60.887]],["parent/950",[692,5.274]],["name/951",[715,60.887]],["parent/951",[692,5.274]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":166,"name":{"164":{}},"parent":{}}],["__type",{"_index":52,"name":{"47":{},"64":{},"96":{},"98":{},"104":{},"111":{},"163":{},"165":{},"262":{},"264":{},"802":{},"818":{},"834":{}},"parent":{}}],["_outbuffer",{"_index":646,"name":{"787":{}},"parent":{}}],["_outbuffercursor",{"_index":647,"name":{"788":{}},"parent":{}}],["_signatureset",{"_index":644,"name":{"785":{}},"parent":{}}],["_workbuffer",{"_index":645,"name":{"786":{}},"parent":{}}],["account",{"_index":442,"name":{"499":{}},"parent":{}}],["account.component",{"_index":501,"name":{"577":{}},"parent":{"578":{}}}],["account.component.createaccountcomponent",{"_index":503,"name":{},"parent":{"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["account/create",{"_index":500,"name":{"577":{}},"parent":{"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["accountaddress",{"_index":443,"name":{"500":{}},"parent":{}}],["accountdetails",{"_index":96,"name":{"89":{},"912":{}},"parent":{}}],["accountdetailscomponent",{"_index":427,"name":{"484":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"890":{}},"parent":{}}],["accountinfoform",{"_index":441,"name":{"498":{}},"parent":{}}],["accountinfoformstub",{"_index":457,"name":{"525":{}},"parent":{}}],["accounts",{"_index":350,"name":{"403":{},"502":{},"559":{}},"parent":{}}],["accountscomponent",{"_index":486,"name":{"556":{}},"parent":{}}],["accountsearchcomponent",{"_index":465,"name":{"533":{}},"parent":{}}],["accountslist",{"_index":351,"name":{"404":{}},"parent":{}}],["accountsmodule",{"_index":497,"name":{"575":{}},"parent":{}}],["accountsroutingmodule",{"_index":483,"name":{"553":{}},"parent":{}}],["accountssubject",{"_index":352,"name":{"405":{}},"parent":{}}],["accountstatus",{"_index":444,"name":{"501":{}},"parent":{}}],["accountstype",{"_index":445,"name":{"503":{},"563":{}},"parent":{}}],["accounttypes",{"_index":447,"name":{"510":{},"564":{},"585":{}},"parent":{}}],["action",{"_index":138,"name":{"132":{},"133":{},"598":{},"917":{}},"parent":{}}],["actions",{"_index":353,"name":{"406":{},"599":{},"885":{}},"parent":{}}],["actionslist",{"_index":354,"name":{"407":{}},"parent":{}}],["actionssubject",{"_index":355,"name":{"408":{}},"parent":{}}],["activatedroutestub",{"_index":687,"name":{"852":{},"944":{}},"parent":{}}],["add0x",{"_index":633,"name":{"770":{}},"parent":{}}],["addaccount",{"_index":380,"name":{"434":{}},"parent":{}}],["address",{"_index":160,"name":{"157":{},"195":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":473,"name":{"541":{}},"parent":{}}],["addresssearchformstub",{"_index":478,"name":{"548":{}},"parent":{}}],["addresssearchloading",{"_index":475,"name":{"543":{}},"parent":{}}],["addresssearchsubmitted",{"_index":474,"name":{"542":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtoken",{"_index":323,"name":{"371":{}},"parent":{}}],["addtransaction",{"_index":342,"name":{"392":{}},"parent":{}}],["addtrusteduser",{"_index":261,"name":{"302":{}},"parent":{}}],["admincomponent",{"_index":510,"name":{"594":{}},"parent":{}}],["adminmodule",{"_index":516,"name":{"610":{}},"parent":{}}],["adminroutingmodule",{"_index":507,"name":{"591":{}},"parent":{}}],["age",{"_index":97,"name":{"90":{}},"parent":{}}],["algo",{"_index":131,"name":{"125":{},"256":{},"273":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"890":{},"891":{}}}],["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":{"892":{},"893":{}}}],["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":64,"name":{"58":{}},"parent":{"894":{},"895":{},"896":{},"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["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":{},"55":{}}}],["app/_helpers/http",{"_index":61,"name":{"56":{}},"parent":{"57":{}}}],["app/_helpers/mock",{"_index":65,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["app/_helpers/read",{"_index":76,"name":{"68":{}},"parent":{"69":{}}}],["app/_helpers/schema",{"_index":78,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["app/_helpers/sync",{"_index":82,"name":{"73":{}},"parent":{"74":{}}}],["app/_interceptors",{"_index":91,"name":{"83":{}},"parent":{"909":{},"910":{},"911":{}}}],["app/_interceptors/error.interceptor",{"_index":84,"name":{"75":{}},"parent":{"76":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":86,"name":{},"parent":{"77":{},"78":{}}}],["app/_interceptors/http",{"_index":87,"name":{"79":{}},"parent":{"80":{},"81":{},"82":{}}}],["app/_interceptors/logging.interceptor",{"_index":92,"name":{"84":{}},"parent":{"85":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":94,"name":{},"parent":{"86":{},"87":{}}}],["app/_models",{"_index":136,"name":{"130":{}},"parent":{"912":{},"913":{},"914":{},"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{}}}],["app/_models/account",{"_index":95,"name":{"88":{}},"parent":{"89":{},"117":{},"121":{},"124":{},"129":{}}}],["app/_models/account.accountdetails",{"_index":98,"name":{},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"103":{},"104":{},"108":{},"109":{},"110":{},"111":{}}}],["app/_models/account.accountdetails.__type",{"_index":105,"name":{},"parent":{"97":{},"98":{},"101":{},"102":{},"105":{},"106":{},"107":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":107,"name":{},"parent":{"99":{},"100":{}}}],["app/_models/account.meta",{"_index":125,"name":{},"parent":{"118":{},"119":{},"120":{}}}],["app/_models/account.metaresponse",{"_index":129,"name":{},"parent":{"122":{},"123":{}}}],["app/_models/account.signature",{"_index":132,"name":{},"parent":{"125":{},"126":{},"127":{},"128":{}}}],["app/_models/mappings",{"_index":137,"name":{"131":{}},"parent":{"132":{}}}],["app/_models/mappings.action",{"_index":139,"name":{},"parent":{"133":{},"134":{},"135":{},"136":{},"137":{}}}],["app/_models/settings",{"_index":143,"name":{"138":{}},"parent":{"139":{},"145":{}}}],["app/_models/settings.settings",{"_index":145,"name":{},"parent":{"140":{},"141":{},"142":{},"143":{},"144":{}}}],["app/_models/settings.w3",{"_index":149,"name":{},"parent":{"146":{},"147":{}}}],["app/_models/staff",{"_index":151,"name":{"148":{}},"parent":{"149":{}}}],["app/_models/staff.staff",{"_index":154,"name":{},"parent":{"150":{},"151":{},"152":{},"153":{},"154":{}}}],["app/_models/token",{"_index":158,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/token.token",{"_index":161,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"168":{},"169":{}}}],["app/_models/token.token.__type",{"_index":167,"name":{},"parent":{"164":{},"165":{}}}],["app/_models/token.token.__type.__type",{"_index":169,"name":{},"parent":{"166":{},"167":{}}}],["app/_models/transaction",{"_index":172,"name":{"170":{}},"parent":{"171":{},"179":{},"188":{},"194":{}}}],["app/_models/transaction.conversion",{"_index":175,"name":{},"parent":{"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["app/_models/transaction.transaction",{"_index":183,"name":{},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{}}}],["app/_models/transaction.tx",{"_index":189,"name":{},"parent":{"189":{},"190":{},"191":{},"192":{},"193":{}}}],["app/_models/transaction.txtoken",{"_index":195,"name":{},"parent":{"195":{},"196":{},"197":{}}}],["app/_pgp",{"_index":196,"name":{"198":{}},"parent":{"926":{},"927":{},"928":{},"929":{},"930":{},"931":{}}}],["app/_pgp/pgp",{"_index":197,"name":{"199":{},"253":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["app/_services",{"_index":282,"name":{"324":{}},"parent":{"932":{},"933":{},"934":{},"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{}}}],["app/_services/auth.service",{"_index":244,"name":{"284":{}},"parent":{"285":{}}}],["app/_services/auth.service.authservice",{"_index":246,"name":{},"parent":{"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{}}}],["app/_services/block",{"_index":264,"name":{"307":{}},"parent":{"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{}}}],["app/_services/error",{"_index":275,"name":{"318":{}},"parent":{"319":{},"320":{},"321":{},"322":{},"323":{}}}],["app/_services/keystore.service",{"_index":283,"name":{"325":{}},"parent":{"326":{}}}],["app/_services/keystore.service.keystoreservice",{"_index":285,"name":{},"parent":{"327":{},"328":{},"329":{}}}],["app/_services/location.service",{"_index":287,"name":{"330":{}},"parent":{"331":{}}}],["app/_services/location.service.locationservice",{"_index":289,"name":{},"parent":{"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{}}}],["app/_services/logging.service",{"_index":300,"name":{"343":{}},"parent":{"344":{}}}],["app/_services/logging.service.loggingservice",{"_index":301,"name":{},"parent":{"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{}}}],["app/_services/registry.service",{"_index":311,"name":{"355":{}},"parent":{"356":{}}}],["app/_services/registry.service.registryservice",{"_index":314,"name":{},"parent":{"357":{},"358":{},"359":{},"360":{}}}],["app/_services/token.service",{"_index":316,"name":{"361":{}},"parent":{"362":{}}}],["app/_services/token.service.tokenservice",{"_index":318,"name":{},"parent":{"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{}}}],["app/_services/transaction.service",{"_index":330,"name":{"378":{}},"parent":{"379":{}}}],["app/_services/transaction.service.transactionservice",{"_index":332,"name":{},"parent":{"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{}}}],["app/_services/user.service",{"_index":346,"name":{"396":{}},"parent":{"397":{}}}],["app/_services/user.service.userservice",{"_index":348,"name":{},"parent":{"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":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{}}}],["app/_services/web3.service",{"_index":381,"name":{"435":{}},"parent":{"436":{}}}],["app/_services/web3.service.web3service",{"_index":383,"name":{},"parent":{"437":{},"438":{},"439":{}}}],["app/app",{"_index":385,"name":{"440":{}},"parent":{"441":{},"442":{}}}],["app/app.component",{"_index":389,"name":{"443":{}},"parent":{"444":{}}}],["app/app.component.appcomponent",{"_index":391,"name":{},"parent":{"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{}}}],["app/app.module",{"_index":398,"name":{"454":{}},"parent":{"455":{}}}],["app/app.module.appmodule",{"_index":400,"name":{},"parent":{"456":{}}}],["app/auth/_directives",{"_index":401,"name":{"457":{}},"parent":{}}],["app/auth/_directives/password",{"_index":402,"name":{"458":{}},"parent":{"459":{},"460":{},"461":{},"462":{},"463":{}}}],["app/auth/auth",{"_index":408,"name":{"464":{}},"parent":{"465":{},"466":{}}}],["app/auth/auth.component",{"_index":411,"name":{"467":{}},"parent":{"468":{}}}],["app/auth/auth.component.authcomponent",{"_index":413,"name":{},"parent":{"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{}}}],["app/auth/auth.module",{"_index":421,"name":{"480":{}},"parent":{"481":{}}}],["app/auth/auth.module.authmodule",{"_index":423,"name":{},"parent":{"482":{}}}],["app/pages/accounts/account",{"_index":424,"name":{"483":{},"532":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{}}}],["app/pages/accounts/accounts",{"_index":482,"name":{"552":{}},"parent":{"553":{},"554":{}}}],["app/pages/accounts/accounts.component",{"_index":485,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":487,"name":{},"parent":{"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{}}}],["app/pages/accounts/accounts.module",{"_index":496,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":498,"name":{},"parent":{"576":{}}}],["app/pages/accounts/create",{"_index":499,"name":{"577":{}},"parent":{"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin",{"_index":506,"name":{"590":{}},"parent":{"591":{},"592":{}}}],["app/pages/admin/admin.component",{"_index":509,"name":{"593":{}},"parent":{"594":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":511,"name":{},"parent":{"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{}}}],["app/pages/admin/admin.module",{"_index":515,"name":{"609":{}},"parent":{"610":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":517,"name":{},"parent":{"611":{}}}],["app/pages/pages",{"_index":518,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/pages.component",{"_index":521,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/pages.component.pagescomponent",{"_index":523,"name":{},"parent":{"617":{},"618":{}}}],["app/pages/pages.module",{"_index":525,"name":{"619":{}},"parent":{"620":{}}}],["app/pages/pages.module.pagesmodule",{"_index":527,"name":{},"parent":{"621":{}}}],["app/pages/settings/organization/organization.component",{"_index":528,"name":{"622":{}},"parent":{"623":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":530,"name":{},"parent":{"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{}}}],["app/pages/settings/settings",{"_index":533,"name":{"631":{}},"parent":{"632":{},"633":{}}}],["app/pages/settings/settings.component",{"_index":536,"name":{"634":{}},"parent":{"635":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":538,"name":{},"parent":{"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{}}}],["app/pages/settings/settings.module",{"_index":540,"name":{"648":{}},"parent":{"649":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":542,"name":{},"parent":{"650":{}}}],["app/pages/tokens/token",{"_index":543,"name":{"651":{}},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{}}}],["app/pages/tokens/tokens",{"_index":549,"name":{"658":{}},"parent":{"659":{},"660":{}}}],["app/pages/tokens/tokens.component",{"_index":552,"name":{"661":{}},"parent":{"662":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":554,"name":{},"parent":{"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{}}}],["app/pages/tokens/tokens.module",{"_index":557,"name":{"674":{}},"parent":{"675":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":559,"name":{},"parent":{"676":{}}}],["app/pages/transactions/transaction",{"_index":560,"name":{"677":{}},"parent":{"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{}}}],["app/pages/transactions/transactions",{"_index":572,"name":{"694":{}},"parent":{"695":{},"696":{}}}],["app/pages/transactions/transactions.component",{"_index":575,"name":{"697":{}},"parent":{"698":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":577,"name":{},"parent":{"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{}}}],["app/pages/transactions/transactions.module",{"_index":581,"name":{"717":{}},"parent":{"718":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":583,"name":{},"parent":{"719":{}}}],["app/shared/_directives/menu",{"_index":584,"name":{"720":{},"724":{}},"parent":{"721":{},"722":{},"723":{},"725":{},"726":{},"727":{}}}],["app/shared/_pipes/safe.pipe",{"_index":592,"name":{"728":{}},"parent":{"729":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":594,"name":{},"parent":{"730":{},"731":{}}}],["app/shared/_pipes/token",{"_index":596,"name":{"732":{}},"parent":{"733":{},"734":{},"735":{}}}],["app/shared/_pipes/unix",{"_index":600,"name":{"736":{}},"parent":{"737":{},"738":{},"739":{}}}],["app/shared/error",{"_index":604,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{}}}],["app/shared/footer/footer.component",{"_index":609,"name":{"744":{}},"parent":{"745":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":611,"name":{},"parent":{"746":{},"747":{},"748":{}}}],["app/shared/network",{"_index":613,"name":{"749":{}},"parent":{"750":{},"751":{},"752":{},"753":{},"754":{}}}],["app/shared/shared.module",{"_index":620,"name":{"755":{}},"parent":{"756":{}}}],["app/shared/shared.module.sharedmodule",{"_index":622,"name":{},"parent":{"757":{}}}],["app/shared/sidebar/sidebar.component",{"_index":623,"name":{"758":{}},"parent":{"759":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":625,"name":{},"parent":{"760":{},"761":{}}}],["app/shared/topbar/topbar.component",{"_index":626,"name":{"762":{}},"parent":{"763":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":628,"name":{},"parent":{"764":{},"765":{}}}],["appcomponent",{"_index":390,"name":{"444":{}},"parent":{}}],["appmodule",{"_index":399,"name":{"455":{}},"parent":{}}],["approutingmodule",{"_index":387,"name":{"441":{}},"parent":{}}],["approval",{"_index":140,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":512,"name":{"604":{}},"parent":{}}],["approveaction",{"_index":366,"name":{"420":{},"605":{},"889":{}},"parent":{}}],["area",{"_index":112,"name":{"105":{},"518":{}},"parent":{}}],["area_name",{"_index":113,"name":{"106":{}},"parent":{}}],["area_type",{"_index":114,"name":{"107":{}},"parent":{}}],["areanames",{"_index":290,"name":{"333":{},"505":{},"584":{}},"parent":{}}],["areanameslist",{"_index":291,"name":{"334":{}},"parent":{}}],["areanamessubject",{"_index":292,"name":{"335":{}},"parent":{}}],["areatype",{"_index":452,"name":{"519":{}},"parent":{}}],["areatypes",{"_index":293,"name":{"336":{},"506":{}},"parent":{}}],["areatypeslist",{"_index":294,"name":{"337":{}},"parent":{}}],["areatypessubject",{"_index":295,"name":{"338":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"894":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":634,"name":{"771":{}},"parent":{"943":{}}}],["assets/js/ethtx/dist/hex",{"_index":629,"name":{"766":{}},"parent":{"767":{},"768":{},"769":{},"770":{}}}],["assets/js/ethtx/dist/tx",{"_index":635,"name":{"772":{}},"parent":{"773":{},"797":{},"798":{},"799":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":636,"name":{},"parent":{"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{}}}],["authcomponent",{"_index":412,"name":{"468":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"892":{}},"parent":{}}],["authmodule",{"_index":422,"name":{"481":{}},"parent":{}}],["authroutingmodule",{"_index":409,"name":{"465":{}},"parent":{}}],["authservice",{"_index":245,"name":{"285":{},"932":{}},"parent":{}}],["backend",{"_index":66,"name":{"59":{}},"parent":{"60":{},"63":{}}}],["backend.mockbackendinterceptor",{"_index":68,"name":{},"parent":{"61":{},"62":{}}}],["backend.mockbackendprovider",{"_index":71,"name":{},"parent":{"64":{}}}],["backend.mockbackendprovider.__type",{"_index":73,"name":{},"parent":{"65":{},"66":{},"67":{}}}],["balance",{"_index":99,"name":{"91":{},"167":{}},"parent":{}}],["block",{"_index":188,"name":{"189":{}},"parent":{}}],["blocksync",{"_index":270,"name":{"313":{}},"parent":{}}],["blocksyncservice",{"_index":266,"name":{"308":{},"936":{}},"parent":{}}],["bloxberg:8996",{"_index":106,"name":{"99":{}},"parent":{}}],["bloxbergchainid",{"_index":663,"name":{"804":{},"820":{},"836":{}},"parent":{}}],["bloxberglink",{"_index":450,"name":{"515":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":303,"name":{"347":{}},"parent":{}}],["canonicalorder",{"_index":651,"name":{"792":{}},"parent":{}}],["categories",{"_index":356,"name":{"409":{},"504":{},"583":{}},"parent":{}}],["categorieslist",{"_index":357,"name":{"410":{}},"parent":{}}],["categoriessubject",{"_index":358,"name":{"411":{}},"parent":{}}],["category",{"_index":100,"name":{"92":{},"517":{}},"parent":{}}],["chainid",{"_index":643,"name":{"784":{}},"parent":{}}],["changeaccountinfo",{"_index":362,"name":{"416":{}},"parent":{}}],["ciccacheurl",{"_index":669,"name":{"810":{},"826":{},"842":{}},"parent":{}}],["cicconvert",{"_index":397,"name":{"453":{}},"parent":{}}],["cicmetaurl",{"_index":667,"name":{"808":{},"824":{},"840":{}},"parent":{}}],["cictransfer",{"_index":396,"name":{"452":{}},"parent":{}}],["cicussdurl",{"_index":671,"name":{"812":{},"828":{},"844":{}},"parent":{}}],["clearkeysinkeyring",{"_index":201,"name":{"201":{},"228":{}},"parent":{}}],["clearsignature",{"_index":655,"name":{"796":{}},"parent":{}}],["close",{"_index":548,"name":{"657":{},"693":{}},"parent":{}}],["closewindow",{"_index":547,"name":{"655":{},"681":{}},"parent":{}}],["columnstodisplay",{"_index":555,"name":{"665":{}},"parent":{}}],["comment",{"_index":153,"name":{"150":{}},"parent":{}}],["config.interceptor",{"_index":88,"name":{"79":{}},"parent":{"80":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":90,"name":{},"parent":{"81":{},"82":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"48":{},"51":{},"61":{},"77":{},"81":{},"86":{},"140":{},"227":{},"255":{},"286":{},"309":{},"320":{},"329":{},"332":{},"345":{},"360":{},"363":{},"380":{},"398":{},"439":{},"442":{},"445":{},"456":{},"460":{},"466":{},"469":{},"482":{},"485":{},"534":{},"554":{},"557":{},"576":{},"579":{},"592":{},"595":{},"611":{},"614":{},"617":{},"621":{},"624":{},"633":{},"636":{},"650":{},"653":{},"660":{},"663":{},"676":{},"679":{},"696":{},"699":{},"719":{},"722":{},"726":{},"730":{},"734":{},"738":{},"742":{},"746":{},"751":{},"757":{},"760":{},"764":{},"774":{},"853":{},"860":{},"866":{},"868":{},"870":{},"873":{},"877":{},"883":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":173,"name":{"171":{},"922":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":462,"name":{"531":{},"692":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"895":{}},"parent":{}}],["createaccountcomponent",{"_index":502,"name":{"578":{}},"parent":{}}],["createform",{"_index":504,"name":{"580":{}},"parent":{}}],["createformstub",{"_index":505,"name":{"588":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"68":{}},"parent":{"43":{},"69":{}}}],["currentyear",{"_index":612,"name":{"747":{}},"parent":{}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"897":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"896":{}},"parent":{}}],["dashboardurl",{"_index":674,"name":{"815":{},"831":{},"847":{}},"parent":{}}],["data",{"_index":124,"name":{"118":{},"126":{},"274":{},"743":{},"780":{}},"parent":{}}],["datasource",{"_index":488,"name":{"558":{},"596":{},"638":{},"664":{}},"parent":{}}],["date",{"_index":539,"name":{"637":{}},"parent":{}}],["date.pipe",{"_index":601,"name":{"736":{}},"parent":{"737":{}}}],["date.pipe.unixdatepipe",{"_index":603,"name":{},"parent":{"738":{},"739":{}}}],["date_registered",{"_index":101,"name":{"93":{}},"parent":{}}],["decimals",{"_index":162,"name":{"158":{}},"parent":{}}],["defaultaccount",{"_index":135,"name":{"129":{},"916":{}},"parent":{}}],["defaultpagesize",{"_index":490,"name":{"561":{},"702":{}},"parent":{}}],["destinationtoken",{"_index":174,"name":{"172":{}},"parent":{}}],["details.component",{"_index":426,"name":{"483":{},"651":{},"677":{}},"parent":{"484":{},"652":{},"678":{}}}],["details.component.accountdetailscomponent",{"_index":428,"name":{},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{}}}],["details.component.tokendetailscomponent",{"_index":546,"name":{},"parent":{"653":{},"654":{},"655":{},"656":{},"657":{}}}],["details.component.transactiondetailscomponent",{"_index":563,"name":{},"parent":{"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{}}}],["details/account",{"_index":425,"name":{"483":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{}}}],["details/token",{"_index":544,"name":{"651":{}},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{}}}],["details/transaction",{"_index":561,"name":{"677":{}},"parent":{"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{}}}],["dgst",{"_index":232,"name":{"257":{}},"parent":{}}],["dialog",{"_index":280,"name":{"322":{}},"parent":{}}],["dialog.component",{"_index":606,"name":{"740":{}},"parent":{"741":{}}}],["dialog.component.errordialogcomponent",{"_index":608,"name":{},"parent":{"742":{},"743":{}}}],["dialog.service",{"_index":276,"name":{"318":{}},"parent":{"319":{}}}],["dialog.service.errordialogservice",{"_index":278,"name":{},"parent":{"320":{},"321":{},"322":{},"323":{}}}],["dialog/error",{"_index":605,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{}}}],["digest",{"_index":133,"name":{"127":{},"271":{},"275":{}},"parent":{}}],["directive",{"_index":695,"name":{"858":{}},"parent":{"859":{},"860":{},"861":{},"862":{},"863":{}}}],["disapproveaction",{"_index":513,"name":{"606":{}},"parent":{}}],["displayedcolumns",{"_index":489,"name":{"560":{},"597":{},"639":{}},"parent":{}}],["dofilter",{"_index":494,"name":{"569":{},"603":{},"645":{},"671":{},"713":{}},"parent":{}}],["dotransactionfilter",{"_index":453,"name":{"521":{}},"parent":{}}],["douserfilter",{"_index":454,"name":{"522":{}},"parent":{}}],["downloadcsv",{"_index":461,"name":{"530":{},"573":{},"608":{},"646":{},"673":{},"716":{}},"parent":{}}],["email",{"_index":118,"name":{"112":{},"151":{}},"parent":{}}],["engine",{"_index":134,"name":{"128":{},"146":{},"258":{},"276":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":302,"name":{"346":{}},"parent":{}}],["environment",{"_index":659,"name":{"801":{},"817":{},"833":{}},"parent":{}}],["environments/environment",{"_index":678,"name":{"832":{}},"parent":{"833":{}}}],["environments/environment.dev",{"_index":658,"name":{"800":{}},"parent":{"801":{}}}],["environments/environment.dev.environment",{"_index":660,"name":{},"parent":{"802":{}}}],["environments/environment.dev.environment.__type",{"_index":662,"name":{},"parent":{"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{}}}],["environments/environment.environment",{"_index":679,"name":{},"parent":{"834":{}}}],["environments/environment.environment.__type",{"_index":680,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{},"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["environments/environment.prod",{"_index":675,"name":{"816":{}},"parent":{"817":{}}}],["environments/environment.prod.environment",{"_index":676,"name":{},"parent":{"818":{}}}],["environments/environment.prod.environment.__type",{"_index":677,"name":{},"parent":{"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["errordialogcomponent",{"_index":607,"name":{"741":{}},"parent":{}}],["errordialogservice",{"_index":277,"name":{"319":{},"939":{}},"parent":{}}],["errorinterceptor",{"_index":85,"name":{"76":{},"909":{}},"parent":{}}],["evm",{"_index":104,"name":{"97":{}},"parent":{}}],["expandcollapse",{"_index":514,"name":{"607":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"898":{}},"parent":{}}],["fetcher",{"_index":274,"name":{"317":{}},"parent":{}}],["filegetter",{"_index":313,"name":{"357":{}},"parent":{}}],["filteraccounts",{"_index":459,"name":{"527":{},"571":{}},"parent":{}}],["filtertransactions",{"_index":460,"name":{"528":{},"714":{}},"parent":{}}],["fingerprint",{"_index":237,"name":{"266":{},"278":{}},"parent":{}}],["fn",{"_index":119,"name":{"113":{}},"parent":{}}],["footercomponent",{"_index":610,"name":{"745":{}},"parent":{}}],["footerstubcomponent",{"_index":707,"name":{"869":{},"948":{}},"parent":{}}],["from",{"_index":182,"name":{"180":{}},"parent":{}}],["fromhex",{"_index":630,"name":{"767":{}},"parent":{}}],["fromvalue",{"_index":176,"name":{"173":{}},"parent":{}}],["gaslimit",{"_index":639,"name":{"777":{}},"parent":{}}],["gasprice",{"_index":638,"name":{"776":{}},"parent":{}}],["gender",{"_index":102,"name":{"94":{}},"parent":{}}],["genders",{"_index":449,"name":{"512":{},"586":{}},"parent":{}}],["getaccountbyaddress",{"_index":371,"name":{"425":{}},"parent":{}}],["getaccountbyphone",{"_index":372,"name":{"426":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":368,"name":{"422":{}},"parent":{}}],["getaccountinfo",{"_index":344,"name":{"394":{}},"parent":{}}],["getaccountstatus",{"_index":360,"name":{"414":{}},"parent":{}}],["getaccounttypes",{"_index":377,"name":{"431":{}},"parent":{}}],["getactionbyid",{"_index":365,"name":{"419":{},"888":{}},"parent":{}}],["getactions",{"_index":364,"name":{"418":{}},"parent":{}}],["getaddresstransactions",{"_index":339,"name":{"389":{}},"parent":{}}],["getalltransactions",{"_index":338,"name":{"388":{},"880":{}},"parent":{}}],["getareanamebylocation",{"_index":297,"name":{"340":{}},"parent":{}}],["getareanames",{"_index":296,"name":{"339":{}},"parent":{}}],["getareatypebyarea",{"_index":299,"name":{"342":{}},"parent":{}}],["getareatypes",{"_index":298,"name":{"341":{}},"parent":{}}],["getbysymbol",{"_index":713,"name":{"874":{}},"parent":{}}],["getcategories",{"_index":375,"name":{"429":{}},"parent":{}}],["getcategorybyproduct",{"_index":376,"name":{"430":{}},"parent":{}}],["getchallenge",{"_index":256,"name":{"297":{}},"parent":{}}],["getencryptkeys",{"_index":203,"name":{"202":{},"229":{}},"parent":{}}],["getfingerprint",{"_index":204,"name":{"203":{},"230":{}},"parent":{}}],["getgenders",{"_index":379,"name":{"433":{}},"parent":{}}],["getinstance",{"_index":384,"name":{"438":{}},"parent":{}}],["getkeyid",{"_index":205,"name":{"204":{},"231":{}},"parent":{}}],["getkeysforid",{"_index":206,"name":{"205":{},"232":{}},"parent":{}}],["getkeystore",{"_index":286,"name":{"328":{}},"parent":{}}],["getlockedaccounts",{"_index":361,"name":{"415":{}},"parent":{}}],["getprivatekey",{"_index":207,"name":{"206":{},"233":{},"305":{}},"parent":{}}],["getprivatekeyforid",{"_index":208,"name":{"207":{},"234":{}},"parent":{}}],["getprivatekeyid",{"_index":209,"name":{"208":{},"235":{}},"parent":{}}],["getprivatekeyinfo",{"_index":263,"name":{"306":{}},"parent":{}}],["getprivatekeys",{"_index":210,"name":{"209":{},"236":{}},"parent":{}}],["getpublickeyforid",{"_index":211,"name":{"210":{},"237":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":212,"name":{"211":{},"238":{}},"parent":{}}],["getpublickeys",{"_index":213,"name":{"212":{},"239":{},"304":{}},"parent":{}}],["getpublickeysforaddress",{"_index":214,"name":{"213":{},"240":{}},"parent":{}}],["getregistry",{"_index":315,"name":{"359":{}},"parent":{}}],["getsessiontoken",{"_index":251,"name":{"292":{}},"parent":{}}],["getter",{"_index":62,"name":{"56":{}},"parent":{"57":{}}}],["gettokenbalance",{"_index":327,"name":{"375":{}},"parent":{}}],["gettokenbyaddress",{"_index":325,"name":{"373":{}},"parent":{}}],["gettokenbysymbol",{"_index":326,"name":{"374":{}},"parent":{}}],["gettokenname",{"_index":328,"name":{"376":{}},"parent":{}}],["gettokens",{"_index":324,"name":{"372":{}},"parent":{}}],["gettokensymbol",{"_index":329,"name":{"377":{}},"parent":{}}],["gettransactiontypes",{"_index":378,"name":{"432":{}},"parent":{}}],["gettrustedactivekeys",{"_index":215,"name":{"214":{},"241":{}},"parent":{}}],["gettrustedkeys",{"_index":216,"name":{"215":{},"242":{}},"parent":{}}],["gettrustedusers",{"_index":262,"name":{"303":{}},"parent":{}}],["getuser",{"_index":722,"name":{"887":{}},"parent":{}}],["getuserbyid",{"_index":721,"name":{"886":{}},"parent":{}}],["getwithtoken",{"_index":254,"name":{"295":{}},"parent":{}}],["globalerrorhandler",{"_index":55,"name":{"50":{},"901":{}},"parent":{}}],["handleerror",{"_index":58,"name":{"53":{}},"parent":{}}],["handlenetworkchange",{"_index":619,"name":{"754":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"46":{},"50":{}}}],["handler.globalerrorhandler",{"_index":56,"name":{},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{}}}],["handler.httperror",{"_index":53,"name":{},"parent":{"47":{},"48":{},"49":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":349,"name":{"399":{}},"parent":{}}],["hextovalue",{"_index":657,"name":{"798":{}},"parent":{}}],["httpconfiginterceptor",{"_index":89,"name":{"80":{},"910":{}},"parent":{}}],["httperror",{"_index":51,"name":{"46":{},"900":{}},"parent":{}}],["httpgetter",{"_index":63,"name":{"57":{},"902":{}},"parent":{}}],["iconid",{"_index":406,"name":{"462":{}},"parent":{}}],["id",{"_index":126,"name":{"119":{},"122":{},"135":{},"461":{}},"parent":{}}],["identities",{"_index":103,"name":{"95":{}},"parent":{}}],["importkeypair",{"_index":217,"name":{"216":{},"243":{}},"parent":{}}],["importprivatekey",{"_index":218,"name":{"217":{},"244":{}},"parent":{}}],["importpublickey",{"_index":219,"name":{"218":{},"245":{}},"parent":{}}],["init",{"_index":250,"name":{"291":{},"312":{},"370":{},"387":{},"412":{}},"parent":{}}],["intercept",{"_index":69,"name":{"62":{},"78":{},"82":{},"87":{}},"parent":{}}],["isdialogopen",{"_index":279,"name":{"321":{}},"parent":{}}],["isencryptedprivatekey",{"_index":220,"name":{"219":{},"246":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":221,"name":{"220":{},"247":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"parent":{}}],["key",{"_index":198,"name":{"199":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{}}}],["keyform",{"_index":414,"name":{"470":{}},"parent":{}}],["keyformstub",{"_index":417,"name":{"475":{}},"parent":{}}],["keystore",{"_index":233,"name":{"259":{},"400":{}},"parent":{}}],["keystoreservice",{"_index":284,"name":{"326":{},"941":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":109,"name":{"101":{}},"parent":{}}],["link",{"_index":694,"name":{"858":{}},"parent":{"859":{},"860":{},"861":{},"862":{},"863":{}}}],["linkparams",{"_index":698,"name":{"861":{}},"parent":{}}],["load",{"_index":322,"name":{"369":{}},"parent":{}}],["loadaccounts",{"_index":370,"name":{"424":{}},"parent":{}}],["loading",{"_index":416,"name":{"472":{}},"parent":{}}],["loadkeyring",{"_index":222,"name":{"221":{},"248":{}},"parent":{}}],["location",{"_index":111,"name":{"103":{}},"parent":{}}],["locationservice",{"_index":288,"name":{"331":{},"937":{}},"parent":{}}],["logerror",{"_index":60,"name":{"55":{}},"parent":{}}],["logginginterceptor",{"_index":93,"name":{"85":{},"911":{}},"parent":{}}],["loggingservice",{"_index":234,"name":{"260":{},"344":{},"938":{}},"parent":{}}],["loggingurl",{"_index":666,"name":{"807":{},"823":{},"839":{}},"parent":{}}],["login",{"_index":257,"name":{"298":{},"477":{}},"parent":{}}],["loginview",{"_index":258,"name":{"299":{}},"parent":{}}],["loglevel",{"_index":664,"name":{"805":{},"821":{},"837":{}},"parent":{}}],["logout",{"_index":260,"name":{"301":{},"647":{}},"parent":{}}],["longitude",{"_index":110,"name":{"102":{}},"parent":{}}],["m",{"_index":130,"name":{"123":{}},"parent":{}}],["main",{"_index":681,"name":{"848":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"473":{},"513":{},"544":{},"581":{},"627":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":393,"name":{"449":{}},"parent":{}}],["menuselectiondirective",{"_index":586,"name":{"721":{}},"parent":{}}],["menutoggledirective",{"_index":589,"name":{"725":{}},"parent":{}}],["message",{"_index":653,"name":{"794":{}},"parent":{}}],["meta",{"_index":123,"name":{"117":{},"913":{}},"parent":{}}],["metaresponse",{"_index":128,"name":{"121":{},"914":{}},"parent":{}}],["mockbackendinterceptor",{"_index":67,"name":{"60":{},"903":{}},"parent":{}}],["mockbackendprovider",{"_index":70,"name":{"63":{},"904":{}},"parent":{}}],["module",{"_index":702,"name":{"864":{}},"parent":{"865":{},"866":{},"867":{},"868":{},"869":{},"870":{}}}],["multi",{"_index":75,"name":{"67":{}},"parent":{}}],["mutablekeystore",{"_index":200,"name":{"200":{},"287":{},"327":{},"926":{}},"parent":{}}],["mutablepgpkeystore",{"_index":227,"name":{"226":{},"927":{}},"parent":{}}],["n",{"_index":120,"name":{"114":{}},"parent":{}}],["name",{"_index":155,"name":{"152":{},"159":{},"196":{}},"parent":{}}],["namesearchform",{"_index":467,"name":{"535":{}},"parent":{}}],["namesearchformstub",{"_index":476,"name":{"546":{}},"parent":{}}],["namesearchloading",{"_index":469,"name":{"537":{}},"parent":{}}],["namesearchsubmitted",{"_index":468,"name":{"536":{}},"parent":{}}],["navigatedto",{"_index":699,"name":{"862":{}},"parent":{}}],["networkstatuscomponent",{"_index":616,"name":{"750":{}},"parent":{}}],["newevent",{"_index":272,"name":{"315":{}},"parent":{}}],["ngafterviewinit",{"_index":580,"name":{"715":{}},"parent":{}}],["ngoninit",{"_index":394,"name":{"450":{},"474":{},"520":{},"545":{},"568":{},"587":{},"602":{},"628":{},"644":{},"656":{},"670":{},"687":{},"711":{},"748":{},"753":{},"761":{},"765":{}},"parent":{}}],["nointernetconnection",{"_index":618,"name":{"752":{}},"parent":{}}],["nonce",{"_index":637,"name":{"775":{}},"parent":{}}],["oldchain:1",{"_index":108,"name":{"100":{}},"parent":{}}],["onaddresssearch",{"_index":481,"name":{"551":{}},"parent":{}}],["onclick",{"_index":700,"name":{"863":{}},"parent":{}}],["onmenuselect",{"_index":588,"name":{"723":{}},"parent":{}}],["onmenutoggle",{"_index":591,"name":{"727":{}},"parent":{}}],["onnamesearch",{"_index":479,"name":{"549":{}},"parent":{}}],["onphonesearch",{"_index":480,"name":{"550":{}},"parent":{}}],["onresize",{"_index":395,"name":{"451":{}},"parent":{}}],["onsign",{"_index":235,"name":{"261":{},"279":{}},"parent":{}}],["onsubmit",{"_index":418,"name":{"476":{},"589":{},"630":{}},"parent":{}}],["onverify",{"_index":236,"name":{"263":{},"280":{}},"parent":{}}],["opendialog",{"_index":281,"name":{"323":{}},"parent":{}}],["organizationcomponent",{"_index":529,"name":{"623":{}},"parent":{}}],["organizationform",{"_index":531,"name":{"625":{}},"parent":{}}],["organizationformstub",{"_index":532,"name":{"629":{}},"parent":{}}],["owner",{"_index":163,"name":{"160":{}},"parent":{}}],["pagescomponent",{"_index":522,"name":{"616":{}},"parent":{}}],["pagesizeoptions",{"_index":491,"name":{"562":{},"703":{}},"parent":{}}],["pagesmodule",{"_index":526,"name":{"620":{}},"parent":{}}],["pagesroutingmodule",{"_index":519,"name":{"613":{}},"parent":{}}],["paginator",{"_index":492,"name":{"566":{},"600":{},"642":{},"666":{},"709":{}},"parent":{}}],["parammap",{"_index":690,"name":{"855":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":404,"name":{"459":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":80,"name":{"71":{},"906":{}},"parent":{}}],["pgpsigner",{"_index":230,"name":{"254":{},"928":{}},"parent":{}}],["phonesearchform",{"_index":470,"name":{"538":{}},"parent":{}}],["phonesearchformstub",{"_index":477,"name":{"547":{}},"parent":{}}],["phonesearchloading",{"_index":472,"name":{"540":{}},"parent":{}}],["phonesearchsubmitted",{"_index":471,"name":{"539":{}},"parent":{}}],["polyfills",{"_index":682,"name":{"849":{}},"parent":{}}],["prepare",{"_index":238,"name":{"267":{},"281":{}},"parent":{}}],["production",{"_index":661,"name":{"803":{},"819":{},"835":{}},"parent":{}}],["products",{"_index":115,"name":{"108":{}},"parent":{}}],["provide",{"_index":72,"name":{"65":{}},"parent":{}}],["provider",{"_index":150,"name":{"147":{}},"parent":{}}],["publickeysurl",{"_index":668,"name":{"809":{},"825":{},"841":{}},"parent":{}}],["r",{"_index":641,"name":{"782":{}},"parent":{}}],["ratio.pipe",{"_index":597,"name":{"732":{}},"parent":{"733":{}}}],["ratio.pipe.tokenratiopipe",{"_index":599,"name":{},"parent":{"734":{},"735":{}}}],["readcsv",{"_index":77,"name":{"69":{},"905":{}},"parent":{}}],["readystate",{"_index":269,"name":{"311":{},"448":{}},"parent":{}}],["readystateprocessor",{"_index":271,"name":{"314":{}},"parent":{}}],["readystatetarget",{"_index":268,"name":{"310":{},"447":{}},"parent":{}}],["recipient",{"_index":184,"name":{"181":{}},"parent":{}}],["recipientbloxberglink",{"_index":565,"name":{"683":{}},"parent":{}}],["refreshpaginator",{"_index":495,"name":{"572":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"141":{},"358":{},"364":{},"386":{},"402":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":672,"name":{"813":{},"829":{},"845":{}},"parent":{}}],["registryservice",{"_index":312,"name":{"356":{},"942":{}},"parent":{}}],["rejectbody",{"_index":50,"name":{"45":{},"899":{}},"parent":{}}],["removekeysforid",{"_index":223,"name":{"222":{},"249":{}},"parent":{}}],["removepublickey",{"_index":224,"name":{"223":{},"250":{}},"parent":{}}],["removepublickeyforid",{"_index":225,"name":{"224":{},"251":{}},"parent":{}}],["reserveratio",{"_index":164,"name":{"161":{}},"parent":{}}],["reserves",{"_index":165,"name":{"162":{}},"parent":{}}],["resetaccountslist",{"_index":373,"name":{"427":{}},"parent":{}}],["resetpin",{"_index":359,"name":{"413":{},"529":{}},"parent":{}}],["resettransactionslist",{"_index":343,"name":{"393":{}},"parent":{}}],["reversetransaction",{"_index":571,"name":{"691":{}},"parent":{}}],["revokeaction",{"_index":367,"name":{"421":{}},"parent":{}}],["role",{"_index":141,"name":{"136":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"893":{}},"parent":{}}],["route",{"_index":685,"name":{"851":{}},"parent":{"852":{},"853":{},"854":{},"855":{},"856":{}}}],["routerlinkdirectivestub",{"_index":696,"name":{"859":{},"945":{}},"parent":{}}],["routing.module",{"_index":386,"name":{"440":{},"464":{},"552":{},"590":{},"612":{},"631":{},"658":{},"694":{}},"parent":{"441":{},"465":{},"553":{},"591":{},"613":{},"632":{},"659":{},"695":{}}}],["routing.module.accountsroutingmodule",{"_index":484,"name":{},"parent":{"554":{}}}],["routing.module.adminroutingmodule",{"_index":508,"name":{},"parent":{"592":{}}}],["routing.module.approutingmodule",{"_index":388,"name":{},"parent":{"442":{}}}],["routing.module.authroutingmodule",{"_index":410,"name":{},"parent":{"466":{}}}],["routing.module.pagesroutingmodule",{"_index":520,"name":{},"parent":{"614":{}}}],["routing.module.settingsroutingmodule",{"_index":535,"name":{},"parent":{"633":{}}}],["routing.module.tokensroutingmodule",{"_index":551,"name":{},"parent":{"660":{}}}],["routing.module.transactionsroutingmodule",{"_index":574,"name":{},"parent":{"696":{}}}],["s",{"_index":642,"name":{"783":{}},"parent":{}}],["safepipe",{"_index":593,"name":{"729":{}},"parent":{}}],["saveinfo",{"_index":458,"name":{"526":{}},"parent":{}}],["scan",{"_index":273,"name":{"316":{}},"parent":{}}],["scanfilter",{"_index":146,"name":{"142":{}},"parent":{}}],["search.component",{"_index":464,"name":{"532":{}},"parent":{"533":{}}}],["search.component.accountsearchcomponent",{"_index":466,"name":{},"parent":{"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{}}}],["search/account",{"_index":463,"name":{"532":{}},"parent":{"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{}}}],["searchaccountbyname",{"_index":374,"name":{"428":{}},"parent":{}}],["selection.directive",{"_index":585,"name":{"720":{}},"parent":{"721":{}}}],["selection.directive.menuselectiondirective",{"_index":587,"name":{},"parent":{"722":{},"723":{}}}],["senddebuglevelmessage",{"_index":305,"name":{"349":{}},"parent":{}}],["sender",{"_index":185,"name":{"182":{}},"parent":{}}],["senderbloxberglink",{"_index":564,"name":{"682":{}},"parent":{}}],["senderrorlevelmessage",{"_index":309,"name":{"353":{}},"parent":{}}],["sendfatallevelmessage",{"_index":310,"name":{"354":{}},"parent":{}}],["sendinfolevelmessage",{"_index":306,"name":{"350":{}},"parent":{}}],["sendloglevelmessage",{"_index":307,"name":{"351":{}},"parent":{}}],["sendsignedchallenge",{"_index":255,"name":{"296":{}},"parent":{}}],["sendtracelevelmessage",{"_index":304,"name":{"348":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":308,"name":{"352":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":57,"name":{"52":{}},"parent":{}}],["serializebytes",{"_index":650,"name":{"791":{}},"parent":{}}],["serializenumber",{"_index":648,"name":{"789":{}},"parent":{}}],["serializerlp",{"_index":652,"name":{"793":{}},"parent":{}}],["serverloglevel",{"_index":665,"name":{"806":{},"822":{},"838":{}},"parent":{}}],["service",{"_index":710,"name":{"871":{},"875":{},"881":{}},"parent":{"872":{},"873":{},"874":{},"876":{},"877":{},"878":{},"879":{},"880":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{}}}],["setconversion",{"_index":341,"name":{"391":{},"879":{}},"parent":{}}],["setkey",{"_index":259,"name":{"300":{}},"parent":{}}],["setparammap",{"_index":691,"name":{"856":{}},"parent":{}}],["setsessiontoken",{"_index":252,"name":{"293":{}},"parent":{}}],["setsignature",{"_index":654,"name":{"795":{}},"parent":{}}],["setstate",{"_index":253,"name":{"294":{}},"parent":{}}],["settings",{"_index":144,"name":{"139":{},"918":{}},"parent":{}}],["settingscomponent",{"_index":537,"name":{"635":{}},"parent":{}}],["settingsmodule",{"_index":541,"name":{"649":{}},"parent":{}}],["settingsroutingmodule",{"_index":534,"name":{"632":{}},"parent":{}}],["settransaction",{"_index":340,"name":{"390":{},"878":{}},"parent":{}}],["sharedmodule",{"_index":621,"name":{"756":{}},"parent":{}}],["sidebarcomponent",{"_index":624,"name":{"759":{}},"parent":{}}],["sidebarstubcomponent",{"_index":703,"name":{"865":{},"946":{}},"parent":{}}],["sign",{"_index":226,"name":{"225":{},"252":{},"268":{},"282":{}},"parent":{}}],["signable",{"_index":240,"name":{"270":{},"929":{}},"parent":{}}],["signature",{"_index":127,"name":{"120":{},"124":{},"265":{},"272":{},"915":{},"930":{}},"parent":{}}],["signer",{"_index":229,"name":{"253":{},"277":{},"401":{},"931":{}},"parent":{"254":{},"270":{},"272":{},"277":{}}}],["signer.pgpsigner",{"_index":231,"name":{},"parent":{"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"271":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"273":{},"274":{},"275":{},"276":{}}}],["signer.signer",{"_index":243,"name":{},"parent":{"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":493,"name":{"567":{},"601":{},"643":{},"667":{},"710":{}},"parent":{}}],["sourcetoken",{"_index":177,"name":{"174":{}},"parent":{}}],["staff",{"_index":152,"name":{"149":{},"920":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":54,"name":{"49":{}},"parent":{}}],["status.component",{"_index":615,"name":{"749":{}},"parent":{"750":{}}}],["status.component.networkstatuscomponent",{"_index":617,"name":{},"parent":{"751":{},"752":{},"753":{},"754":{}}}],["status/network",{"_index":614,"name":{"749":{}},"parent":{"750":{},"751":{},"752":{},"753":{},"754":{}}}],["store",{"_index":199,"name":{"199":{}},"parent":{"200":{},"226":{}}}],["store.mutablekeystore",{"_index":202,"name":{},"parent":{"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{}}}],["store.mutablepgpkeystore",{"_index":228,"name":{},"parent":{"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":{}}}],["stringtovalue",{"_index":656,"name":{"797":{}},"parent":{}}],["strip0x",{"_index":632,"name":{"769":{}},"parent":{}}],["stub",{"_index":686,"name":{"851":{},"858":{},"864":{},"871":{},"875":{},"881":{}},"parent":{"852":{},"859":{},"865":{},"867":{},"869":{},"872":{},"876":{},"882":{}}}],["stub.activatedroutestub",{"_index":688,"name":{},"parent":{"853":{},"854":{},"855":{},"856":{}}}],["stub.footerstubcomponent",{"_index":708,"name":{},"parent":{"870":{}}}],["stub.routerlinkdirectivestub",{"_index":697,"name":{},"parent":{"860":{},"861":{},"862":{},"863":{}}}],["stub.sidebarstubcomponent",{"_index":704,"name":{},"parent":{"866":{}}}],["stub.tokenservicestub",{"_index":712,"name":{},"parent":{"873":{},"874":{}}}],["stub.topbarstubcomponent",{"_index":706,"name":{},"parent":{"868":{}}}],["stub.transactionservicestub",{"_index":716,"name":{},"parent":{"877":{},"878":{},"879":{},"880":{}}}],["stub.userservicestub",{"_index":719,"name":{},"parent":{"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{}}}],["subject",{"_index":689,"name":{"854":{}},"parent":{}}],["submitted",{"_index":415,"name":{"471":{},"514":{},"582":{},"626":{}},"parent":{}}],["success",{"_index":190,"name":{"190":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":170,"name":{"168":{}},"parent":{}}],["switchwindows",{"_index":419,"name":{"478":{}},"parent":{}}],["symbol",{"_index":171,"name":{"169":{},"197":{}},"parent":{}}],["sync.service",{"_index":265,"name":{"307":{}},"parent":{"308":{}}}],["sync.service.blocksyncservice",{"_index":267,"name":{},"parent":{"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{}}}],["tag",{"_index":156,"name":{"153":{}},"parent":{}}],["tel",{"_index":121,"name":{"115":{}},"parent":{}}],["test",{"_index":683,"name":{"850":{}},"parent":{}}],["testing",{"_index":692,"name":{"857":{}},"parent":{"944":{},"945":{},"946":{},"947":{},"948":{},"949":{},"950":{},"951":{}}}],["testing/activated",{"_index":684,"name":{"851":{}},"parent":{"852":{},"853":{},"854":{},"855":{},"856":{}}}],["testing/router",{"_index":693,"name":{"858":{}},"parent":{"859":{},"860":{},"861":{},"862":{},"863":{}}}],["testing/shared",{"_index":701,"name":{"864":{}},"parent":{"865":{},"866":{},"867":{},"868":{},"869":{},"870":{}}}],["testing/token",{"_index":709,"name":{"871":{}},"parent":{"872":{},"873":{},"874":{}}}],["testing/transaction",{"_index":714,"name":{"875":{}},"parent":{"876":{},"877":{},"878":{},"879":{},"880":{}}}],["testing/user",{"_index":717,"name":{"881":{}},"parent":{"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{}}}],["timestamp",{"_index":191,"name":{"191":{}},"parent":{}}],["title",{"_index":392,"name":{"446":{}},"parent":{}}],["to",{"_index":186,"name":{"183":{},"778":{}},"parent":{}}],["toggle.directive",{"_index":403,"name":{"458":{},"724":{}},"parent":{"459":{},"725":{}}}],["toggle.directive.menutoggledirective",{"_index":590,"name":{},"parent":{"726":{},"727":{}}}],["toggle.directive.passwordtoggledirective",{"_index":405,"name":{},"parent":{"460":{},"461":{},"462":{},"463":{}}}],["toggledisplay",{"_index":420,"name":{"479":{}},"parent":{}}],["togglepasswordvisibility",{"_index":407,"name":{"463":{}},"parent":{}}],["tohex",{"_index":631,"name":{"768":{}},"parent":{}}],["token",{"_index":159,"name":{"156":{},"184":{},"654":{},"669":{},"921":{}},"parent":{}}],["tokendetailscomponent",{"_index":545,"name":{"652":{}},"parent":{}}],["tokenname",{"_index":567,"name":{"685":{}},"parent":{}}],["tokenratiopipe",{"_index":598,"name":{"733":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"365":{},"891":{}},"parent":{}}],["tokens",{"_index":319,"name":{"366":{},"668":{}},"parent":{}}],["tokenscomponent",{"_index":553,"name":{"662":{}},"parent":{}}],["tokenservice",{"_index":317,"name":{"362":{},"935":{}},"parent":{}}],["tokenservicestub",{"_index":711,"name":{"872":{},"950":{}},"parent":{}}],["tokenslist",{"_index":320,"name":{"367":{}},"parent":{}}],["tokensmodule",{"_index":558,"name":{"675":{}},"parent":{}}],["tokensroutingmodule",{"_index":550,"name":{"659":{}},"parent":{}}],["tokenssubject",{"_index":321,"name":{"368":{}},"parent":{}}],["tokensymbol",{"_index":451,"name":{"516":{},"565":{},"686":{},"708":{}},"parent":{}}],["topbarcomponent",{"_index":627,"name":{"763":{}},"parent":{}}],["topbarstubcomponent",{"_index":705,"name":{"867":{},"947":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":178,"name":{"175":{},"799":{}},"parent":{}}],["trader",{"_index":179,"name":{"176":{}},"parent":{}}],["traderbloxberglink",{"_index":566,"name":{"684":{}},"parent":{}}],["transaction",{"_index":181,"name":{"179":{},"507":{},"680":{},"705":{},"923":{}},"parent":{}}],["transactiondatasource",{"_index":578,"name":{"700":{}},"parent":{}}],["transactiondetailscomponent",{"_index":562,"name":{"678":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":579,"name":{"701":{}},"parent":{}}],["transactionlist",{"_index":334,"name":{"382":{}},"parent":{}}],["transactions",{"_index":333,"name":{"381":{},"508":{},"704":{}},"parent":{}}],["transactionscomponent",{"_index":576,"name":{"698":{}},"parent":{}}],["transactionsdatasource",{"_index":429,"name":{"486":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":431,"name":{"488":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":430,"name":{"487":{}},"parent":{}}],["transactionservice",{"_index":331,"name":{"379":{},"933":{}},"parent":{}}],["transactionservicestub",{"_index":715,"name":{"876":{},"951":{}},"parent":{}}],["transactionsmodule",{"_index":582,"name":{"718":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":432,"name":{"489":{}},"parent":{}}],["transactionsroutingmodule",{"_index":573,"name":{"695":{}},"parent":{}}],["transactionssubject",{"_index":335,"name":{"383":{}},"parent":{}}],["transactionstype",{"_index":446,"name":{"509":{},"706":{}},"parent":{}}],["transactionstypes",{"_index":448,"name":{"511":{},"707":{}},"parent":{}}],["transactiontablepaginator",{"_index":433,"name":{"490":{}},"parent":{}}],["transactiontablesort",{"_index":434,"name":{"491":{}},"parent":{}}],["transferrequest",{"_index":345,"name":{"395":{}},"parent":{}}],["transform",{"_index":595,"name":{"731":{},"735":{},"739":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":673,"name":{"814":{},"830":{},"846":{}},"parent":{}}],["trustedusers",{"_index":247,"name":{"288":{},"640":{}},"parent":{}}],["trusteduserslist",{"_index":248,"name":{"289":{}},"parent":{}}],["trusteduserssubject",{"_index":249,"name":{"290":{}},"parent":{}}],["tx",{"_index":180,"name":{"177":{},"185":{},"188":{},"773":{},"924":{},"943":{}},"parent":{}}],["txhash",{"_index":192,"name":{"192":{}},"parent":{}}],["txhelper",{"_index":147,"name":{"143":{}},"parent":{}}],["txindex",{"_index":193,"name":{"193":{}},"parent":{}}],["txtoken",{"_index":194,"name":{"194":{},"925":{}},"parent":{}}],["type",{"_index":116,"name":{"109":{},"186":{}},"parent":{}}],["unixdatepipe",{"_index":602,"name":{"737":{}},"parent":{}}],["updatemeta",{"_index":363,"name":{"417":{}},"parent":{}}],["updatesyncable",{"_index":83,"name":{"74":{},"908":{}},"parent":{}}],["url",{"_index":524,"name":{"618":{}},"parent":{}}],["useclass",{"_index":74,"name":{"66":{}},"parent":{}}],["user",{"_index":142,"name":{"137":{},"178":{}},"parent":{}}],["userdatasource",{"_index":435,"name":{"492":{}},"parent":{}}],["userdisplayedcolumns",{"_index":436,"name":{"493":{}},"parent":{}}],["userid",{"_index":157,"name":{"154":{}},"parent":{}}],["userinfo",{"_index":336,"name":{"384":{},"641":{}},"parent":{}}],["users",{"_index":720,"name":{"884":{}},"parent":{}}],["usersdefaultpagesize",{"_index":437,"name":{"494":{}},"parent":{}}],["userservice",{"_index":347,"name":{"397":{},"934":{}},"parent":{}}],["userservicestub",{"_index":718,"name":{"882":{},"949":{}},"parent":{}}],["userspagesizeoptions",{"_index":438,"name":{"495":{}},"parent":{}}],["usertablepaginator",{"_index":439,"name":{"496":{}},"parent":{}}],["usertablesort",{"_index":440,"name":{"497":{}},"parent":{}}],["v",{"_index":640,"name":{"781":{}},"parent":{}}],["validation",{"_index":79,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["value",{"_index":187,"name":{"187":{},"779":{}},"parent":{}}],["vcard",{"_index":117,"name":{"110":{}},"parent":{}}],["vcardvalidation",{"_index":81,"name":{"72":{},"907":{}},"parent":{}}],["verify",{"_index":239,"name":{"269":{},"283":{}},"parent":{}}],["version",{"_index":122,"name":{"116":{}},"parent":{}}],["viewaccount",{"_index":456,"name":{"524":{},"570":{}},"parent":{}}],["viewrecipient",{"_index":569,"name":{"689":{}},"parent":{}}],["viewsender",{"_index":568,"name":{"688":{}},"parent":{}}],["viewtoken",{"_index":556,"name":{"672":{}},"parent":{}}],["viewtrader",{"_index":570,"name":{"690":{}},"parent":{}}],["viewtransaction",{"_index":455,"name":{"523":{},"712":{}},"parent":{}}],["w3",{"_index":148,"name":{"144":{},"145":{},"919":{}},"parent":{}}],["web3",{"_index":337,"name":{"385":{},"437":{}},"parent":{}}],["web3provider",{"_index":670,"name":{"811":{},"827":{},"843":{}},"parent":{}}],["web3service",{"_index":382,"name":{"436":{},"940":{}},"parent":{}}],["weight",{"_index":168,"name":{"166":{}},"parent":{}}],["wrap",{"_index":369,"name":{"423":{}},"parent":{}}],["write",{"_index":649,"name":{"790":{}},"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","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":64,"name":"rejectBody","url":"modules/app__helpers_global_error_handler.html#rejectbody","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"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":47,"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":48,"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":49,"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":50,"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":51,"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":52,"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":53,"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":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":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":56,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":57,"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":58,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":59,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":60,"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":61,"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":62,"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":63,"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":64,"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":65,"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":66,"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":67,"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":68,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":69,"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":70,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":71,"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":72,"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":73,"kind":1,"name":"app/_helpers/sync","url":"modules/app__helpers_sync.html","classes":"tsd-kind-module"},{"id":74,"kind":64,"name":"updateSyncable","url":"modules/app__helpers_sync.html#updatesyncable","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/sync"},{"id":75,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":76,"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":77,"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":78,"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":79,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":80,"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":81,"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":82,"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":83,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":84,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":85,"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":86,"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":87,"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":88,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":89,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":90,"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":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":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"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":94,"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":95,"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":96,"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":97,"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":98,"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":99,"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":100,"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":101,"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":102,"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":103,"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":104,"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":105,"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":106,"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":107,"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":108,"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":109,"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":110,"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":111,"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":112,"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":113,"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":114,"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":115,"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":116,"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":117,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":118,"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":119,"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":120,"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":121,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":122,"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":123,"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":124,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":125,"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":126,"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":127,"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":128,"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":129,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":130,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":131,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":132,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"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":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":136,"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":137,"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":138,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":139,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":140,"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":141,"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":142,"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":143,"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":144,"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":145,"kind":256,"name":"W3","url":"interfaces/app__models_settings.w3.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":1024,"name":"engine","url":"interfaces/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":147,"kind":1024,"name":"provider","url":"interfaces/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":148,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":149,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":150,"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":151,"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":152,"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":153,"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":154,"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":155,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":157,"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":158,"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":159,"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":160,"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":161,"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":162,"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":163,"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":164,"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":165,"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":166,"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":167,"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":168,"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":169,"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":170,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":171,"kind":256,"name":"Conversion","url":"interfaces/app__models_transaction.conversion.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":172,"kind":1024,"name":"destinationToken","url":"interfaces/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":173,"kind":1024,"name":"fromValue","url":"interfaces/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":174,"kind":1024,"name":"sourceToken","url":"interfaces/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":175,"kind":1024,"name":"toValue","url":"interfaces/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":176,"kind":1024,"name":"trader","url":"interfaces/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":177,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":178,"kind":1024,"name":"user","url":"interfaces/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":179,"kind":256,"name":"Transaction","url":"interfaces/app__models_transaction.transaction.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":180,"kind":1024,"name":"from","url":"interfaces/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":181,"kind":1024,"name":"recipient","url":"interfaces/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":182,"kind":1024,"name":"sender","url":"interfaces/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":183,"kind":1024,"name":"to","url":"interfaces/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":184,"kind":1024,"name":"token","url":"interfaces/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":185,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":186,"kind":1024,"name":"type","url":"interfaces/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":187,"kind":1024,"name":"value","url":"interfaces/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":188,"kind":256,"name":"Tx","url":"interfaces/app__models_transaction.tx.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":189,"kind":1024,"name":"block","url":"interfaces/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":190,"kind":1024,"name":"success","url":"interfaces/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":191,"kind":1024,"name":"timestamp","url":"interfaces/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"txHash","url":"interfaces/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"txIndex","url":"interfaces/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":194,"kind":256,"name":"TxToken","url":"interfaces/app__models_transaction.txtoken.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":195,"kind":1024,"name":"address","url":"interfaces/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":196,"kind":1024,"name":"name","url":"interfaces/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":197,"kind":1024,"name":"symbol","url":"interfaces/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":198,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":199,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":200,"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":201,"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":202,"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":203,"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":204,"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":205,"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":206,"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":207,"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":208,"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":209,"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":210,"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":211,"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":212,"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":213,"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":214,"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":215,"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":216,"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":217,"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":218,"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":219,"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":220,"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":221,"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":222,"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":223,"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":224,"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":225,"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":226,"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":227,"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":228,"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":229,"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":230,"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":231,"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":232,"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":233,"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":234,"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":235,"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":236,"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":237,"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":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":"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":240,"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":241,"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":242,"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":243,"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":244,"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":245,"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":246,"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":247,"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":248,"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":249,"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":250,"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":251,"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":252,"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":253,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":254,"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":255,"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":256,"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":257,"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":258,"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":259,"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":260,"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":261,"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":262,"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":263,"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":264,"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":265,"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":266,"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":267,"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":268,"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":269,"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":270,"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":271,"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":272,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":274,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":275,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":277,"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":278,"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":279,"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":280,"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":281,"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":282,"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":283,"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":284,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":285,"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":286,"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":287,"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":288,"kind":1024,"name":"trustedUsers","url":"classes/app__services_auth_service.authservice.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":289,"kind":1024,"name":"trustedUsersList","url":"classes/app__services_auth_service.authservice.html#trusteduserslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/auth.service.AuthService"},{"id":290,"kind":1024,"name":"trustedUsersSubject","url":"classes/app__services_auth_service.authservice.html#trusteduserssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":291,"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":292,"kind":2048,"name":"getSessionToken","url":"classes/app__services_auth_service.authservice.html#getsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":293,"kind":2048,"name":"setSessionToken","url":"classes/app__services_auth_service.authservice.html#setsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":294,"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":295,"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":296,"kind":2048,"name":"sendSignedChallenge","url":"classes/app__services_auth_service.authservice.html#sendsignedchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":297,"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":298,"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":299,"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":300,"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":301,"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":302,"kind":2048,"name":"addTrustedUser","url":"classes/app__services_auth_service.authservice.html#addtrusteduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":303,"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":304,"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":305,"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":306,"kind":2048,"name":"getPrivateKeyInfo","url":"classes/app__services_auth_service.authservice.html#getprivatekeyinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":308,"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":309,"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":310,"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":311,"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":312,"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":313,"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":314,"kind":2048,"name":"newEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":315,"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":316,"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":317,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":318,"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":319,"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":320,"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":321,"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":322,"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":323,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":324,"kind":1,"name":"app/_services/keystore.service","url":"modules/app__services_keystore_service.html","classes":"tsd-kind-module"},{"id":325,"kind":128,"name":"KeystoreService","url":"classes/app__services_keystore_service.keystoreservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/keystore.service"},{"id":326,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_keystore_service.keystoreservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":327,"kind":2048,"name":"getKeystore","url":"classes/app__services_keystore_service.keystoreservice.html#getkeystore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":328,"kind":512,"name":"constructor","url":"classes/app__services_keystore_service.keystoreservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/keystore.service.KeystoreService"},{"id":329,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":330,"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":331,"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":332,"kind":1024,"name":"areaNames","url":"classes/app__services_location_service.locationservice.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":333,"kind":1024,"name":"areaNamesList","url":"classes/app__services_location_service.locationservice.html#areanameslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":334,"kind":1024,"name":"areaNamesSubject","url":"classes/app__services_location_service.locationservice.html#areanamessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":335,"kind":1024,"name":"areaTypes","url":"classes/app__services_location_service.locationservice.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":336,"kind":1024,"name":"areaTypesList","url":"classes/app__services_location_service.locationservice.html#areatypeslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":337,"kind":1024,"name":"areaTypesSubject","url":"classes/app__services_location_service.locationservice.html#areatypessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":338,"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":339,"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":340,"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":341,"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":342,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":343,"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":344,"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":345,"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":346,"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":347,"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":348,"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":349,"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":350,"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":351,"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":352,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":353,"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":354,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":355,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":356,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_registry_service.registryservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":357,"kind":1024,"name":"accountRegistry","url":"classes/app__services_registry_service.registryservice.html#accountregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":358,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":359,"kind":2048,"name":"getTokenRegistry","url":"classes/app__services_registry_service.registryservice.html#gettokenregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":360,"kind":2048,"name":"getAccountRegistry","url":"classes/app__services_registry_service.registryservice.html#getaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"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":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":363,"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":364,"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":365,"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":366,"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":367,"kind":1024,"name":"tokens","url":"classes/app__services_token_service.tokenservice.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":368,"kind":1024,"name":"tokensList","url":"classes/app__services_token_service.tokenservice.html#tokenslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/token.service.TokenService"},{"id":369,"kind":1024,"name":"tokensSubject","url":"classes/app__services_token_service.tokenservice.html#tokenssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":1024,"name":"load","url":"classes/app__services_token_service.tokenservice.html#load","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":2048,"name":"init","url":"classes/app__services_token_service.tokenservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"kind":2048,"name":"addToken","url":"classes/app__services_token_service.tokenservice.html#addtoken","classes":"tsd-kind-method 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":"getTokenByAddress","url":"classes/app__services_token_service.tokenservice.html#gettokenbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":375,"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":376,"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":377,"kind":2048,"name":"getTokenName","url":"classes/app__services_token_service.tokenservice.html#gettokenname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":378,"kind":2048,"name":"getTokenSymbol","url":"classes/app__services_token_service.tokenservice.html#gettokensymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":379,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":380,"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":381,"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":382,"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":383,"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":384,"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":385,"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":386,"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":387,"kind":2048,"name":"init","url":"classes/app__services_transaction_service.transactionservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"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":389,"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":390,"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":391,"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":392,"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":393,"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":394,"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":395,"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":396,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":397,"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":398,"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":399,"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":400,"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":401,"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":402,"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":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"kind":1024,"name":"categories","url":"classes/app__services_user_service.userservice.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":1024,"name":"categoriesList","url":"classes/app__services_user_service.userservice.html#categorieslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":411,"kind":1024,"name":"categoriesSubject","url":"classes/app__services_user_service.userservice.html#categoriessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"init","url":"classes/app__services_user_service.userservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"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":414,"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":415,"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":416,"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":417,"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":418,"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":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"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":428,"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":429,"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":430,"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":431,"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":432,"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":433,"kind":2048,"name":"addAccount","url":"classes/app__services_user_service.userservice.html#addaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":434,"kind":1,"name":"app/_services/web3.service","url":"modules/app__services_web3_service.html","classes":"tsd-kind-module"},{"id":435,"kind":128,"name":"Web3Service","url":"classes/app__services_web3_service.web3service.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/web3.service"},{"id":436,"kind":1024,"name":"web3","url":"classes/app__services_web3_service.web3service.html#web3","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":437,"kind":2048,"name":"getInstance","url":"classes/app__services_web3_service.web3service.html#getinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":438,"kind":512,"name":"constructor","url":"classes/app__services_web3_service.web3service.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/web3.service.Web3Service"},{"id":439,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":440,"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":441,"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":442,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":443,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":444,"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":445,"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":446,"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":447,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":448,"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":449,"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":450,"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":451,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":452,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":453,"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":454,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":455,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":456,"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":457,"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":458,"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":459,"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":460,"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":461,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":462,"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":463,"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":464,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":465,"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":466,"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":467,"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":468,"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":469,"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":470,"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":471,"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":472,"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":473,"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":474,"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":475,"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":476,"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":477,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":478,"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":479,"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":480,"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":481,"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":482,"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":483,"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":484,"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":485,"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":486,"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":487,"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":488,"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":489,"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":490,"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":491,"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":492,"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":493,"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":494,"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":495,"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":496,"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":497,"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":498,"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":499,"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":500,"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":501,"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":502,"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":503,"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":504,"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":505,"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":506,"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":507,"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":508,"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":509,"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":510,"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":511,"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":512,"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":513,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":514,"kind":1024,"name":"category","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":515,"kind":1024,"name":"area","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":516,"kind":1024,"name":"areaType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":517,"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":518,"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":519,"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":520,"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":521,"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":522,"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":523,"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":524,"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":525,"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":526,"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":527,"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":528,"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":529,"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":530,"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":531,"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":532,"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":533,"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":534,"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":535,"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":536,"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":537,"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":538,"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":539,"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":540,"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":541,"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":542,"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":543,"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":544,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":545,"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":546,"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":547,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":548,"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":549,"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":550,"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":551,"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":552,"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":553,"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":554,"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":555,"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":556,"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":557,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":558,"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":559,"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":560,"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":561,"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":562,"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":563,"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":564,"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":565,"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":566,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":567,"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":568,"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":569,"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":570,"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":571,"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":572,"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":573,"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":574,"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":575,"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":576,"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":577,"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":578,"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":579,"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":580,"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":581,"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":582,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":583,"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":584,"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":585,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":586,"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":587,"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":588,"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":589,"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":590,"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":591,"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":592,"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":593,"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":594,"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":595,"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":596,"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":597,"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":598,"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":599,"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":600,"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":601,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":602,"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":603,"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":604,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":605,"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":606,"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":607,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":608,"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":609,"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":610,"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":611,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":612,"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":613,"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":614,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":615,"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":616,"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":617,"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":618,"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":619,"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":620,"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":621,"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":622,"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":623,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":624,"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":625,"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":626,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":627,"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":628,"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":629,"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":630,"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":631,"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":632,"kind":1024,"name":"userInfo","url":"classes/app_pages_settings_settings_component.settingscomponent.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":633,"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":634,"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":635,"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":636,"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":637,"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":638,"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":639,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":640,"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":641,"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":642,"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":643,"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":644,"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":645,"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":646,"kind":1024,"name":"closeWindow","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":647,"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":648,"kind":2048,"name":"close","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":649,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":650,"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":651,"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":652,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":653,"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":654,"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":655,"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":656,"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":657,"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":658,"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":659,"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":660,"kind":1024,"name":"token","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":661,"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":662,"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":663,"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":664,"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":665,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":666,"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":667,"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":668,"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":669,"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":670,"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":671,"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":672,"kind":1024,"name":"closeWindow","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":673,"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":674,"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":675,"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":676,"kind":1024,"name":"tokenName","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokenname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":677,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":678,"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":679,"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":680,"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":681,"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":682,"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":683,"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":684,"kind":2048,"name":"close","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":685,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":686,"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":687,"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":688,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":689,"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":690,"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":691,"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":692,"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":693,"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":694,"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":695,"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":696,"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":697,"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":698,"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":699,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":700,"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":701,"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":702,"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":703,"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":704,"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":705,"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":706,"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":707,"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":708,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":709,"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":710,"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":711,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":712,"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":713,"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":714,"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":715,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":716,"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":717,"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":718,"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":719,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":720,"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":721,"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":722,"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":723,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":724,"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":725,"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":726,"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":727,"kind":1,"name":"app/shared/_pipes/unix-date.pipe","url":"modules/app_shared__pipes_unix_date_pipe.html","classes":"tsd-kind-module"},{"id":728,"kind":128,"name":"UnixDatePipe","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/unix-date.pipe"},{"id":729,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":730,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":731,"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":732,"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":733,"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":734,"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":735,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":736,"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":737,"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":738,"kind":1024,"name":"currentYear","url":"classes/app_shared_footer_footer_component.footercomponent.html#currentyear","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":739,"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":740,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":741,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":742,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":743,"kind":1024,"name":"noInternetConnection","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#nointernetconnection","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":744,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":745,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":746,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":747,"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":748,"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":749,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":750,"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":751,"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":752,"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":753,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":754,"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":755,"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":756,"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":757,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":758,"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":759,"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":760,"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":761,"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":762,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":763,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":764,"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":765,"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":766,"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":767,"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":768,"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":769,"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":770,"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":771,"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":772,"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":773,"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":774,"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":775,"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":776,"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":777,"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":778,"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":779,"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":780,"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":781,"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":782,"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":783,"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":784,"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":785,"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":786,"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":787,"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":788,"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":789,"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":790,"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":791,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":792,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":793,"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":794,"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":795,"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":796,"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":797,"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":798,"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":799,"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":800,"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":801,"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":802,"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":803,"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":804,"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":805,"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":806,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_dev.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":807,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":808,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":809,"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":810,"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":811,"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":812,"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":813,"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":814,"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":815,"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":816,"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":817,"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":818,"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":819,"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":820,"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":821,"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":822,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_prod.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":823,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":824,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":825,"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":826,"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":827,"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":828,"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":829,"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":830,"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":831,"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":832,"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":833,"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":834,"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":835,"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":836,"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":837,"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":838,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":839,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":840,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":841,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":842,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":843,"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":844,"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":845,"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":846,"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":847,"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":848,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":849,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":850,"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":851,"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":852,"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":853,"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":854,"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":855,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":856,"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":857,"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":858,"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":859,"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":860,"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":861,"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":862,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":863,"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":864,"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":865,"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":866,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":867,"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":868,"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":869,"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":870,"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":871,"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":872,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":873,"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":874,"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":875,"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":876,"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":877,"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":878,"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":879,"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":880,"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":881,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":882,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":883,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":884,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":885,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":886,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":887,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":888,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":889,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":890,"kind":16777216,"name":"rejectBody","url":"modules/app__helpers.html#rejectbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":891,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":892,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":893,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":894,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":895,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":896,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":897,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":898,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":899,"kind":16777216,"name":"updateSyncable","url":"modules/app__helpers.html#updatesyncable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":900,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":901,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":902,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":903,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":904,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":905,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":906,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":907,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":908,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":909,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":910,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":911,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":912,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":913,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":914,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":915,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":916,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":917,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":918,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":919,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":920,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":921,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":922,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":923,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":924,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":925,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":926,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":927,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":928,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":929,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":930,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":931,"kind":16777216,"name":"Web3Service","url":"modules/app__services.html#web3service","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":932,"kind":16777216,"name":"KeystoreService","url":"modules/app__services.html#keystoreservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":933,"kind":16777216,"name":"RegistryService","url":"modules/app__services.html#registryservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":934,"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":935,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":936,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":937,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":938,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":939,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":940,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":941,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":942,"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.803]],["parent/0",[]],["name/1",[1,60.803]],["parent/1",[0,6.78]],["name/2",[2,25.616]],["parent/2",[3,5.382]],["name/3",[4,60.803]],["parent/3",[3,5.382]],["name/4",[5,60.803]],["parent/4",[3,5.382]],["name/5",[6,60.803]],["parent/5",[3,5.382]],["name/6",[7,66.037]],["parent/6",[3,5.382]],["name/7",[8,66.037]],["parent/7",[3,5.382]],["name/8",[9,66.037]],["parent/8",[3,5.382]],["name/9",[10,66.037]],["parent/9",[3,5.382]],["name/10",[11,57.355]],["parent/10",[]],["name/11",[12,33.792,13,35.529]],["parent/11",[]],["name/12",[14,54.78]],["parent/12",[12,3.966,13,4.17]],["name/13",[2,25.616]],["parent/13",[12,3.966,15,4.17]],["name/14",[4,60.803]],["parent/14",[12,3.966,15,4.17]],["name/15",[5,60.803]],["parent/15",[12,3.966,15,4.17]],["name/16",[6,60.803]],["parent/16",[12,3.966,15,4.17]],["name/17",[16,66.037]],["parent/17",[12,3.966,15,4.17]],["name/18",[17,66.037]],["parent/18",[12,3.966,15,4.17]],["name/19",[18,66.037]],["parent/19",[12,3.966,15,4.17]],["name/20",[19,60.803]],["parent/20",[]],["name/21",[20,60.803]],["parent/21",[19,6.78]],["name/22",[2,25.616]],["parent/22",[21,6.78]],["name/23",[22,60.803]],["parent/23",[21,6.78]],["name/24",[23,57.355]],["parent/24",[]],["name/25",[24,60.803]],["parent/25",[]],["name/26",[25,60.803]],["parent/26",[24,6.78]],["name/27",[2,25.616]],["parent/27",[26,6.78]],["name/28",[22,60.803]],["parent/28",[26,6.78]],["name/29",[27,43.602,28,43.602]],["parent/29",[]],["name/30",[29,60.803]],["parent/30",[27,5.118,28,5.118]],["name/31",[30,43.602,31,43.602]],["parent/31",[]],["name/32",[32,60.803]],["parent/32",[30,5.118,31,5.118]],["name/33",[33,25.088,34,18.991,35,25.088,36,22.691]],["parent/33",[]],["name/34",[37,60.803]],["parent/34",[33,3.094,34,2.342,35,3.094,36,2.798]],["name/35",[2,25.616]],["parent/35",[33,3.094,34,2.342,35,3.094,38,3.434]],["name/36",[39,66.037]],["parent/36",[33,3.094,34,2.342,35,3.094,38,3.434]],["name/37",[40,60.803]],["parent/37",[]],["name/38",[41,60.803]],["parent/38",[40,6.78]],["name/39",[42,66.037]],["parent/39",[43,6.396]],["name/40",[44,66.037]],["parent/40",[43,6.396]],["name/41",[2,25.616]],["parent/41",[43,6.396]],["name/42",[45,43.602,46,39.283]],["parent/42",[]],["name/43",[47,60.803]],["parent/43",[45,5.118,46,4.611]],["name/44",[34,23.178,48,24.769,49,30.62]],["parent/44",[]],["name/45",[50,60.803]],["parent/45",[34,2.803,48,2.995,49,3.703]],["name/46",[51,60.803]],["parent/46",[34,2.803,48,2.995,49,3.703]],["name/47",[52,43.523]],["parent/47",[34,2.803,48,2.995,53,3.877]],["name/48",[2,25.616]],["parent/48",[34,2.803,48,2.995,53,3.877]],["name/49",[54,66.037]],["parent/49",[34,2.803,48,2.995,53,3.877]],["name/50",[55,60.803]],["parent/50",[34,2.803,48,2.995,49,3.703]],["name/51",[2,25.616]],["parent/51",[34,2.803,48,2.995,56,3.564]],["name/52",[57,66.037]],["parent/52",[34,2.803,48,2.995,56,3.564]],["name/53",[58,66.037]],["parent/53",[34,2.803,48,2.995,56,3.564]],["name/54",[59,66.037]],["parent/54",[34,2.803,48,2.995,56,3.564]],["name/55",[60,66.037]],["parent/55",[34,2.803,48,2.995,56,3.564]],["name/56",[61,43.602,62,43.602]],["parent/56",[]],["name/57",[63,60.803]],["parent/57",[61,5.118,62,5.118]],["name/58",[64,41.467]],["parent/58",[]],["name/59",[65,33.792,66,41.129]],["parent/59",[]],["name/60",[67,60.803]],["parent/60",[65,3.966,66,4.827]],["name/61",[2,25.616]],["parent/61",[65,3.966,68,5.118]],["name/62",[69,54.78]],["parent/62",[65,3.966,68,5.118]],["name/63",[70,60.803]],["parent/63",[65,3.966,66,4.827]],["name/64",[52,43.523]],["parent/64",[65,3.966,71,5.558]],["name/65",[72,66.037]],["parent/65",[65,3.966,73,4.827]],["name/66",[74,66.037]],["parent/66",[65,3.966,73,4.827]],["name/67",[75,66.037]],["parent/67",[65,3.966,73,4.827]],["name/68",[46,39.283,76,43.602]],["parent/68",[]],["name/69",[77,60.803]],["parent/69",[46,4.611,76,5.118]],["name/70",[78,41.129,79,41.129]],["parent/70",[]],["name/71",[80,60.803]],["parent/71",[78,4.827,79,4.827]],["name/72",[81,60.803]],["parent/72",[78,4.827,79,4.827]],["name/73",[82,60.803]],["parent/73",[]],["name/74",[83,60.803]],["parent/74",[82,6.78]],["name/75",[84,60.803]],["parent/75",[]],["name/76",[85,60.803]],["parent/76",[84,6.78]],["name/77",[2,25.616]],["parent/77",[86,6.78]],["name/78",[69,54.78]],["parent/78",[86,6.78]],["name/79",[87,39.283,88,43.602]],["parent/79",[]],["name/80",[89,60.803]],["parent/80",[87,4.611,88,5.118]],["name/81",[2,25.616]],["parent/81",[87,4.611,90,5.118]],["name/82",[69,54.78]],["parent/82",[87,4.611,90,5.118]],["name/83",[91,54.78]],["parent/83",[]],["name/84",[92,60.803]],["parent/84",[]],["name/85",[93,60.803]],["parent/85",[92,6.78]],["name/86",[2,25.616]],["parent/86",[94,6.78]],["name/87",[69,54.78]],["parent/87",[94,6.78]],["name/88",[95,51.012]],["parent/88",[]],["name/89",[96,60.803]],["parent/89",[95,5.688]],["name/90",[97,66.037]],["parent/90",[98,4.853]],["name/91",[99,60.803]],["parent/91",[98,4.853]],["name/92",[100,60.803]],["parent/92",[98,4.853]],["name/93",[101,66.037]],["parent/93",[98,4.853]],["name/94",[102,66.037]],["parent/94",[98,4.853]],["name/95",[103,66.037]],["parent/95",[98,4.853]],["name/96",[52,43.523]],["parent/96",[98,4.853]],["name/97",[104,66.037]],["parent/97",[105,4.941]],["name/98",[52,43.523]],["parent/98",[105,4.941]],["name/99",[106,66.037]],["parent/99",[107,6.78]],["name/100",[108,66.037]],["parent/100",[107,6.78]],["name/101",[109,66.037]],["parent/101",[105,4.941]],["name/102",[110,66.037]],["parent/102",[105,4.941]],["name/103",[111,66.037]],["parent/103",[98,4.853]],["name/104",[52,43.523]],["parent/104",[98,4.853]],["name/105",[112,60.803]],["parent/105",[105,4.941]],["name/106",[113,66.037]],["parent/106",[105,4.941]],["name/107",[114,66.037]],["parent/107",[105,4.941]],["name/108",[115,66.037]],["parent/108",[98,4.853]],["name/109",[116,60.803]],["parent/109",[98,4.853]],["name/110",[117,66.037]],["parent/110",[98,4.853]],["name/111",[52,43.523]],["parent/111",[98,4.853]],["name/112",[118,60.803]],["parent/112",[105,4.941]],["name/113",[119,66.037]],["parent/113",[105,4.941]],["name/114",[120,66.037]],["parent/114",[105,4.941]],["name/115",[121,66.037]],["parent/115",[105,4.941]],["name/116",[122,66.037]],["parent/116",[105,4.941]],["name/117",[123,60.803]],["parent/117",[95,5.688]],["name/118",[124,52.724]],["parent/118",[125,6.396]],["name/119",[126,54.78]],["parent/119",[125,6.396]],["name/120",[127,51.012]],["parent/120",[125,6.396]],["name/121",[128,60.803]],["parent/121",[95,5.688]],["name/122",[126,54.78]],["parent/122",[129,6.78]],["name/123",[130,66.037]],["parent/123",[129,6.78]],["name/124",[127,51.012]],["parent/124",[95,5.688]],["name/125",[131,57.355]],["parent/125",[132,6.108]],["name/126",[124,52.724]],["parent/126",[132,6.108]],["name/127",[133,57.355]],["parent/127",[132,6.108]],["name/128",[134,54.78]],["parent/128",[132,6.108]],["name/129",[135,60.803]],["parent/129",[95,5.688]],["name/130",[136,42.107]],["parent/130",[]],["name/131",[137,60.803]],["parent/131",[]],["name/132",[138,54.78]],["parent/132",[137,6.78]],["name/133",[138,54.78]],["parent/133",[139,5.879]],["name/134",[140,66.037]],["parent/134",[139,5.879]],["name/135",[126,54.78]],["parent/135",[139,5.879]],["name/136",[141,66.037]],["parent/136",[139,5.879]],["name/137",[142,60.803]],["parent/137",[139,5.879]],["name/138",[143,57.355]],["parent/138",[]],["name/139",[144,60.803]],["parent/139",[143,6.396]],["name/140",[2,25.616]],["parent/140",[145,5.879]],["name/141",[13,49.546]],["parent/141",[145,5.879]],["name/142",[146,66.037]],["parent/142",[145,5.879]],["name/143",[147,66.037]],["parent/143",[145,5.879]],["name/144",[148,57.355]],["parent/144",[145,5.879]],["name/145",[148,57.355]],["parent/145",[143,6.396]],["name/146",[134,54.78]],["parent/146",[149,6.78]],["name/147",[150,66.037]],["parent/147",[149,6.78]],["name/148",[151,60.803]],["parent/148",[]],["name/149",[152,60.803]],["parent/149",[151,6.78]],["name/150",[153,66.037]],["parent/150",[154,5.879]],["name/151",[118,60.803]],["parent/151",[154,5.879]],["name/152",[155,57.355]],["parent/152",[154,5.879]],["name/153",[156,66.037]],["parent/153",[154,5.879]],["name/154",[157,66.037]],["parent/154",[154,5.879]],["name/155",[158,60.803]],["parent/155",[]],["name/156",[159,52.724]],["parent/156",[158,6.78]],["name/157",[160,60.803]],["parent/157",[161,5.255]],["name/158",[162,66.037]],["parent/158",[161,5.255]],["name/159",[155,57.355]],["parent/159",[161,5.255]],["name/160",[163,66.037]],["parent/160",[161,5.255]],["name/161",[164,66.037]],["parent/161",[161,5.255]],["name/162",[165,66.037]],["parent/162",[161,5.255]],["name/163",[52,43.523]],["parent/163",[161,5.255]],["name/164",[166,66.037]],["parent/164",[167,6.78]],["name/165",[52,43.523]],["parent/165",[167,6.78]],["name/166",[168,66.037]],["parent/166",[169,6.78]],["name/167",[99,60.803]],["parent/167",[169,6.78]],["name/168",[170,66.037]],["parent/168",[161,5.255]],["name/169",[171,60.803]],["parent/169",[161,5.255]],["name/170",[172,52.724]],["parent/170",[]],["name/171",[173,60.803]],["parent/171",[172,5.879]],["name/172",[174,66.037]],["parent/172",[175,5.525]],["name/173",[176,66.037]],["parent/173",[175,5.525]],["name/174",[177,66.037]],["parent/174",[175,5.525]],["name/175",[178,60.803]],["parent/175",[175,5.525]],["name/176",[179,66.037]],["parent/176",[175,5.525]],["name/177",[180,51.012]],["parent/177",[175,5.525]],["name/178",[142,60.803]],["parent/178",[175,5.525]],["name/179",[181,52.724]],["parent/179",[172,5.879]],["name/180",[182,66.037]],["parent/180",[183,5.382]],["name/181",[184,66.037]],["parent/181",[183,5.382]],["name/182",[185,66.037]],["parent/182",[183,5.382]],["name/183",[186,60.803]],["parent/183",[183,5.382]],["name/184",[159,52.724]],["parent/184",[183,5.382]],["name/185",[180,51.012]],["parent/185",[183,5.382]],["name/186",[116,60.803]],["parent/186",[183,5.382]],["name/187",[187,60.803]],["parent/187",[183,5.382]],["name/188",[180,51.012]],["parent/188",[172,5.879]],["name/189",[188,66.037]],["parent/189",[189,5.879]],["name/190",[190,66.037]],["parent/190",[189,5.879]],["name/191",[191,66.037]],["parent/191",[189,5.879]],["name/192",[192,66.037]],["parent/192",[189,5.879]],["name/193",[193,66.037]],["parent/193",[189,5.879]],["name/194",[194,60.803]],["parent/194",[172,5.879]],["name/195",[160,60.803]],["parent/195",[195,6.396]],["name/196",[155,57.355]],["parent/196",[195,6.396]],["name/197",[171,60.803]],["parent/197",[195,6.396]],["name/198",[196,49.546]],["parent/198",[]],["name/199",[197,13.756,198,16.335,199,32.06]],["parent/199",[]],["name/200",[200,54.78]],["parent/200",[197,1.663,198,1.975,199,3.877]],["name/201",[201,60.803]],["parent/201",[197,1.663,198,1.975,202,2.501]],["name/202",[203,60.803]],["parent/202",[197,1.663,198,1.975,202,2.501]],["name/203",[204,60.803]],["parent/203",[197,1.663,198,1.975,202,2.501]],["name/204",[205,60.803]],["parent/204",[197,1.663,198,1.975,202,2.501]],["name/205",[206,60.803]],["parent/205",[197,1.663,198,1.975,202,2.501]],["name/206",[207,57.355]],["parent/206",[197,1.663,198,1.975,202,2.501]],["name/207",[208,60.803]],["parent/207",[197,1.663,198,1.975,202,2.501]],["name/208",[209,60.803]],["parent/208",[197,1.663,198,1.975,202,2.501]],["name/209",[210,60.803]],["parent/209",[197,1.663,198,1.975,202,2.501]],["name/210",[211,60.803]],["parent/210",[197,1.663,198,1.975,202,2.501]],["name/211",[212,60.803]],["parent/211",[197,1.663,198,1.975,202,2.501]],["name/212",[213,57.355]],["parent/212",[197,1.663,198,1.975,202,2.501]],["name/213",[214,60.803]],["parent/213",[197,1.663,198,1.975,202,2.501]],["name/214",[215,60.803]],["parent/214",[197,1.663,198,1.975,202,2.501]],["name/215",[216,60.803]],["parent/215",[197,1.663,198,1.975,202,2.501]],["name/216",[217,60.803]],["parent/216",[197,1.663,198,1.975,202,2.501]],["name/217",[218,60.803]],["parent/217",[197,1.663,198,1.975,202,2.501]],["name/218",[219,60.803]],["parent/218",[197,1.663,198,1.975,202,2.501]],["name/219",[220,60.803]],["parent/219",[197,1.663,198,1.975,202,2.501]],["name/220",[221,60.803]],["parent/220",[197,1.663,198,1.975,202,2.501]],["name/221",[222,60.803]],["parent/221",[197,1.663,198,1.975,202,2.501]],["name/222",[223,60.803]],["parent/222",[197,1.663,198,1.975,202,2.501]],["name/223",[224,60.803]],["parent/223",[197,1.663,198,1.975,202,2.501]],["name/224",[225,60.803]],["parent/224",[197,1.663,198,1.975,202,2.501]],["name/225",[226,54.78]],["parent/225",[197,1.663,198,1.975,202,2.501]],["name/226",[227,60.803]],["parent/226",[197,1.663,198,1.975,199,3.877]],["name/227",[2,25.616]],["parent/227",[197,1.663,198,1.975,228,2.475]],["name/228",[201,60.803]],["parent/228",[197,1.663,198,1.975,228,2.475]],["name/229",[203,60.803]],["parent/229",[197,1.663,198,1.975,228,2.475]],["name/230",[204,60.803]],["parent/230",[197,1.663,198,1.975,228,2.475]],["name/231",[205,60.803]],["parent/231",[197,1.663,198,1.975,228,2.475]],["name/232",[206,60.803]],["parent/232",[197,1.663,198,1.975,228,2.475]],["name/233",[207,57.355]],["parent/233",[197,1.663,198,1.975,228,2.475]],["name/234",[208,60.803]],["parent/234",[197,1.663,198,1.975,228,2.475]],["name/235",[209,60.803]],["parent/235",[197,1.663,198,1.975,228,2.475]],["name/236",[210,60.803]],["parent/236",[197,1.663,198,1.975,228,2.475]],["name/237",[211,60.803]],["parent/237",[197,1.663,198,1.975,228,2.475]],["name/238",[212,60.803]],["parent/238",[197,1.663,198,1.975,228,2.475]],["name/239",[213,57.355]],["parent/239",[197,1.663,198,1.975,228,2.475]],["name/240",[214,60.803]],["parent/240",[197,1.663,198,1.975,228,2.475]],["name/241",[215,60.803]],["parent/241",[197,1.663,198,1.975,228,2.475]],["name/242",[216,60.803]],["parent/242",[197,1.663,198,1.975,228,2.475]],["name/243",[217,60.803]],["parent/243",[197,1.663,198,1.975,228,2.475]],["name/244",[218,60.803]],["parent/244",[197,1.663,198,1.975,228,2.475]],["name/245",[219,60.803]],["parent/245",[197,1.663,198,1.975,228,2.475]],["name/246",[220,60.803]],["parent/246",[197,1.663,198,1.975,228,2.475]],["name/247",[221,60.803]],["parent/247",[197,1.663,198,1.975,228,2.475]],["name/248",[222,60.803]],["parent/248",[197,1.663,198,1.975,228,2.475]],["name/249",[223,60.803]],["parent/249",[197,1.663,198,1.975,228,2.475]],["name/250",[224,60.803]],["parent/250",[197,1.663,198,1.975,228,2.475]],["name/251",[225,60.803]],["parent/251",[197,1.663,198,1.975,228,2.475]],["name/252",[226,54.78]],["parent/252",[197,1.663,198,1.975,228,2.475]],["name/253",[197,17.647,229,34.61]],["parent/253",[]],["name/254",[230,60.803]],["parent/254",[197,2.071,229,4.062]],["name/255",[2,25.616]],["parent/255",[197,2.071,231,3.544]],["name/256",[131,57.355]],["parent/256",[197,2.071,231,3.544]],["name/257",[232,66.037]],["parent/257",[197,2.071,231,3.544]],["name/258",[134,54.78]],["parent/258",[197,2.071,231,3.544]],["name/259",[233,60.803]],["parent/259",[197,2.071,231,3.544]],["name/260",[234,57.355]],["parent/260",[197,2.071,231,3.544]],["name/261",[235,60.803]],["parent/261",[197,2.071,231,3.544]],["name/262",[52,43.523]],["parent/262",[197,2.071,231,3.544]],["name/263",[236,60.803]],["parent/263",[197,2.071,231,3.544]],["name/264",[52,43.523]],["parent/264",[197,2.071,231,3.544]],["name/265",[127,51.012]],["parent/265",[197,2.071,231,3.544]],["name/266",[237,60.803]],["parent/266",[197,2.071,231,3.544]],["name/267",[238,60.803]],["parent/267",[197,2.071,231,3.544]],["name/268",[226,54.78]],["parent/268",[197,2.071,231,3.544]],["name/269",[239,60.803]],["parent/269",[197,2.071,231,3.544]],["name/270",[240,60.803]],["parent/270",[197,2.071,229,4.062]],["name/271",[133,57.355]],["parent/271",[197,2.071,241,5.558]],["name/272",[127,51.012]],["parent/272",[197,2.071,229,4.062]],["name/273",[131,57.355]],["parent/273",[197,2.071,242,4.611]],["name/274",[124,52.724]],["parent/274",[197,2.071,242,4.611]],["name/275",[133,57.355]],["parent/275",[197,2.071,242,4.611]],["name/276",[134,54.78]],["parent/276",[197,2.071,242,4.611]],["name/277",[229,48.263]],["parent/277",[197,2.071,229,4.062]],["name/278",[237,60.803]],["parent/278",[197,2.071,243,4.294]],["name/279",[235,60.803]],["parent/279",[197,2.071,243,4.294]],["name/280",[236,60.803]],["parent/280",[197,2.071,243,4.294]],["name/281",[238,60.803]],["parent/281",[197,2.071,243,4.294]],["name/282",[226,54.78]],["parent/282",[197,2.071,243,4.294]],["name/283",[239,60.803]],["parent/283",[197,2.071,243,4.294]],["name/284",[244,60.803]],["parent/284",[]],["name/285",[245,60.803]],["parent/285",[244,6.78]],["name/286",[2,25.616]],["parent/286",[246,4.321]],["name/287",[200,54.78]],["parent/287",[246,4.321]],["name/288",[247,60.803]],["parent/288",[246,4.321]],["name/289",[248,66.037]],["parent/289",[246,4.321]],["name/290",[249,66.037]],["parent/290",[246,4.321]],["name/291",[250,54.78]],["parent/291",[246,4.321]],["name/292",[251,66.037]],["parent/292",[246,4.321]],["name/293",[252,66.037]],["parent/293",[246,4.321]],["name/294",[253,66.037]],["parent/294",[246,4.321]],["name/295",[254,66.037]],["parent/295",[246,4.321]],["name/296",[255,66.037]],["parent/296",[246,4.321]],["name/297",[256,66.037]],["parent/297",[246,4.321]],["name/298",[257,60.803]],["parent/298",[246,4.321]],["name/299",[258,66.037]],["parent/299",[246,4.321]],["name/300",[259,66.037]],["parent/300",[246,4.321]],["name/301",[260,60.803]],["parent/301",[246,4.321]],["name/302",[261,66.037]],["parent/302",[246,4.321]],["name/303",[262,66.037]],["parent/303",[246,4.321]],["name/304",[213,57.355]],["parent/304",[246,4.321]],["name/305",[207,57.355]],["parent/305",[246,4.321]],["name/306",[263,66.037]],["parent/306",[246,4.321]],["name/307",[264,33.057,265,43.602]],["parent/307",[]],["name/308",[266,60.803]],["parent/308",[264,3.88,265,5.118]],["name/309",[2,25.616]],["parent/309",[264,3.88,267,4.062]],["name/310",[268,66.037]],["parent/310",[264,3.88,267,4.062]],["name/311",[269,66.037]],["parent/311",[264,3.88,267,4.062]],["name/312",[270,66.037]],["parent/312",[264,3.88,267,4.062]],["name/313",[271,66.037]],["parent/313",[264,3.88,267,4.062]],["name/314",[272,66.037]],["parent/314",[264,3.88,267,4.062]],["name/315",[273,66.037]],["parent/315",[264,3.88,267,4.062]],["name/316",[274,66.037]],["parent/316",[264,3.88,267,4.062]],["name/317",[275,36.581,276,43.602]],["parent/317",[]],["name/318",[277,60.803]],["parent/318",[275,4.294,276,5.118]],["name/319",[2,25.616]],["parent/319",[275,4.294,278,4.611]],["name/320",[279,66.037]],["parent/320",[275,4.294,278,4.611]],["name/321",[280,66.037]],["parent/321",[275,4.294,278,4.611]],["name/322",[281,66.037]],["parent/322",[275,4.294,278,4.611]],["name/323",[282,44.311]],["parent/323",[]],["name/324",[283,60.803]],["parent/324",[]],["name/325",[284,60.803]],["parent/325",[283,6.78]],["name/326",[200,54.78]],["parent/326",[285,6.396]],["name/327",[286,66.037]],["parent/327",[285,6.396]],["name/328",[2,25.616]],["parent/328",[285,6.396]],["name/329",[287,60.803]],["parent/329",[]],["name/330",[288,60.803]],["parent/330",[287,6.78]],["name/331",[2,25.616]],["parent/331",[289,5.036]],["name/332",[290,57.355]],["parent/332",[289,5.036]],["name/333",[291,66.037]],["parent/333",[289,5.036]],["name/334",[292,66.037]],["parent/334",[289,5.036]],["name/335",[293,60.803]],["parent/335",[289,5.036]],["name/336",[294,66.037]],["parent/336",[289,5.036]],["name/337",[295,66.037]],["parent/337",[289,5.036]],["name/338",[296,66.037]],["parent/338",[289,5.036]],["name/339",[297,66.037]],["parent/339",[289,5.036]],["name/340",[298,66.037]],["parent/340",[289,5.036]],["name/341",[299,66.037]],["parent/341",[289,5.036]],["name/342",[300,60.803]],["parent/342",[]],["name/343",[234,57.355]],["parent/343",[300,6.78]],["name/344",[2,25.616]],["parent/344",[301,5.382]],["name/345",[302,66.037]],["parent/345",[301,5.382]],["name/346",[303,66.037]],["parent/346",[301,5.382]],["name/347",[304,66.037]],["parent/347",[301,5.382]],["name/348",[305,66.037]],["parent/348",[301,5.382]],["name/349",[306,66.037]],["parent/349",[301,5.382]],["name/350",[307,66.037]],["parent/350",[301,5.382]],["name/351",[308,66.037]],["parent/351",[301,5.382]],["name/352",[309,60.803]],["parent/352",[]],["name/353",[310,60.803]],["parent/353",[309,6.78]],["name/354",[311,66.037]],["parent/354",[312,5.382]],["name/355",[13,49.546]],["parent/355",[312,5.382]],["name/356",[14,54.78]],["parent/356",[312,5.382]],["name/357",[313,66.037]],["parent/357",[312,5.382]],["name/358",[314,66.037]],["parent/358",[312,5.382]],["name/359",[315,66.037]],["parent/359",[312,5.382]],["name/360",[316,66.037]],["parent/360",[312,5.382]],["name/361",[2,25.616]],["parent/361",[312,5.382]],["name/362",[317,60.803]],["parent/362",[]],["name/363",[318,60.803]],["parent/363",[317,6.78]],["name/364",[2,25.616]],["parent/364",[319,4.695]],["name/365",[13,49.546]],["parent/365",[319,4.695]],["name/366",[14,54.78]],["parent/366",[319,4.695]],["name/367",[320,60.803]],["parent/367",[319,4.695]],["name/368",[321,66.037]],["parent/368",[319,4.695]],["name/369",[322,66.037]],["parent/369",[319,4.695]],["name/370",[323,66.037]],["parent/370",[319,4.695]],["name/371",[250,54.78]],["parent/371",[319,4.695]],["name/372",[324,66.037]],["parent/372",[319,4.695]],["name/373",[325,66.037]],["parent/373",[319,4.695]],["name/374",[326,66.037]],["parent/374",[319,4.695]],["name/375",[327,66.037]],["parent/375",[319,4.695]],["name/376",[328,66.037]],["parent/376",[319,4.695]],["name/377",[329,66.037]],["parent/377",[319,4.695]],["name/378",[330,66.037]],["parent/378",[319,4.695]],["name/379",[331,60.803]],["parent/379",[]],["name/380",[332,60.803]],["parent/380",[331,6.78]],["name/381",[2,25.616]],["parent/381",[333,4.695]],["name/382",[334,57.355]],["parent/382",[333,4.695]],["name/383",[335,66.037]],["parent/383",[333,4.695]],["name/384",[336,66.037]],["parent/384",[333,4.695]],["name/385",[337,60.803]],["parent/385",[333,4.695]],["name/386",[13,49.546]],["parent/386",[333,4.695]],["name/387",[250,54.78]],["parent/387",[333,4.695]],["name/388",[338,60.803]],["parent/388",[333,4.695]],["name/389",[339,66.037]],["parent/389",[333,4.695]],["name/390",[340,60.803]],["parent/390",[333,4.695]],["name/391",[341,60.803]],["parent/391",[333,4.695]],["name/392",[342,66.037]],["parent/392",[333,4.695]],["name/393",[343,66.037]],["parent/393",[333,4.695]],["name/394",[344,66.037]],["parent/394",[333,4.695]],["name/395",[345,66.037]],["parent/395",[333,4.695]],["name/396",[346,60.803]],["parent/396",[]],["name/397",[347,60.803]],["parent/397",[346,6.78]],["name/398",[2,25.616]],["parent/398",[348,3.717]],["name/399",[349,66.037]],["parent/399",[348,3.717]],["name/400",[233,60.803]],["parent/400",[348,3.717]],["name/401",[229,48.263]],["parent/401",[348,3.717]],["name/402",[13,49.546]],["parent/402",[348,3.717]],["name/403",[350,57.355]],["parent/403",[348,3.717]],["name/404",[351,66.037]],["parent/404",[348,3.717]],["name/405",[352,66.037]],["parent/405",[348,3.717]],["name/406",[353,57.355]],["parent/406",[348,3.717]],["name/407",[354,66.037]],["parent/407",[348,3.717]],["name/408",[355,66.037]],["parent/408",[348,3.717]],["name/409",[356,57.355]],["parent/409",[348,3.717]],["name/410",[357,66.037]],["parent/410",[348,3.717]],["name/411",[358,66.037]],["parent/411",[348,3.717]],["name/412",[250,54.78]],["parent/412",[348,3.717]],["name/413",[359,60.803]],["parent/413",[348,3.717]],["name/414",[360,66.037]],["parent/414",[348,3.717]],["name/415",[361,66.037]],["parent/415",[348,3.717]],["name/416",[362,66.037]],["parent/416",[348,3.717]],["name/417",[363,66.037]],["parent/417",[348,3.717]],["name/418",[364,66.037]],["parent/418",[348,3.717]],["name/419",[365,60.803]],["parent/419",[348,3.717]],["name/420",[366,57.355]],["parent/420",[348,3.717]],["name/421",[367,66.037]],["parent/421",[348,3.717]],["name/422",[368,66.037]],["parent/422",[348,3.717]],["name/423",[369,66.037]],["parent/423",[348,3.717]],["name/424",[370,66.037]],["parent/424",[348,3.717]],["name/425",[371,66.037]],["parent/425",[348,3.717]],["name/426",[372,66.037]],["parent/426",[348,3.717]],["name/427",[373,66.037]],["parent/427",[348,3.717]],["name/428",[374,66.037]],["parent/428",[348,3.717]],["name/429",[375,66.037]],["parent/429",[348,3.717]],["name/430",[376,66.037]],["parent/430",[348,3.717]],["name/431",[377,66.037]],["parent/431",[348,3.717]],["name/432",[378,66.037]],["parent/432",[348,3.717]],["name/433",[379,66.037]],["parent/433",[348,3.717]],["name/434",[380,60.803]],["parent/434",[]],["name/435",[381,60.803]],["parent/435",[380,6.78]],["name/436",[337,60.803]],["parent/436",[382,6.396]],["name/437",[383,66.037]],["parent/437",[382,6.396]],["name/438",[2,25.616]],["parent/438",[382,6.396]],["name/439",[384,41.129,385,29.736]],["parent/439",[]],["name/440",[386,66.037]],["parent/440",[384,4.827,385,3.49]],["name/441",[2,25.616]],["parent/441",[384,4.827,387,5.558]],["name/442",[388,60.803]],["parent/442",[]],["name/443",[389,66.037]],["parent/443",[388,6.78]],["name/444",[2,25.616]],["parent/444",[390,5.525]],["name/445",[391,66.037]],["parent/445",[390,5.525]],["name/446",[392,66.037]],["parent/446",[390,5.525]],["name/447",[393,40.864]],["parent/447",[390,5.525]],["name/448",[394,66.037]],["parent/448",[390,5.525]],["name/449",[395,66.037]],["parent/449",[390,5.525]],["name/450",[396,66.037]],["parent/450",[390,5.525]],["name/451",[397,60.803]],["parent/451",[]],["name/452",[398,66.037]],["parent/452",[397,6.78]],["name/453",[2,25.616]],["parent/453",[399,7.364]],["name/454",[400,66.037]],["parent/454",[]],["name/455",[401,36.581,402,39.283]],["parent/455",[]],["name/456",[403,66.037]],["parent/456",[401,4.294,402,4.611]],["name/457",[2,25.616]],["parent/457",[401,4.294,404,4.611]],["name/458",[126,54.78]],["parent/458",[401,4.294,404,4.611]],["name/459",[405,66.037]],["parent/459",[401,4.294,404,4.611]],["name/460",[406,66.037]],["parent/460",[401,4.294,404,4.611]],["name/461",[385,29.736,407,41.129]],["parent/461",[]],["name/462",[408,66.037]],["parent/462",[385,3.49,407,4.827]],["name/463",[2,25.616]],["parent/463",[407,4.827,409,5.558]],["name/464",[410,60.803]],["parent/464",[]],["name/465",[411,66.037]],["parent/465",[410,6.78]],["name/466",[2,25.616]],["parent/466",[412,5.036]],["name/467",[413,66.037]],["parent/467",[412,5.036]],["name/468",[414,54.78]],["parent/468",[412,5.036]],["name/469",[415,66.037]],["parent/469",[412,5.036]],["name/470",[36,49.546]],["parent/470",[412,5.036]],["name/471",[393,40.864]],["parent/471",[412,5.036]],["name/472",[416,66.037]],["parent/472",[412,5.036]],["name/473",[417,57.355]],["parent/473",[412,5.036]],["name/474",[257,60.803]],["parent/474",[412,5.036]],["name/475",[418,66.037]],["parent/475",[412,5.036]],["name/476",[419,66.037]],["parent/476",[412,5.036]],["name/477",[420,60.803]],["parent/477",[]],["name/478",[421,66.037]],["parent/478",[420,6.78]],["name/479",[2,25.616]],["parent/479",[422,7.364]],["name/480",[423,15.37,424,16.886,425,28.514]],["parent/480",[]],["name/481",[426,66.037]],["parent/481",[423,1.859,424,2.042,425,3.448]],["name/482",[2,25.616]],["parent/482",[423,1.859,424,2.042,427,2.071]],["name/483",[428,66.037]],["parent/483",[423,1.859,424,2.042,427,2.071]],["name/484",[429,66.037]],["parent/484",[423,1.859,424,2.042,427,2.071]],["name/485",[430,66.037]],["parent/485",[423,1.859,424,2.042,427,2.071]],["name/486",[431,66.037]],["parent/486",[423,1.859,424,2.042,427,2.071]],["name/487",[432,66.037]],["parent/487",[423,1.859,424,2.042,427,2.071]],["name/488",[433,66.037]],["parent/488",[423,1.859,424,2.042,427,2.071]],["name/489",[434,66.037]],["parent/489",[423,1.859,424,2.042,427,2.071]],["name/490",[435,66.037]],["parent/490",[423,1.859,424,2.042,427,2.071]],["name/491",[436,66.037]],["parent/491",[423,1.859,424,2.042,427,2.071]],["name/492",[437,66.037]],["parent/492",[423,1.859,424,2.042,427,2.071]],["name/493",[438,66.037]],["parent/493",[423,1.859,424,2.042,427,2.071]],["name/494",[439,66.037]],["parent/494",[423,1.859,424,2.042,427,2.071]],["name/495",[440,66.037]],["parent/495",[423,1.859,424,2.042,427,2.071]],["name/496",[441,66.037]],["parent/496",[423,1.859,424,2.042,427,2.071]],["name/497",[442,66.037]],["parent/497",[423,1.859,424,2.042,427,2.071]],["name/498",[443,66.037]],["parent/498",[423,1.859,424,2.042,427,2.071]],["name/499",[350,57.355]],["parent/499",[423,1.859,424,2.042,427,2.071]],["name/500",[444,60.803]],["parent/500",[423,1.859,424,2.042,427,2.071]],["name/501",[356,57.355]],["parent/501",[423,1.859,424,2.042,427,2.071]],["name/502",[290,57.355]],["parent/502",[423,1.859,424,2.042,427,2.071]],["name/503",[293,60.803]],["parent/503",[423,1.859,424,2.042,427,2.071]],["name/504",[181,52.724]],["parent/504",[423,1.859,424,2.042,427,2.071]],["name/505",[334,57.355]],["parent/505",[423,1.859,424,2.042,427,2.071]],["name/506",[445,60.803]],["parent/506",[423,1.859,424,2.042,427,2.071]],["name/507",[446,57.355]],["parent/507",[423,1.859,424,2.042,427,2.071]],["name/508",[447,60.803]],["parent/508",[423,1.859,424,2.042,427,2.071]],["name/509",[448,60.803]],["parent/509",[423,1.859,424,2.042,427,2.071]],["name/510",[36,49.546]],["parent/510",[423,1.859,424,2.042,427,2.071]],["name/511",[414,54.78]],["parent/511",[423,1.859,424,2.042,427,2.071]],["name/512",[449,66.037]],["parent/512",[423,1.859,424,2.042,427,2.071]],["name/513",[450,54.78]],["parent/513",[423,1.859,424,2.042,427,2.071]],["name/514",[100,60.803]],["parent/514",[423,1.859,424,2.042,427,2.071]],["name/515",[112,60.803]],["parent/515",[423,1.859,424,2.042,427,2.071]],["name/516",[451,66.037]],["parent/516",[423,1.859,424,2.042,427,2.071]],["name/517",[393,40.864]],["parent/517",[423,1.859,424,2.042,427,2.071]],["name/518",[452,66.037]],["parent/518",[423,1.859,424,2.042,427,2.071]],["name/519",[453,66.037]],["parent/519",[423,1.859,424,2.042,427,2.071]],["name/520",[454,60.803]],["parent/520",[423,1.859,424,2.042,427,2.071]],["name/521",[455,60.803]],["parent/521",[423,1.859,424,2.042,427,2.071]],["name/522",[456,66.037]],["parent/522",[423,1.859,424,2.042,427,2.071]],["name/523",[457,66.037]],["parent/523",[423,1.859,424,2.042,427,2.071]],["name/524",[458,60.803]],["parent/524",[423,1.859,424,2.042,427,2.071]],["name/525",[459,60.803]],["parent/525",[423,1.859,424,2.042,427,2.071]],["name/526",[359,60.803]],["parent/526",[423,1.859,424,2.042,427,2.071]],["name/527",[460,51.012]],["parent/527",[423,1.859,424,2.042,427,2.071]],["name/528",[461,60.803]],["parent/528",[423,1.859,424,2.042,427,2.071]],["name/529",[423,15.37,462,23.537,463,33.987]],["parent/529",[]],["name/530",[464,66.037]],["parent/530",[423,1.859,462,2.846,463,4.11]],["name/531",[2,25.616]],["parent/531",[423,1.859,462,2.846,465,2.942]],["name/532",[466,66.037]],["parent/532",[423,1.859,462,2.846,465,2.942]],["name/533",[467,66.037]],["parent/533",[423,1.859,462,2.846,465,2.942]],["name/534",[468,66.037]],["parent/534",[423,1.859,462,2.846,465,2.942]],["name/535",[469,66.037]],["parent/535",[423,1.859,462,2.846,465,2.942]],["name/536",[470,66.037]],["parent/536",[423,1.859,462,2.846,465,2.942]],["name/537",[471,66.037]],["parent/537",[423,1.859,462,2.846,465,2.942]],["name/538",[36,49.546]],["parent/538",[423,1.859,462,2.846,465,2.942]],["name/539",[393,40.864]],["parent/539",[423,1.859,462,2.846,465,2.942]],["name/540",[472,66.037]],["parent/540",[423,1.859,462,2.846,465,2.942]],["name/541",[473,66.037]],["parent/541",[423,1.859,462,2.846,465,2.942]],["name/542",[474,66.037]],["parent/542",[423,1.859,462,2.846,465,2.942]],["name/543",[475,66.037]],["parent/543",[423,1.859,462,2.846,465,2.942]],["name/544",[385,29.736,476,41.129]],["parent/544",[]],["name/545",[477,66.037]],["parent/545",[385,3.49,476,4.827]],["name/546",[2,25.616]],["parent/546",[476,4.827,478,5.558]],["name/547",[479,60.803]],["parent/547",[]],["name/548",[480,66.037]],["parent/548",[479,6.78]],["name/549",[2,25.616]],["parent/549",[481,4.557]],["name/550",[482,54.78]],["parent/550",[481,4.557]],["name/551",[350,57.355]],["parent/551",[481,4.557]],["name/552",[483,57.355]],["parent/552",[481,4.557]],["name/553",[484,60.803]],["parent/553",[481,4.557]],["name/554",[485,60.803]],["parent/554",[481,4.557]],["name/555",[444,60.803]],["parent/555",[481,4.557]],["name/556",[446,57.355]],["parent/556",[481,4.557]],["name/557",[450,54.78]],["parent/557",[481,4.557]],["name/558",[486,52.724]],["parent/558",[481,4.557]],["name/559",[487,52.724]],["parent/559",[481,4.557]],["name/560",[393,40.864]],["parent/560",[481,4.557]],["name/561",[488,52.724]],["parent/561",[481,4.557]],["name/562",[455,60.803]],["parent/562",[481,4.557]],["name/563",[458,60.803]],["parent/563",[481,4.557]],["name/564",[489,66.037]],["parent/564",[481,4.557]],["name/565",[460,51.012]],["parent/565",[481,4.557]],["name/566",[490,60.803]],["parent/566",[]],["name/567",[491,66.037]],["parent/567",[490,6.78]],["name/568",[2,25.616]],["parent/568",[492,7.364]],["name/569",[493,24.328,494,24.328,495,33.987]],["parent/569",[]],["name/570",[496,66.037]],["parent/570",[493,2.942,494,2.942,495,4.11]],["name/571",[2,25.616]],["parent/571",[493,2.942,494,2.942,497,3.053]],["name/572",[498,66.037]],["parent/572",[493,2.942,494,2.942,497,3.053]],["name/573",[36,49.546]],["parent/573",[493,2.942,494,2.942,497,3.053]],["name/574",[414,54.78]],["parent/574",[493,2.942,494,2.942,497,3.053]],["name/575",[356,57.355]],["parent/575",[493,2.942,494,2.942,497,3.053]],["name/576",[290,57.355]],["parent/576",[493,2.942,494,2.942,497,3.053]],["name/577",[446,57.355]],["parent/577",[493,2.942,494,2.942,497,3.053]],["name/578",[448,60.803]],["parent/578",[493,2.942,494,2.942,497,3.053]],["name/579",[393,40.864]],["parent/579",[493,2.942,494,2.942,497,3.053]],["name/580",[499,66.037]],["parent/580",[493,2.942,494,2.942,497,3.053]],["name/581",[417,57.355]],["parent/581",[493,2.942,494,2.942,497,3.053]],["name/582",[385,29.736,500,41.129]],["parent/582",[]],["name/583",[501,66.037]],["parent/583",[385,3.49,500,4.827]],["name/584",[2,25.616]],["parent/584",[500,4.827,502,5.558]],["name/585",[503,60.803]],["parent/585",[]],["name/586",[504,66.037]],["parent/586",[503,6.78]],["name/587",[2,25.616]],["parent/587",[505,4.771]],["name/588",[482,54.78]],["parent/588",[505,4.771]],["name/589",[483,57.355]],["parent/589",[505,4.771]],["name/590",[138,54.78]],["parent/590",[505,4.771]],["name/591",[353,57.355]],["parent/591",[505,4.771]],["name/592",[486,52.724]],["parent/592",[505,4.771]],["name/593",[487,52.724]],["parent/593",[505,4.771]],["name/594",[393,40.864]],["parent/594",[505,4.771]],["name/595",[488,52.724]],["parent/595",[505,4.771]],["name/596",[506,66.037]],["parent/596",[505,4.771]],["name/597",[366,57.355]],["parent/597",[505,4.771]],["name/598",[507,66.037]],["parent/598",[505,4.771]],["name/599",[508,66.037]],["parent/599",[505,4.771]],["name/600",[460,51.012]],["parent/600",[505,4.771]],["name/601",[509,60.803]],["parent/601",[]],["name/602",[510,66.037]],["parent/602",[509,6.78]],["name/603",[2,25.616]],["parent/603",[511,7.364]],["name/604",[385,29.736,512,41.129]],["parent/604",[]],["name/605",[513,66.037]],["parent/605",[385,3.49,512,4.827]],["name/606",[2,25.616]],["parent/606",[512,4.827,514,5.558]],["name/607",[515,60.803]],["parent/607",[]],["name/608",[516,66.037]],["parent/608",[515,6.78]],["name/609",[2,25.616]],["parent/609",[517,6.78]],["name/610",[518,66.037]],["parent/610",[517,6.78]],["name/611",[519,60.803]],["parent/611",[]],["name/612",[520,66.037]],["parent/612",[519,6.78]],["name/613",[2,25.616]],["parent/613",[521,7.364]],["name/614",[522,60.803]],["parent/614",[]],["name/615",[523,66.037]],["parent/615",[522,6.78]],["name/616",[2,25.616]],["parent/616",[524,5.525]],["name/617",[525,66.037]],["parent/617",[524,5.525]],["name/618",[414,54.78]],["parent/618",[524,5.525]],["name/619",[36,49.546]],["parent/619",[524,5.525]],["name/620",[393,40.864]],["parent/620",[524,5.525]],["name/621",[526,66.037]],["parent/621",[524,5.525]],["name/622",[417,57.355]],["parent/622",[524,5.525]],["name/623",[385,29.736,527,41.129]],["parent/623",[]],["name/624",[528,66.037]],["parent/624",[385,3.49,527,4.827]],["name/625",[2,25.616]],["parent/625",[527,4.827,529,5.558]],["name/626",[530,60.803]],["parent/626",[]],["name/627",[531,66.037]],["parent/627",[530,6.78]],["name/628",[2,25.616]],["parent/628",[532,5.036]],["name/629",[482,54.78]],["parent/629",[532,5.036]],["name/630",[483,57.355]],["parent/630",[532,5.036]],["name/631",[247,60.803]],["parent/631",[532,5.036]],["name/632",[533,66.037]],["parent/632",[532,5.036]],["name/633",[486,52.724]],["parent/633",[532,5.036]],["name/634",[487,52.724]],["parent/634",[532,5.036]],["name/635",[393,40.864]],["parent/635",[532,5.036]],["name/636",[488,52.724]],["parent/636",[532,5.036]],["name/637",[460,51.012]],["parent/637",[532,5.036]],["name/638",[260,60.803]],["parent/638",[532,5.036]],["name/639",[534,60.803]],["parent/639",[]],["name/640",[535,66.037]],["parent/640",[534,6.78]],["name/641",[2,25.616]],["parent/641",[536,7.364]],["name/642",[425,28.514,537,27.694,538,27.694]],["parent/642",[]],["name/643",[539,66.037]],["parent/643",[425,3.448,537,3.349,538,3.349]],["name/644",[2,25.616]],["parent/644",[537,3.349,538,3.349,540,3.564]],["name/645",[159,52.724]],["parent/645",[537,3.349,538,3.349,540,3.564]],["name/646",[541,60.803]],["parent/646",[537,3.349,538,3.349,540,3.564]],["name/647",[393,40.864]],["parent/647",[537,3.349,538,3.349,540,3.564]],["name/648",[542,60.803]],["parent/648",[537,3.349,538,3.349,540,3.564]],["name/649",[385,29.736,543,41.129]],["parent/649",[]],["name/650",[544,66.037]],["parent/650",[385,3.49,543,4.827]],["name/651",[2,25.616]],["parent/651",[543,4.827,545,5.558]],["name/652",[546,60.803]],["parent/652",[]],["name/653",[547,66.037]],["parent/653",[546,6.78]],["name/654",[2,25.616]],["parent/654",[548,5.036]],["name/655",[482,54.78]],["parent/655",[548,5.036]],["name/656",[549,66.037]],["parent/656",[548,5.036]],["name/657",[486,52.724]],["parent/657",[548,5.036]],["name/658",[487,52.724]],["parent/658",[548,5.036]],["name/659",[320,60.803]],["parent/659",[548,5.036]],["name/660",[159,52.724]],["parent/660",[548,5.036]],["name/661",[393,40.864]],["parent/661",[548,5.036]],["name/662",[488,52.724]],["parent/662",[548,5.036]],["name/663",[550,66.037]],["parent/663",[548,5.036]],["name/664",[460,51.012]],["parent/664",[548,5.036]],["name/665",[551,60.803]],["parent/665",[]],["name/666",[552,66.037]],["parent/666",[551,6.78]],["name/667",[2,25.616]],["parent/667",[553,7.364]],["name/668",[425,28.514,554,22.841,555,22.841]],["parent/668",[]],["name/669",[556,66.037]],["parent/669",[425,3.448,554,2.762,555,2.762]],["name/670",[2,25.616]],["parent/670",[554,2.762,555,2.762,557,2.846]],["name/671",[181,52.724]],["parent/671",[554,2.762,555,2.762,557,2.846]],["name/672",[541,60.803]],["parent/672",[554,2.762,555,2.762,557,2.846]],["name/673",[558,66.037]],["parent/673",[554,2.762,555,2.762,557,2.846]],["name/674",[559,66.037]],["parent/674",[554,2.762,555,2.762,557,2.846]],["name/675",[560,66.037]],["parent/675",[554,2.762,555,2.762,557,2.846]],["name/676",[561,66.037]],["parent/676",[554,2.762,555,2.762,557,2.846]],["name/677",[450,54.78]],["parent/677",[554,2.762,555,2.762,557,2.846]],["name/678",[393,40.864]],["parent/678",[554,2.762,555,2.762,557,2.846]],["name/679",[562,66.037]],["parent/679",[554,2.762,555,2.762,557,2.846]],["name/680",[563,66.037]],["parent/680",[554,2.762,555,2.762,557,2.846]],["name/681",[564,66.037]],["parent/681",[554,2.762,555,2.762,557,2.846]],["name/682",[565,66.037]],["parent/682",[554,2.762,555,2.762,557,2.846]],["name/683",[461,60.803]],["parent/683",[554,2.762,555,2.762,557,2.846]],["name/684",[542,60.803]],["parent/684",[554,2.762,555,2.762,557,2.846]],["name/685",[385,29.736,566,41.129]],["parent/685",[]],["name/686",[567,66.037]],["parent/686",[385,3.49,566,4.827]],["name/687",[2,25.616]],["parent/687",[566,4.827,568,5.558]],["name/688",[569,60.803]],["parent/688",[]],["name/689",[570,66.037]],["parent/689",[569,6.78]],["name/690",[2,25.616]],["parent/690",[571,4.493]],["name/691",[572,66.037]],["parent/691",[571,4.493]],["name/692",[573,66.037]],["parent/692",[571,4.493]],["name/693",[484,60.803]],["parent/693",[571,4.493]],["name/694",[485,60.803]],["parent/694",[571,4.493]],["name/695",[334,57.355]],["parent/695",[571,4.493]],["name/696",[181,52.724]],["parent/696",[571,4.493]],["name/697",[445,60.803]],["parent/697",[571,4.493]],["name/698",[447,60.803]],["parent/698",[571,4.493]],["name/699",[450,54.78]],["parent/699",[571,4.493]],["name/700",[486,52.724]],["parent/700",[571,4.493]],["name/701",[487,52.724]],["parent/701",[571,4.493]],["name/702",[393,40.864]],["parent/702",[571,4.493]],["name/703",[454,60.803]],["parent/703",[571,4.493]],["name/704",[488,52.724]],["parent/704",[571,4.493]],["name/705",[459,60.803]],["parent/705",[571,4.493]],["name/706",[574,66.037]],["parent/706",[571,4.493]],["name/707",[460,51.012]],["parent/707",[571,4.493]],["name/708",[575,60.803]],["parent/708",[]],["name/709",[576,66.037]],["parent/709",[575,6.78]],["name/710",[2,25.616]],["parent/710",[577,7.364]],["name/711",[578,34.61,579,43.602]],["parent/711",[]],["name/712",[580,66.037]],["parent/712",[578,4.062,579,5.118]],["name/713",[2,25.616]],["parent/713",[578,4.062,581,5.118]],["name/714",[582,66.037]],["parent/714",[578,4.062,581,5.118]],["name/715",[402,39.283,578,34.61]],["parent/715",[]],["name/716",[583,66.037]],["parent/716",[402,4.611,578,4.062]],["name/717",[2,25.616]],["parent/717",[578,4.062,584,5.118]],["name/718",[585,66.037]],["parent/718",[578,4.062,584,5.118]],["name/719",[586,60.803]],["parent/719",[]],["name/720",[587,66.037]],["parent/720",[586,6.78]],["name/721",[2,25.616]],["parent/721",[588,6.78]],["name/722",[589,57.355]],["parent/722",[588,6.78]],["name/723",[590,39.283,591,43.602]],["parent/723",[]],["name/724",[592,66.037]],["parent/724",[590,4.611,591,5.118]],["name/725",[2,25.616]],["parent/725",[590,4.611,593,5.118]],["name/726",[589,57.355]],["parent/726",[590,4.611,593,5.118]],["name/727",[594,39.283,595,43.602]],["parent/727",[]],["name/728",[596,66.037]],["parent/728",[594,4.611,595,5.118]],["name/729",[2,25.616]],["parent/729",[594,4.611,597,5.118]],["name/730",[589,57.355]],["parent/730",[594,4.611,597,5.118]],["name/731",[598,30.62,599,30.62,600,33.987]],["parent/731",[]],["name/732",[601,66.037]],["parent/732",[598,3.703,599,3.703,600,4.11]],["name/733",[2,25.616]],["parent/733",[598,3.703,599,3.703,602,4.11]],["name/734",[124,52.724]],["parent/734",[598,3.703,599,3.703,602,4.11]],["name/735",[603,60.803]],["parent/735",[]],["name/736",[604,66.037]],["parent/736",[603,6.78]],["name/737",[2,25.616]],["parent/737",[605,6.396]],["name/738",[606,66.037]],["parent/738",[605,6.396]],["name/739",[393,40.864]],["parent/739",[605,6.396]],["name/740",[607,28.514,608,28.514,609,33.987]],["parent/740",[]],["name/741",[610,66.037]],["parent/741",[607,3.448,608,3.448,609,4.11]],["name/742",[2,25.616]],["parent/742",[607,3.448,608,3.448,611,3.703]],["name/743",[612,66.037]],["parent/743",[607,3.448,608,3.448,611,3.703]],["name/744",[393,40.864]],["parent/744",[607,3.448,608,3.448,611,3.703]],["name/745",[613,66.037]],["parent/745",[607,3.448,608,3.448,611,3.703]],["name/746",[614,60.803]],["parent/746",[]],["name/747",[615,66.037]],["parent/747",[614,6.78]],["name/748",[2,25.616]],["parent/748",[616,7.364]],["name/749",[617,60.803]],["parent/749",[]],["name/750",[618,66.037]],["parent/750",[617,6.78]],["name/751",[2,25.616]],["parent/751",[619,6.78]],["name/752",[393,40.864]],["parent/752",[619,6.78]],["name/753",[620,60.803]],["parent/753",[]],["name/754",[621,66.037]],["parent/754",[620,6.78]],["name/755",[2,25.616]],["parent/755",[622,6.78]],["name/756",[393,40.864]],["parent/756",[622,6.78]],["name/757",[623,52.724]],["parent/757",[]],["name/758",[624,66.037]],["parent/758",[623,5.879]],["name/759",[625,66.037]],["parent/759",[623,5.879]],["name/760",[626,66.037]],["parent/760",[623,5.879]],["name/761",[627,66.037]],["parent/761",[623,5.879]],["name/762",[628,60.803]],["parent/762",[]],["name/763",[629,52.724]],["parent/763",[]],["name/764",[180,51.012]],["parent/764",[629,5.879]],["name/765",[2,25.616]],["parent/765",[630,4.22]],["name/766",[631,66.037]],["parent/766",[630,4.22]],["name/767",[632,66.037]],["parent/767",[630,4.22]],["name/768",[633,66.037]],["parent/768",[630,4.22]],["name/769",[186,60.803]],["parent/769",[630,4.22]],["name/770",[187,60.803]],["parent/770",[630,4.22]],["name/771",[124,52.724]],["parent/771",[630,4.22]],["name/772",[634,66.037]],["parent/772",[630,4.22]],["name/773",[635,66.037]],["parent/773",[630,4.22]],["name/774",[636,66.037]],["parent/774",[630,4.22]],["name/775",[637,66.037]],["parent/775",[630,4.22]],["name/776",[638,66.037]],["parent/776",[630,4.22]],["name/777",[639,66.037]],["parent/777",[630,4.22]],["name/778",[640,66.037]],["parent/778",[630,4.22]],["name/779",[641,66.037]],["parent/779",[630,4.22]],["name/780",[642,66.037]],["parent/780",[630,4.22]],["name/781",[643,66.037]],["parent/781",[630,4.22]],["name/782",[644,66.037]],["parent/782",[630,4.22]],["name/783",[645,66.037]],["parent/783",[630,4.22]],["name/784",[646,66.037]],["parent/784",[630,4.22]],["name/785",[647,66.037]],["parent/785",[630,4.22]],["name/786",[648,66.037]],["parent/786",[630,4.22]],["name/787",[649,66.037]],["parent/787",[630,4.22]],["name/788",[650,66.037]],["parent/788",[629,5.879]],["name/789",[651,66.037]],["parent/789",[629,5.879]],["name/790",[178,60.803]],["parent/790",[629,5.879]],["name/791",[652,60.803]],["parent/791",[]],["name/792",[653,57.355]],["parent/792",[652,6.78]],["name/793",[52,43.523]],["parent/793",[654,7.364]],["name/794",[655,57.355]],["parent/794",[656,4.853]],["name/795",[657,57.355]],["parent/795",[656,4.853]],["name/796",[658,57.355]],["parent/796",[656,4.853]],["name/797",[659,57.355]],["parent/797",[656,4.853]],["name/798",[660,57.355]],["parent/798",[656,4.853]],["name/799",[661,57.355]],["parent/799",[656,4.853]],["name/800",[662,57.355]],["parent/800",[656,4.853]],["name/801",[663,57.355]],["parent/801",[656,4.853]],["name/802",[664,57.355]],["parent/802",[656,4.853]],["name/803",[665,57.355]],["parent/803",[656,4.853]],["name/804",[666,57.355]],["parent/804",[656,4.853]],["name/805",[667,57.355]],["parent/805",[656,4.853]],["name/806",[668,57.355]],["parent/806",[656,4.853]],["name/807",[669,60.803]],["parent/807",[]],["name/808",[653,57.355]],["parent/808",[669,6.78]],["name/809",[52,43.523]],["parent/809",[670,7.364]],["name/810",[655,57.355]],["parent/810",[671,4.853]],["name/811",[657,57.355]],["parent/811",[671,4.853]],["name/812",[658,57.355]],["parent/812",[671,4.853]],["name/813",[659,57.355]],["parent/813",[671,4.853]],["name/814",[660,57.355]],["parent/814",[671,4.853]],["name/815",[661,57.355]],["parent/815",[671,4.853]],["name/816",[662,57.355]],["parent/816",[671,4.853]],["name/817",[663,57.355]],["parent/817",[671,4.853]],["name/818",[664,57.355]],["parent/818",[671,4.853]],["name/819",[665,57.355]],["parent/819",[671,4.853]],["name/820",[666,57.355]],["parent/820",[671,4.853]],["name/821",[667,57.355]],["parent/821",[671,4.853]],["name/822",[668,57.355]],["parent/822",[671,4.853]],["name/823",[672,60.803]],["parent/823",[]],["name/824",[653,57.355]],["parent/824",[672,6.78]],["name/825",[52,43.523]],["parent/825",[673,7.364]],["name/826",[655,57.355]],["parent/826",[674,4.853]],["name/827",[657,57.355]],["parent/827",[674,4.853]],["name/828",[658,57.355]],["parent/828",[674,4.853]],["name/829",[659,57.355]],["parent/829",[674,4.853]],["name/830",[660,57.355]],["parent/830",[674,4.853]],["name/831",[661,57.355]],["parent/831",[674,4.853]],["name/832",[662,57.355]],["parent/832",[674,4.853]],["name/833",[663,57.355]],["parent/833",[674,4.853]],["name/834",[664,57.355]],["parent/834",[674,4.853]],["name/835",[665,57.355]],["parent/835",[674,4.853]],["name/836",[666,57.355]],["parent/836",[674,4.853]],["name/837",[667,57.355]],["parent/837",[674,4.853]],["name/838",[668,57.355]],["parent/838",[674,4.853]],["name/839",[675,66.037]],["parent/839",[]],["name/840",[676,66.037]],["parent/840",[]],["name/841",[677,66.037]],["parent/841",[]],["name/842",[678,28.514,679,28.514,680,23.919]],["parent/842",[]],["name/843",[681,60.803]],["parent/843",[678,3.448,679,3.448,680,2.892]],["name/844",[2,25.616]],["parent/844",[678,3.448,679,3.448,682,3.703]],["name/845",[683,66.037]],["parent/845",[678,3.448,679,3.448,682,3.703]],["name/846",[684,66.037]],["parent/846",[678,3.448,679,3.448,682,3.703]],["name/847",[685,66.037]],["parent/847",[678,3.448,679,3.448,682,3.703]],["name/848",[686,47.123]],["parent/848",[]],["name/849",[680,19.597,687,23.362,688,23.362,689,23.362]],["parent/849",[]],["name/850",[690,60.803]],["parent/850",[680,2.417,687,2.881,688,2.881,689,2.881]],["name/851",[2,25.616]],["parent/851",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/852",[692,66.037]],["parent/852",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/853",[693,66.037]],["parent/853",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/854",[694,66.037]],["parent/854",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/855",[680,23.919,695,27.694,696,27.694]],["parent/855",[]],["name/856",[697,60.803]],["parent/856",[680,2.892,695,3.349,696,3.349]],["name/857",[2,25.616]],["parent/857",[695,3.349,696,3.349,698,4.464]],["name/858",[699,60.803]],["parent/858",[680,2.892,695,3.349,696,3.349]],["name/859",[2,25.616]],["parent/859",[695,3.349,696,3.349,700,4.464]],["name/860",[701,60.803]],["parent/860",[680,2.892,695,3.349,696,3.349]],["name/861",[2,25.616]],["parent/861",[695,3.349,696,3.349,702,4.464]],["name/862",[680,23.919,703,30.62,704,22.222]],["parent/862",[]],["name/863",[705,60.803]],["parent/863",[680,2.892,703,3.703,704,2.687]],["name/864",[2,25.616]],["parent/864",[703,3.703,704,2.687,706,4.11]],["name/865",[707,66.037]],["parent/865",[703,3.703,704,2.687,706,4.11]],["name/866",[680,23.919,704,22.222,708,28.514]],["parent/866",[]],["name/867",[709,60.803]],["parent/867",[680,2.892,704,2.687,708,3.448]],["name/868",[2,25.616]],["parent/868",[704,2.687,708,3.448,710,3.703]],["name/869",[340,60.803]],["parent/869",[704,2.687,708,3.448,710,3.703]],["name/870",[341,60.803]],["parent/870",[704,2.687,708,3.448,710,3.703]],["name/871",[338,60.803]],["parent/871",[704,2.687,708,3.448,710,3.703]],["name/872",[680,23.919,704,22.222,711,26.341]],["parent/872",[]],["name/873",[712,60.803]],["parent/873",[680,2.892,704,2.687,711,3.185]],["name/874",[2,25.616]],["parent/874",[704,2.687,711,3.185,713,3.349]],["name/875",[714,66.037]],["parent/875",[704,2.687,711,3.185,713,3.349]],["name/876",[353,57.355]],["parent/876",[704,2.687,711,3.185,713,3.349]],["name/877",[715,66.037]],["parent/877",[704,2.687,711,3.185,713,3.349]],["name/878",[716,66.037]],["parent/878",[704,2.687,711,3.185,713,3.349]],["name/879",[365,60.803]],["parent/879",[704,2.687,711,3.185,713,3.349]],["name/880",[366,57.355]],["parent/880",[704,2.687,711,3.185,713,3.349]],["name/881",[1,60.803]],["parent/881",[11,6.396]],["name/882",[14,54.78]],["parent/882",[11,6.396]],["name/883",[20,60.803]],["parent/883",[23,6.396]],["name/884",[25,60.803]],["parent/884",[23,6.396]],["name/885",[29,60.803]],["parent/885",[64,4.624]],["name/886",[32,60.803]],["parent/886",[64,4.624]],["name/887",[41,60.803]],["parent/887",[64,4.624]],["name/888",[37,60.803]],["parent/888",[64,4.624]],["name/889",[47,60.803]],["parent/889",[64,4.624]],["name/890",[50,60.803]],["parent/890",[64,4.624]],["name/891",[51,60.803]],["parent/891",[64,4.624]],["name/892",[55,60.803]],["parent/892",[64,4.624]],["name/893",[63,60.803]],["parent/893",[64,4.624]],["name/894",[67,60.803]],["parent/894",[64,4.624]],["name/895",[70,60.803]],["parent/895",[64,4.624]],["name/896",[77,60.803]],["parent/896",[64,4.624]],["name/897",[80,60.803]],["parent/897",[64,4.624]],["name/898",[81,60.803]],["parent/898",[64,4.624]],["name/899",[83,60.803]],["parent/899",[64,4.624]],["name/900",[85,60.803]],["parent/900",[91,6.108]],["name/901",[89,60.803]],["parent/901",[91,6.108]],["name/902",[93,60.803]],["parent/902",[91,6.108]],["name/903",[96,60.803]],["parent/903",[136,4.695]],["name/904",[123,60.803]],["parent/904",[136,4.695]],["name/905",[128,60.803]],["parent/905",[136,4.695]],["name/906",[127,51.012]],["parent/906",[136,4.695]],["name/907",[135,60.803]],["parent/907",[136,4.695]],["name/908",[138,54.78]],["parent/908",[136,4.695]],["name/909",[144,60.803]],["parent/909",[136,4.695]],["name/910",[148,57.355]],["parent/910",[136,4.695]],["name/911",[152,60.803]],["parent/911",[136,4.695]],["name/912",[159,52.724]],["parent/912",[136,4.695]],["name/913",[173,60.803]],["parent/913",[136,4.695]],["name/914",[181,52.724]],["parent/914",[136,4.695]],["name/915",[180,51.012]],["parent/915",[136,4.695]],["name/916",[194,60.803]],["parent/916",[136,4.695]],["name/917",[200,54.78]],["parent/917",[196,5.525]],["name/918",[227,60.803]],["parent/918",[196,5.525]],["name/919",[230,60.803]],["parent/919",[196,5.525]],["name/920",[240,60.803]],["parent/920",[196,5.525]],["name/921",[127,51.012]],["parent/921",[196,5.525]],["name/922",[229,48.263]],["parent/922",[196,5.525]],["name/923",[245,60.803]],["parent/923",[282,4.941]],["name/924",[332,60.803]],["parent/924",[282,4.941]],["name/925",[347,60.803]],["parent/925",[282,4.941]],["name/926",[318,60.803]],["parent/926",[282,4.941]],["name/927",[266,60.803]],["parent/927",[282,4.941]],["name/928",[288,60.803]],["parent/928",[282,4.941]],["name/929",[234,57.355]],["parent/929",[282,4.941]],["name/930",[277,60.803]],["parent/930",[282,4.941]],["name/931",[381,60.803]],["parent/931",[282,4.941]],["name/932",[284,60.803]],["parent/932",[282,4.941]],["name/933",[310,60.803]],["parent/933",[282,4.941]],["name/934",[180,51.012]],["parent/934",[628,6.78]],["name/935",[681,60.803]],["parent/935",[686,5.255]],["name/936",[690,60.803]],["parent/936",[686,5.255]],["name/937",[697,60.803]],["parent/937",[686,5.255]],["name/938",[699,60.803]],["parent/938",[686,5.255]],["name/939",[701,60.803]],["parent/939",[686,5.255]],["name/940",[712,60.803]],["parent/940",[686,5.255]],["name/941",[705,60.803]],["parent/941",[686,5.255]],["name/942",[709,60.803]],["parent/942",[686,5.255]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":166,"name":{"164":{}},"parent":{}}],["__type",{"_index":52,"name":{"47":{},"64":{},"96":{},"98":{},"104":{},"111":{},"163":{},"165":{},"262":{},"264":{},"793":{},"809":{},"825":{}},"parent":{}}],["_outbuffer",{"_index":640,"name":{"778":{}},"parent":{}}],["_outbuffercursor",{"_index":641,"name":{"779":{}},"parent":{}}],["_signatureset",{"_index":638,"name":{"776":{}},"parent":{}}],["_workbuffer",{"_index":639,"name":{"777":{}},"parent":{}}],["account",{"_index":441,"name":{"496":{}},"parent":{}}],["account.component",{"_index":495,"name":{"569":{}},"parent":{"570":{}}}],["account.component.createaccountcomponent",{"_index":497,"name":{},"parent":{"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["account/create",{"_index":494,"name":{"569":{}},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["accountaddress",{"_index":442,"name":{"497":{}},"parent":{}}],["accountdetails",{"_index":96,"name":{"89":{},"903":{}},"parent":{}}],["accountdetailscomponent",{"_index":426,"name":{"481":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"881":{}},"parent":{}}],["accountinfoform",{"_index":440,"name":{"495":{}},"parent":{}}],["accountinfoformstub",{"_index":456,"name":{"522":{}},"parent":{}}],["accountregistry",{"_index":313,"name":{"357":{}},"parent":{}}],["accounts",{"_index":350,"name":{"403":{},"499":{},"551":{}},"parent":{}}],["accountscomponent",{"_index":480,"name":{"548":{}},"parent":{}}],["accountsearchcomponent",{"_index":464,"name":{"530":{}},"parent":{}}],["accountslist",{"_index":351,"name":{"404":{}},"parent":{}}],["accountsmodule",{"_index":491,"name":{"567":{}},"parent":{}}],["accountsroutingmodule",{"_index":477,"name":{"545":{}},"parent":{}}],["accountssubject",{"_index":352,"name":{"405":{}},"parent":{}}],["accountstatus",{"_index":443,"name":{"498":{}},"parent":{}}],["accountstype",{"_index":444,"name":{"500":{},"555":{}},"parent":{}}],["accounttypes",{"_index":446,"name":{"507":{},"556":{},"577":{}},"parent":{}}],["action",{"_index":138,"name":{"132":{},"133":{},"590":{},"908":{}},"parent":{}}],["actions",{"_index":353,"name":{"406":{},"591":{},"876":{}},"parent":{}}],["actionslist",{"_index":354,"name":{"407":{}},"parent":{}}],["actionssubject",{"_index":355,"name":{"408":{}},"parent":{}}],["activatedroutestub",{"_index":681,"name":{"843":{},"935":{}},"parent":{}}],["add0x",{"_index":627,"name":{"761":{}},"parent":{}}],["addaccount",{"_index":379,"name":{"433":{}},"parent":{}}],["address",{"_index":160,"name":{"157":{},"195":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":469,"name":{"535":{}},"parent":{}}],["addresssearchformstub",{"_index":473,"name":{"541":{}},"parent":{}}],["addresssearchloading",{"_index":471,"name":{"537":{}},"parent":{}}],["addresssearchsubmitted",{"_index":470,"name":{"536":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtoken",{"_index":324,"name":{"372":{}},"parent":{}}],["addtransaction",{"_index":342,"name":{"392":{}},"parent":{}}],["addtrusteduser",{"_index":261,"name":{"302":{}},"parent":{}}],["admincomponent",{"_index":504,"name":{"586":{}},"parent":{}}],["adminmodule",{"_index":510,"name":{"602":{}},"parent":{}}],["adminroutingmodule",{"_index":501,"name":{"583":{}},"parent":{}}],["age",{"_index":97,"name":{"90":{}},"parent":{}}],["algo",{"_index":131,"name":{"125":{},"256":{},"273":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"881":{},"882":{}}}],["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":{"883":{},"884":{}}}],["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":64,"name":{"58":{}},"parent":{"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["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":{},"55":{}}}],["app/_helpers/http",{"_index":61,"name":{"56":{}},"parent":{"57":{}}}],["app/_helpers/mock",{"_index":65,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["app/_helpers/read",{"_index":76,"name":{"68":{}},"parent":{"69":{}}}],["app/_helpers/schema",{"_index":78,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["app/_helpers/sync",{"_index":82,"name":{"73":{}},"parent":{"74":{}}}],["app/_interceptors",{"_index":91,"name":{"83":{}},"parent":{"900":{},"901":{},"902":{}}}],["app/_interceptors/error.interceptor",{"_index":84,"name":{"75":{}},"parent":{"76":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":86,"name":{},"parent":{"77":{},"78":{}}}],["app/_interceptors/http",{"_index":87,"name":{"79":{}},"parent":{"80":{},"81":{},"82":{}}}],["app/_interceptors/logging.interceptor",{"_index":92,"name":{"84":{}},"parent":{"85":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":94,"name":{},"parent":{"86":{},"87":{}}}],["app/_models",{"_index":136,"name":{"130":{}},"parent":{"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{}}}],["app/_models/account",{"_index":95,"name":{"88":{}},"parent":{"89":{},"117":{},"121":{},"124":{},"129":{}}}],["app/_models/account.accountdetails",{"_index":98,"name":{},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"103":{},"104":{},"108":{},"109":{},"110":{},"111":{}}}],["app/_models/account.accountdetails.__type",{"_index":105,"name":{},"parent":{"97":{},"98":{},"101":{},"102":{},"105":{},"106":{},"107":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":107,"name":{},"parent":{"99":{},"100":{}}}],["app/_models/account.meta",{"_index":125,"name":{},"parent":{"118":{},"119":{},"120":{}}}],["app/_models/account.metaresponse",{"_index":129,"name":{},"parent":{"122":{},"123":{}}}],["app/_models/account.signature",{"_index":132,"name":{},"parent":{"125":{},"126":{},"127":{},"128":{}}}],["app/_models/mappings",{"_index":137,"name":{"131":{}},"parent":{"132":{}}}],["app/_models/mappings.action",{"_index":139,"name":{},"parent":{"133":{},"134":{},"135":{},"136":{},"137":{}}}],["app/_models/settings",{"_index":143,"name":{"138":{}},"parent":{"139":{},"145":{}}}],["app/_models/settings.settings",{"_index":145,"name":{},"parent":{"140":{},"141":{},"142":{},"143":{},"144":{}}}],["app/_models/settings.w3",{"_index":149,"name":{},"parent":{"146":{},"147":{}}}],["app/_models/staff",{"_index":151,"name":{"148":{}},"parent":{"149":{}}}],["app/_models/staff.staff",{"_index":154,"name":{},"parent":{"150":{},"151":{},"152":{},"153":{},"154":{}}}],["app/_models/token",{"_index":158,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/token.token",{"_index":161,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"168":{},"169":{}}}],["app/_models/token.token.__type",{"_index":167,"name":{},"parent":{"164":{},"165":{}}}],["app/_models/token.token.__type.__type",{"_index":169,"name":{},"parent":{"166":{},"167":{}}}],["app/_models/transaction",{"_index":172,"name":{"170":{}},"parent":{"171":{},"179":{},"188":{},"194":{}}}],["app/_models/transaction.conversion",{"_index":175,"name":{},"parent":{"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["app/_models/transaction.transaction",{"_index":183,"name":{},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{}}}],["app/_models/transaction.tx",{"_index":189,"name":{},"parent":{"189":{},"190":{},"191":{},"192":{},"193":{}}}],["app/_models/transaction.txtoken",{"_index":195,"name":{},"parent":{"195":{},"196":{},"197":{}}}],["app/_pgp",{"_index":196,"name":{"198":{}},"parent":{"917":{},"918":{},"919":{},"920":{},"921":{},"922":{}}}],["app/_pgp/pgp",{"_index":197,"name":{"199":{},"253":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["app/_services",{"_index":282,"name":{"323":{}},"parent":{"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{},"930":{},"931":{},"932":{},"933":{}}}],["app/_services/auth.service",{"_index":244,"name":{"284":{}},"parent":{"285":{}}}],["app/_services/auth.service.authservice",{"_index":246,"name":{},"parent":{"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{}}}],["app/_services/block",{"_index":264,"name":{"307":{}},"parent":{"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{}}}],["app/_services/error",{"_index":275,"name":{"317":{}},"parent":{"318":{},"319":{},"320":{},"321":{},"322":{}}}],["app/_services/keystore.service",{"_index":283,"name":{"324":{}},"parent":{"325":{}}}],["app/_services/keystore.service.keystoreservice",{"_index":285,"name":{},"parent":{"326":{},"327":{},"328":{}}}],["app/_services/location.service",{"_index":287,"name":{"329":{}},"parent":{"330":{}}}],["app/_services/location.service.locationservice",{"_index":289,"name":{},"parent":{"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{}}}],["app/_services/logging.service",{"_index":300,"name":{"342":{}},"parent":{"343":{}}}],["app/_services/logging.service.loggingservice",{"_index":301,"name":{},"parent":{"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{}}}],["app/_services/registry.service",{"_index":309,"name":{"352":{}},"parent":{"353":{}}}],["app/_services/registry.service.registryservice",{"_index":312,"name":{},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{}}}],["app/_services/token.service",{"_index":317,"name":{"362":{}},"parent":{"363":{}}}],["app/_services/token.service.tokenservice",{"_index":319,"name":{},"parent":{"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{}}}],["app/_services/transaction.service",{"_index":331,"name":{"379":{}},"parent":{"380":{}}}],["app/_services/transaction.service.transactionservice",{"_index":333,"name":{},"parent":{"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{}}}],["app/_services/user.service",{"_index":346,"name":{"396":{}},"parent":{"397":{}}}],["app/_services/user.service.userservice",{"_index":348,"name":{},"parent":{"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":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{}}}],["app/_services/web3.service",{"_index":380,"name":{"434":{}},"parent":{"435":{}}}],["app/_services/web3.service.web3service",{"_index":382,"name":{},"parent":{"436":{},"437":{},"438":{}}}],["app/app",{"_index":384,"name":{"439":{}},"parent":{"440":{},"441":{}}}],["app/app.component",{"_index":388,"name":{"442":{}},"parent":{"443":{}}}],["app/app.component.appcomponent",{"_index":390,"name":{},"parent":{"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{}}}],["app/app.module",{"_index":397,"name":{"451":{}},"parent":{"452":{}}}],["app/app.module.appmodule",{"_index":399,"name":{},"parent":{"453":{}}}],["app/auth/_directives",{"_index":400,"name":{"454":{}},"parent":{}}],["app/auth/_directives/password",{"_index":401,"name":{"455":{}},"parent":{"456":{},"457":{},"458":{},"459":{},"460":{}}}],["app/auth/auth",{"_index":407,"name":{"461":{}},"parent":{"462":{},"463":{}}}],["app/auth/auth.component",{"_index":410,"name":{"464":{}},"parent":{"465":{}}}],["app/auth/auth.component.authcomponent",{"_index":412,"name":{},"parent":{"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{}}}],["app/auth/auth.module",{"_index":420,"name":{"477":{}},"parent":{"478":{}}}],["app/auth/auth.module.authmodule",{"_index":422,"name":{},"parent":{"479":{}}}],["app/pages/accounts/account",{"_index":423,"name":{"480":{},"529":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["app/pages/accounts/accounts",{"_index":476,"name":{"544":{}},"parent":{"545":{},"546":{}}}],["app/pages/accounts/accounts.component",{"_index":479,"name":{"547":{}},"parent":{"548":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":481,"name":{},"parent":{"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{}}}],["app/pages/accounts/accounts.module",{"_index":490,"name":{"566":{}},"parent":{"567":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":492,"name":{},"parent":{"568":{}}}],["app/pages/accounts/create",{"_index":493,"name":{"569":{}},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["app/pages/admin/admin",{"_index":500,"name":{"582":{}},"parent":{"583":{},"584":{}}}],["app/pages/admin/admin.component",{"_index":503,"name":{"585":{}},"parent":{"586":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":505,"name":{},"parent":{"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{}}}],["app/pages/admin/admin.module",{"_index":509,"name":{"601":{}},"parent":{"602":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":511,"name":{},"parent":{"603":{}}}],["app/pages/pages",{"_index":512,"name":{"604":{}},"parent":{"605":{},"606":{}}}],["app/pages/pages.component",{"_index":515,"name":{"607":{}},"parent":{"608":{}}}],["app/pages/pages.component.pagescomponent",{"_index":517,"name":{},"parent":{"609":{},"610":{}}}],["app/pages/pages.module",{"_index":519,"name":{"611":{}},"parent":{"612":{}}}],["app/pages/pages.module.pagesmodule",{"_index":521,"name":{},"parent":{"613":{}}}],["app/pages/settings/organization/organization.component",{"_index":522,"name":{"614":{}},"parent":{"615":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":524,"name":{},"parent":{"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{}}}],["app/pages/settings/settings",{"_index":527,"name":{"623":{}},"parent":{"624":{},"625":{}}}],["app/pages/settings/settings.component",{"_index":530,"name":{"626":{}},"parent":{"627":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":532,"name":{},"parent":{"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{}}}],["app/pages/settings/settings.module",{"_index":534,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":536,"name":{},"parent":{"641":{}}}],["app/pages/tokens/token",{"_index":537,"name":{"642":{}},"parent":{"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["app/pages/tokens/tokens",{"_index":543,"name":{"649":{}},"parent":{"650":{},"651":{}}}],["app/pages/tokens/tokens.component",{"_index":546,"name":{"652":{}},"parent":{"653":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":548,"name":{},"parent":{"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{}}}],["app/pages/tokens/tokens.module",{"_index":551,"name":{"665":{}},"parent":{"666":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":553,"name":{},"parent":{"667":{}}}],["app/pages/transactions/transaction",{"_index":554,"name":{"668":{}},"parent":{"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["app/pages/transactions/transactions",{"_index":566,"name":{"685":{}},"parent":{"686":{},"687":{}}}],["app/pages/transactions/transactions.component",{"_index":569,"name":{"688":{}},"parent":{"689":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":571,"name":{},"parent":{"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{}}}],["app/pages/transactions/transactions.module",{"_index":575,"name":{"708":{}},"parent":{"709":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":577,"name":{},"parent":{"710":{}}}],["app/shared/_directives/menu",{"_index":578,"name":{"711":{},"715":{}},"parent":{"712":{},"713":{},"714":{},"716":{},"717":{},"718":{}}}],["app/shared/_pipes/safe.pipe",{"_index":586,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":588,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/_pipes/token",{"_index":590,"name":{"723":{}},"parent":{"724":{},"725":{},"726":{}}}],["app/shared/_pipes/unix",{"_index":594,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{}}}],["app/shared/error",{"_index":598,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{}}}],["app/shared/footer/footer.component",{"_index":603,"name":{"735":{}},"parent":{"736":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":605,"name":{},"parent":{"737":{},"738":{},"739":{}}}],["app/shared/network",{"_index":607,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{},"744":{},"745":{}}}],["app/shared/shared.module",{"_index":614,"name":{"746":{}},"parent":{"747":{}}}],["app/shared/shared.module.sharedmodule",{"_index":616,"name":{},"parent":{"748":{}}}],["app/shared/sidebar/sidebar.component",{"_index":617,"name":{"749":{}},"parent":{"750":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":619,"name":{},"parent":{"751":{},"752":{}}}],["app/shared/topbar/topbar.component",{"_index":620,"name":{"753":{}},"parent":{"754":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":622,"name":{},"parent":{"755":{},"756":{}}}],["appcomponent",{"_index":389,"name":{"443":{}},"parent":{}}],["appmodule",{"_index":398,"name":{"452":{}},"parent":{}}],["approutingmodule",{"_index":386,"name":{"440":{}},"parent":{}}],["approval",{"_index":140,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":506,"name":{"596":{}},"parent":{}}],["approveaction",{"_index":366,"name":{"420":{},"597":{},"880":{}},"parent":{}}],["area",{"_index":112,"name":{"105":{},"515":{}},"parent":{}}],["area_name",{"_index":113,"name":{"106":{}},"parent":{}}],["area_type",{"_index":114,"name":{"107":{}},"parent":{}}],["areanames",{"_index":290,"name":{"332":{},"502":{},"576":{}},"parent":{}}],["areanameslist",{"_index":291,"name":{"333":{}},"parent":{}}],["areanamessubject",{"_index":292,"name":{"334":{}},"parent":{}}],["areatype",{"_index":451,"name":{"516":{}},"parent":{}}],["areatypes",{"_index":293,"name":{"335":{},"503":{}},"parent":{}}],["areatypeslist",{"_index":294,"name":{"336":{}},"parent":{}}],["areatypessubject",{"_index":295,"name":{"337":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"885":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":628,"name":{"762":{}},"parent":{"934":{}}}],["assets/js/ethtx/dist/hex",{"_index":623,"name":{"757":{}},"parent":{"758":{},"759":{},"760":{},"761":{}}}],["assets/js/ethtx/dist/tx",{"_index":629,"name":{"763":{}},"parent":{"764":{},"788":{},"789":{},"790":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":630,"name":{},"parent":{"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{}}}],["authcomponent",{"_index":411,"name":{"465":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"883":{}},"parent":{}}],["authmodule",{"_index":421,"name":{"478":{}},"parent":{}}],["authroutingmodule",{"_index":408,"name":{"462":{}},"parent":{}}],["authservice",{"_index":245,"name":{"285":{},"923":{}},"parent":{}}],["backend",{"_index":66,"name":{"59":{}},"parent":{"60":{},"63":{}}}],["backend.mockbackendinterceptor",{"_index":68,"name":{},"parent":{"61":{},"62":{}}}],["backend.mockbackendprovider",{"_index":71,"name":{},"parent":{"64":{}}}],["backend.mockbackendprovider.__type",{"_index":73,"name":{},"parent":{"65":{},"66":{},"67":{}}}],["balance",{"_index":99,"name":{"91":{},"167":{}},"parent":{}}],["block",{"_index":188,"name":{"189":{}},"parent":{}}],["blocksync",{"_index":270,"name":{"312":{}},"parent":{}}],["blocksyncservice",{"_index":266,"name":{"308":{},"927":{}},"parent":{}}],["bloxberg:8996",{"_index":106,"name":{"99":{}},"parent":{}}],["bloxbergchainid",{"_index":657,"name":{"795":{},"811":{},"827":{}},"parent":{}}],["bloxberglink",{"_index":449,"name":{"512":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["canonicalorder",{"_index":645,"name":{"783":{}},"parent":{}}],["categories",{"_index":356,"name":{"409":{},"501":{},"575":{}},"parent":{}}],["categorieslist",{"_index":357,"name":{"410":{}},"parent":{}}],["categoriessubject",{"_index":358,"name":{"411":{}},"parent":{}}],["category",{"_index":100,"name":{"92":{},"514":{}},"parent":{}}],["chainid",{"_index":637,"name":{"775":{}},"parent":{}}],["changeaccountinfo",{"_index":362,"name":{"416":{}},"parent":{}}],["ciccacheurl",{"_index":663,"name":{"801":{},"817":{},"833":{}},"parent":{}}],["cicconvert",{"_index":396,"name":{"450":{}},"parent":{}}],["cicmetaurl",{"_index":661,"name":{"799":{},"815":{},"831":{}},"parent":{}}],["cictransfer",{"_index":395,"name":{"449":{}},"parent":{}}],["cicussdurl",{"_index":665,"name":{"803":{},"819":{},"835":{}},"parent":{}}],["clearkeysinkeyring",{"_index":201,"name":{"201":{},"228":{}},"parent":{}}],["clearsignature",{"_index":649,"name":{"787":{}},"parent":{}}],["close",{"_index":542,"name":{"648":{},"684":{}},"parent":{}}],["closewindow",{"_index":541,"name":{"646":{},"672":{}},"parent":{}}],["columnstodisplay",{"_index":549,"name":{"656":{}},"parent":{}}],["comment",{"_index":153,"name":{"150":{}},"parent":{}}],["config.interceptor",{"_index":88,"name":{"79":{}},"parent":{"80":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":90,"name":{},"parent":{"81":{},"82":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"48":{},"51":{},"61":{},"77":{},"81":{},"86":{},"140":{},"227":{},"255":{},"286":{},"309":{},"319":{},"328":{},"331":{},"344":{},"361":{},"364":{},"381":{},"398":{},"438":{},"441":{},"444":{},"453":{},"457":{},"463":{},"466":{},"479":{},"482":{},"531":{},"546":{},"549":{},"568":{},"571":{},"584":{},"587":{},"603":{},"606":{},"609":{},"613":{},"616":{},"625":{},"628":{},"641":{},"644":{},"651":{},"654":{},"667":{},"670":{},"687":{},"690":{},"710":{},"713":{},"717":{},"721":{},"725":{},"729":{},"733":{},"737":{},"742":{},"748":{},"751":{},"755":{},"765":{},"844":{},"851":{},"857":{},"859":{},"861":{},"864":{},"868":{},"874":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":173,"name":{"171":{},"913":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":461,"name":{"528":{},"683":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"886":{}},"parent":{}}],["createaccountcomponent",{"_index":496,"name":{"570":{}},"parent":{}}],["createform",{"_index":498,"name":{"572":{}},"parent":{}}],["createformstub",{"_index":499,"name":{"580":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"68":{}},"parent":{"43":{},"69":{}}}],["currentyear",{"_index":606,"name":{"738":{}},"parent":{}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"888":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"887":{}},"parent":{}}],["dashboardurl",{"_index":668,"name":{"806":{},"822":{},"838":{}},"parent":{}}],["data",{"_index":124,"name":{"118":{},"126":{},"274":{},"734":{},"771":{}},"parent":{}}],["datasource",{"_index":482,"name":{"550":{},"588":{},"629":{},"655":{}},"parent":{}}],["date.pipe",{"_index":595,"name":{"727":{}},"parent":{"728":{}}}],["date.pipe.unixdatepipe",{"_index":597,"name":{},"parent":{"729":{},"730":{}}}],["date_registered",{"_index":101,"name":{"93":{}},"parent":{}}],["decimals",{"_index":162,"name":{"158":{}},"parent":{}}],["defaultaccount",{"_index":135,"name":{"129":{},"907":{}},"parent":{}}],["defaultpagesize",{"_index":484,"name":{"553":{},"693":{}},"parent":{}}],["destinationtoken",{"_index":174,"name":{"172":{}},"parent":{}}],["details.component",{"_index":425,"name":{"480":{},"642":{},"668":{}},"parent":{"481":{},"643":{},"669":{}}}],["details.component.accountdetailscomponent",{"_index":427,"name":{},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{}}}],["details.component.tokendetailscomponent",{"_index":540,"name":{},"parent":{"644":{},"645":{},"646":{},"647":{},"648":{}}}],["details.component.transactiondetailscomponent",{"_index":557,"name":{},"parent":{"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["details/account",{"_index":424,"name":{"480":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{}}}],["details/token",{"_index":538,"name":{"642":{}},"parent":{"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["details/transaction",{"_index":555,"name":{"668":{}},"parent":{"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["dgst",{"_index":232,"name":{"257":{}},"parent":{}}],["dialog",{"_index":280,"name":{"321":{}},"parent":{}}],["dialog.component",{"_index":600,"name":{"731":{}},"parent":{"732":{}}}],["dialog.component.errordialogcomponent",{"_index":602,"name":{},"parent":{"733":{},"734":{}}}],["dialog.service",{"_index":276,"name":{"317":{}},"parent":{"318":{}}}],["dialog.service.errordialogservice",{"_index":278,"name":{},"parent":{"319":{},"320":{},"321":{},"322":{}}}],["dialog/error",{"_index":599,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{}}}],["digest",{"_index":133,"name":{"127":{},"271":{},"275":{}},"parent":{}}],["directive",{"_index":689,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["disapproveaction",{"_index":507,"name":{"598":{}},"parent":{}}],["displayedcolumns",{"_index":483,"name":{"552":{},"589":{},"630":{}},"parent":{}}],["dofilter",{"_index":488,"name":{"561":{},"595":{},"636":{},"662":{},"704":{}},"parent":{}}],["dotransactionfilter",{"_index":452,"name":{"518":{}},"parent":{}}],["douserfilter",{"_index":453,"name":{"519":{}},"parent":{}}],["downloadcsv",{"_index":460,"name":{"527":{},"565":{},"600":{},"637":{},"664":{},"707":{}},"parent":{}}],["email",{"_index":118,"name":{"112":{},"151":{}},"parent":{}}],["engine",{"_index":134,"name":{"128":{},"146":{},"258":{},"276":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["environment",{"_index":653,"name":{"792":{},"808":{},"824":{}},"parent":{}}],["environments/environment",{"_index":672,"name":{"823":{}},"parent":{"824":{}}}],["environments/environment.dev",{"_index":652,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev.environment",{"_index":654,"name":{},"parent":{"793":{}}}],["environments/environment.dev.environment.__type",{"_index":656,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{}}}],["environments/environment.environment",{"_index":673,"name":{},"parent":{"825":{}}}],["environments/environment.environment.__type",{"_index":674,"name":{},"parent":{"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{},"838":{}}}],["environments/environment.prod",{"_index":669,"name":{"807":{}},"parent":{"808":{}}}],["environments/environment.prod.environment",{"_index":670,"name":{},"parent":{"809":{}}}],["environments/environment.prod.environment.__type",{"_index":671,"name":{},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["errordialogcomponent",{"_index":601,"name":{"732":{}},"parent":{}}],["errordialogservice",{"_index":277,"name":{"318":{},"930":{}},"parent":{}}],["errorinterceptor",{"_index":85,"name":{"76":{},"900":{}},"parent":{}}],["evm",{"_index":104,"name":{"97":{}},"parent":{}}],["expandcollapse",{"_index":508,"name":{"599":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"889":{}},"parent":{}}],["fetcher",{"_index":274,"name":{"316":{}},"parent":{}}],["filegetter",{"_index":311,"name":{"354":{}},"parent":{}}],["filteraccounts",{"_index":458,"name":{"524":{},"563":{}},"parent":{}}],["filtertransactions",{"_index":459,"name":{"525":{},"705":{}},"parent":{}}],["fingerprint",{"_index":237,"name":{"266":{},"278":{}},"parent":{}}],["fn",{"_index":119,"name":{"113":{}},"parent":{}}],["footercomponent",{"_index":604,"name":{"736":{}},"parent":{}}],["footerstubcomponent",{"_index":701,"name":{"860":{},"939":{}},"parent":{}}],["from",{"_index":182,"name":{"180":{}},"parent":{}}],["fromhex",{"_index":624,"name":{"758":{}},"parent":{}}],["fromvalue",{"_index":176,"name":{"173":{}},"parent":{}}],["gaslimit",{"_index":633,"name":{"768":{}},"parent":{}}],["gasprice",{"_index":632,"name":{"767":{}},"parent":{}}],["gender",{"_index":102,"name":{"94":{}},"parent":{}}],["genders",{"_index":448,"name":{"509":{},"578":{}},"parent":{}}],["getaccountbyaddress",{"_index":371,"name":{"425":{}},"parent":{}}],["getaccountbyphone",{"_index":372,"name":{"426":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":368,"name":{"422":{}},"parent":{}}],["getaccountinfo",{"_index":344,"name":{"394":{}},"parent":{}}],["getaccountregistry",{"_index":316,"name":{"360":{}},"parent":{}}],["getaccountstatus",{"_index":360,"name":{"414":{}},"parent":{}}],["getaccounttypes",{"_index":376,"name":{"430":{}},"parent":{}}],["getactionbyid",{"_index":365,"name":{"419":{},"879":{}},"parent":{}}],["getactions",{"_index":364,"name":{"418":{}},"parent":{}}],["getaddresstransactions",{"_index":339,"name":{"389":{}},"parent":{}}],["getalltransactions",{"_index":338,"name":{"388":{},"871":{}},"parent":{}}],["getareanamebylocation",{"_index":297,"name":{"339":{}},"parent":{}}],["getareanames",{"_index":296,"name":{"338":{}},"parent":{}}],["getareatypebyarea",{"_index":299,"name":{"341":{}},"parent":{}}],["getareatypes",{"_index":298,"name":{"340":{}},"parent":{}}],["getbysymbol",{"_index":707,"name":{"865":{}},"parent":{}}],["getcategories",{"_index":374,"name":{"428":{}},"parent":{}}],["getcategorybyproduct",{"_index":375,"name":{"429":{}},"parent":{}}],["getchallenge",{"_index":256,"name":{"297":{}},"parent":{}}],["getencryptkeys",{"_index":203,"name":{"202":{},"229":{}},"parent":{}}],["getfingerprint",{"_index":204,"name":{"203":{},"230":{}},"parent":{}}],["getgenders",{"_index":378,"name":{"432":{}},"parent":{}}],["getinstance",{"_index":383,"name":{"437":{}},"parent":{}}],["getkeyid",{"_index":205,"name":{"204":{},"231":{}},"parent":{}}],["getkeysforid",{"_index":206,"name":{"205":{},"232":{}},"parent":{}}],["getkeystore",{"_index":286,"name":{"327":{}},"parent":{}}],["getlockedaccounts",{"_index":361,"name":{"415":{}},"parent":{}}],["getprivatekey",{"_index":207,"name":{"206":{},"233":{},"305":{}},"parent":{}}],["getprivatekeyforid",{"_index":208,"name":{"207":{},"234":{}},"parent":{}}],["getprivatekeyid",{"_index":209,"name":{"208":{},"235":{}},"parent":{}}],["getprivatekeyinfo",{"_index":263,"name":{"306":{}},"parent":{}}],["getprivatekeys",{"_index":210,"name":{"209":{},"236":{}},"parent":{}}],["getpublickeyforid",{"_index":211,"name":{"210":{},"237":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":212,"name":{"211":{},"238":{}},"parent":{}}],["getpublickeys",{"_index":213,"name":{"212":{},"239":{},"304":{}},"parent":{}}],["getpublickeysforaddress",{"_index":214,"name":{"213":{},"240":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"358":{}},"parent":{}}],["getsessiontoken",{"_index":251,"name":{"292":{}},"parent":{}}],["getter",{"_index":62,"name":{"56":{}},"parent":{"57":{}}}],["gettokenbalance",{"_index":328,"name":{"376":{}},"parent":{}}],["gettokenbyaddress",{"_index":326,"name":{"374":{}},"parent":{}}],["gettokenbysymbol",{"_index":327,"name":{"375":{}},"parent":{}}],["gettokenname",{"_index":329,"name":{"377":{}},"parent":{}}],["gettokenregistry",{"_index":315,"name":{"359":{}},"parent":{}}],["gettokens",{"_index":325,"name":{"373":{}},"parent":{}}],["gettokensymbol",{"_index":330,"name":{"378":{}},"parent":{}}],["gettransactiontypes",{"_index":377,"name":{"431":{}},"parent":{}}],["gettrustedactivekeys",{"_index":215,"name":{"214":{},"241":{}},"parent":{}}],["gettrustedkeys",{"_index":216,"name":{"215":{},"242":{}},"parent":{}}],["gettrustedusers",{"_index":262,"name":{"303":{}},"parent":{}}],["getuser",{"_index":716,"name":{"878":{}},"parent":{}}],["getuserbyid",{"_index":715,"name":{"877":{}},"parent":{}}],["getwithtoken",{"_index":254,"name":{"295":{}},"parent":{}}],["globalerrorhandler",{"_index":55,"name":{"50":{},"892":{}},"parent":{}}],["handleerror",{"_index":58,"name":{"53":{}},"parent":{}}],["handlenetworkchange",{"_index":613,"name":{"745":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"46":{},"50":{}}}],["handler.globalerrorhandler",{"_index":56,"name":{},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{}}}],["handler.httperror",{"_index":53,"name":{},"parent":{"47":{},"48":{},"49":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":349,"name":{"399":{}},"parent":{}}],["hextovalue",{"_index":651,"name":{"789":{}},"parent":{}}],["httpconfiginterceptor",{"_index":89,"name":{"80":{},"901":{}},"parent":{}}],["httperror",{"_index":51,"name":{"46":{},"891":{}},"parent":{}}],["httpgetter",{"_index":63,"name":{"57":{},"893":{}},"parent":{}}],["iconid",{"_index":405,"name":{"459":{}},"parent":{}}],["id",{"_index":126,"name":{"119":{},"122":{},"135":{},"458":{}},"parent":{}}],["identities",{"_index":103,"name":{"95":{}},"parent":{}}],["importkeypair",{"_index":217,"name":{"216":{},"243":{}},"parent":{}}],["importprivatekey",{"_index":218,"name":{"217":{},"244":{}},"parent":{}}],["importpublickey",{"_index":219,"name":{"218":{},"245":{}},"parent":{}}],["init",{"_index":250,"name":{"291":{},"371":{},"387":{},"412":{}},"parent":{}}],["intercept",{"_index":69,"name":{"62":{},"78":{},"82":{},"87":{}},"parent":{}}],["isdialogopen",{"_index":279,"name":{"320":{}},"parent":{}}],["isencryptedprivatekey",{"_index":220,"name":{"219":{},"246":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":221,"name":{"220":{},"247":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"parent":{}}],["key",{"_index":198,"name":{"199":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{}}}],["keyform",{"_index":413,"name":{"467":{}},"parent":{}}],["keyformstub",{"_index":416,"name":{"472":{}},"parent":{}}],["keystore",{"_index":233,"name":{"259":{},"400":{}},"parent":{}}],["keystoreservice",{"_index":284,"name":{"325":{},"932":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":109,"name":{"101":{}},"parent":{}}],["link",{"_index":688,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["linkparams",{"_index":692,"name":{"852":{}},"parent":{}}],["load",{"_index":323,"name":{"370":{}},"parent":{}}],["loadaccounts",{"_index":370,"name":{"424":{}},"parent":{}}],["loading",{"_index":415,"name":{"469":{}},"parent":{}}],["loadkeyring",{"_index":222,"name":{"221":{},"248":{}},"parent":{}}],["location",{"_index":111,"name":{"103":{}},"parent":{}}],["locationservice",{"_index":288,"name":{"330":{},"928":{}},"parent":{}}],["logerror",{"_index":60,"name":{"55":{}},"parent":{}}],["logginginterceptor",{"_index":93,"name":{"85":{},"902":{}},"parent":{}}],["loggingservice",{"_index":234,"name":{"260":{},"343":{},"929":{}},"parent":{}}],["loggingurl",{"_index":660,"name":{"798":{},"814":{},"830":{}},"parent":{}}],["login",{"_index":257,"name":{"298":{},"474":{}},"parent":{}}],["loginview",{"_index":258,"name":{"299":{}},"parent":{}}],["loglevel",{"_index":658,"name":{"796":{},"812":{},"828":{}},"parent":{}}],["logout",{"_index":260,"name":{"301":{},"638":{}},"parent":{}}],["longitude",{"_index":110,"name":{"102":{}},"parent":{}}],["m",{"_index":130,"name":{"123":{}},"parent":{}}],["main",{"_index":675,"name":{"839":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"470":{},"510":{},"538":{},"573":{},"619":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":392,"name":{"446":{}},"parent":{}}],["menuselectiondirective",{"_index":580,"name":{"712":{}},"parent":{}}],["menutoggledirective",{"_index":583,"name":{"716":{}},"parent":{}}],["message",{"_index":647,"name":{"785":{}},"parent":{}}],["meta",{"_index":123,"name":{"117":{},"904":{}},"parent":{}}],["metaresponse",{"_index":128,"name":{"121":{},"905":{}},"parent":{}}],["mockbackendinterceptor",{"_index":67,"name":{"60":{},"894":{}},"parent":{}}],["mockbackendprovider",{"_index":70,"name":{"63":{},"895":{}},"parent":{}}],["module",{"_index":696,"name":{"855":{}},"parent":{"856":{},"857":{},"858":{},"859":{},"860":{},"861":{}}}],["multi",{"_index":75,"name":{"67":{}},"parent":{}}],["mutablekeystore",{"_index":200,"name":{"200":{},"287":{},"326":{},"917":{}},"parent":{}}],["mutablepgpkeystore",{"_index":227,"name":{"226":{},"918":{}},"parent":{}}],["n",{"_index":120,"name":{"114":{}},"parent":{}}],["name",{"_index":155,"name":{"152":{},"159":{},"196":{}},"parent":{}}],["navigatedto",{"_index":693,"name":{"853":{}},"parent":{}}],["networkstatuscomponent",{"_index":610,"name":{"741":{}},"parent":{}}],["newevent",{"_index":272,"name":{"314":{}},"parent":{}}],["ngafterviewinit",{"_index":574,"name":{"706":{}},"parent":{}}],["ngoninit",{"_index":393,"name":{"447":{},"471":{},"517":{},"539":{},"560":{},"579":{},"594":{},"620":{},"635":{},"647":{},"661":{},"678":{},"702":{},"739":{},"744":{},"752":{},"756":{}},"parent":{}}],["nointernetconnection",{"_index":612,"name":{"743":{}},"parent":{}}],["nonce",{"_index":631,"name":{"766":{}},"parent":{}}],["oldchain:1",{"_index":108,"name":{"100":{}},"parent":{}}],["onaddresssearch",{"_index":475,"name":{"543":{}},"parent":{}}],["onclick",{"_index":694,"name":{"854":{}},"parent":{}}],["onmenuselect",{"_index":582,"name":{"714":{}},"parent":{}}],["onmenutoggle",{"_index":585,"name":{"718":{}},"parent":{}}],["onphonesearch",{"_index":474,"name":{"542":{}},"parent":{}}],["onresize",{"_index":394,"name":{"448":{}},"parent":{}}],["onsign",{"_index":235,"name":{"261":{},"279":{}},"parent":{}}],["onsubmit",{"_index":417,"name":{"473":{},"581":{},"622":{}},"parent":{}}],["onverify",{"_index":236,"name":{"263":{},"280":{}},"parent":{}}],["opendialog",{"_index":281,"name":{"322":{}},"parent":{}}],["organizationcomponent",{"_index":523,"name":{"615":{}},"parent":{}}],["organizationform",{"_index":525,"name":{"617":{}},"parent":{}}],["organizationformstub",{"_index":526,"name":{"621":{}},"parent":{}}],["owner",{"_index":163,"name":{"160":{}},"parent":{}}],["pagescomponent",{"_index":516,"name":{"608":{}},"parent":{}}],["pagesizeoptions",{"_index":485,"name":{"554":{},"694":{}},"parent":{}}],["pagesmodule",{"_index":520,"name":{"612":{}},"parent":{}}],["pagesroutingmodule",{"_index":513,"name":{"605":{}},"parent":{}}],["paginator",{"_index":486,"name":{"558":{},"592":{},"633":{},"657":{},"700":{}},"parent":{}}],["parammap",{"_index":684,"name":{"846":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":403,"name":{"456":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":80,"name":{"71":{},"897":{}},"parent":{}}],["pgpsigner",{"_index":230,"name":{"254":{},"919":{}},"parent":{}}],["phonesearchform",{"_index":466,"name":{"532":{}},"parent":{}}],["phonesearchformstub",{"_index":472,"name":{"540":{}},"parent":{}}],["phonesearchloading",{"_index":468,"name":{"534":{}},"parent":{}}],["phonesearchsubmitted",{"_index":467,"name":{"533":{}},"parent":{}}],["polyfills",{"_index":676,"name":{"840":{}},"parent":{}}],["prepare",{"_index":238,"name":{"267":{},"281":{}},"parent":{}}],["production",{"_index":655,"name":{"794":{},"810":{},"826":{}},"parent":{}}],["products",{"_index":115,"name":{"108":{}},"parent":{}}],["provide",{"_index":72,"name":{"65":{}},"parent":{}}],["provider",{"_index":150,"name":{"147":{}},"parent":{}}],["publickeysurl",{"_index":662,"name":{"800":{},"816":{},"832":{}},"parent":{}}],["r",{"_index":635,"name":{"773":{}},"parent":{}}],["ratio.pipe",{"_index":591,"name":{"723":{}},"parent":{"724":{}}}],["ratio.pipe.tokenratiopipe",{"_index":593,"name":{},"parent":{"725":{},"726":{}}}],["readcsv",{"_index":77,"name":{"69":{},"896":{}},"parent":{}}],["readystate",{"_index":269,"name":{"311":{}},"parent":{}}],["readystateprocessor",{"_index":271,"name":{"313":{}},"parent":{}}],["readystatetarget",{"_index":268,"name":{"310":{}},"parent":{}}],["recipient",{"_index":184,"name":{"181":{}},"parent":{}}],["recipientbloxberglink",{"_index":559,"name":{"674":{}},"parent":{}}],["refreshpaginator",{"_index":489,"name":{"564":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"141":{},"355":{},"365":{},"386":{},"402":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":666,"name":{"804":{},"820":{},"836":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"353":{},"933":{}},"parent":{}}],["rejectbody",{"_index":50,"name":{"45":{},"890":{}},"parent":{}}],["removekeysforid",{"_index":223,"name":{"222":{},"249":{}},"parent":{}}],["removepublickey",{"_index":224,"name":{"223":{},"250":{}},"parent":{}}],["removepublickeyforid",{"_index":225,"name":{"224":{},"251":{}},"parent":{}}],["reserveratio",{"_index":164,"name":{"161":{}},"parent":{}}],["reserves",{"_index":165,"name":{"162":{}},"parent":{}}],["resetaccountslist",{"_index":373,"name":{"427":{}},"parent":{}}],["resetpin",{"_index":359,"name":{"413":{},"526":{}},"parent":{}}],["resettransactionslist",{"_index":343,"name":{"393":{}},"parent":{}}],["reversetransaction",{"_index":565,"name":{"682":{}},"parent":{}}],["revokeaction",{"_index":367,"name":{"421":{}},"parent":{}}],["role",{"_index":141,"name":{"136":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"884":{}},"parent":{}}],["route",{"_index":679,"name":{"842":{}},"parent":{"843":{},"844":{},"845":{},"846":{},"847":{}}}],["routerlinkdirectivestub",{"_index":690,"name":{"850":{},"936":{}},"parent":{}}],["routing.module",{"_index":385,"name":{"439":{},"461":{},"544":{},"582":{},"604":{},"623":{},"649":{},"685":{}},"parent":{"440":{},"462":{},"545":{},"583":{},"605":{},"624":{},"650":{},"686":{}}}],["routing.module.accountsroutingmodule",{"_index":478,"name":{},"parent":{"546":{}}}],["routing.module.adminroutingmodule",{"_index":502,"name":{},"parent":{"584":{}}}],["routing.module.approutingmodule",{"_index":387,"name":{},"parent":{"441":{}}}],["routing.module.authroutingmodule",{"_index":409,"name":{},"parent":{"463":{}}}],["routing.module.pagesroutingmodule",{"_index":514,"name":{},"parent":{"606":{}}}],["routing.module.settingsroutingmodule",{"_index":529,"name":{},"parent":{"625":{}}}],["routing.module.tokensroutingmodule",{"_index":545,"name":{},"parent":{"651":{}}}],["routing.module.transactionsroutingmodule",{"_index":568,"name":{},"parent":{"687":{}}}],["s",{"_index":636,"name":{"774":{}},"parent":{}}],["safepipe",{"_index":587,"name":{"720":{}},"parent":{}}],["saveinfo",{"_index":457,"name":{"523":{}},"parent":{}}],["scan",{"_index":273,"name":{"315":{}},"parent":{}}],["scanfilter",{"_index":146,"name":{"142":{}},"parent":{}}],["search.component",{"_index":463,"name":{"529":{}},"parent":{"530":{}}}],["search.component.accountsearchcomponent",{"_index":465,"name":{},"parent":{"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["search/account",{"_index":462,"name":{"529":{}},"parent":{"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["selection.directive",{"_index":579,"name":{"711":{}},"parent":{"712":{}}}],["selection.directive.menuselectiondirective",{"_index":581,"name":{},"parent":{"713":{},"714":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"346":{}},"parent":{}}],["sender",{"_index":185,"name":{"182":{}},"parent":{}}],["senderbloxberglink",{"_index":558,"name":{"673":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"350":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"351":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"347":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"348":{}},"parent":{}}],["sendsignedchallenge",{"_index":255,"name":{"296":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"345":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"349":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":57,"name":{"52":{}},"parent":{}}],["serializebytes",{"_index":644,"name":{"782":{}},"parent":{}}],["serializenumber",{"_index":642,"name":{"780":{}},"parent":{}}],["serializerlp",{"_index":646,"name":{"784":{}},"parent":{}}],["serverloglevel",{"_index":659,"name":{"797":{},"813":{},"829":{}},"parent":{}}],["service",{"_index":704,"name":{"862":{},"866":{},"872":{}},"parent":{"863":{},"864":{},"865":{},"867":{},"868":{},"869":{},"870":{},"871":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["setconversion",{"_index":341,"name":{"391":{},"870":{}},"parent":{}}],["setkey",{"_index":259,"name":{"300":{}},"parent":{}}],["setparammap",{"_index":685,"name":{"847":{}},"parent":{}}],["setsessiontoken",{"_index":252,"name":{"293":{}},"parent":{}}],["setsignature",{"_index":648,"name":{"786":{}},"parent":{}}],["setstate",{"_index":253,"name":{"294":{}},"parent":{}}],["settings",{"_index":144,"name":{"139":{},"909":{}},"parent":{}}],["settingscomponent",{"_index":531,"name":{"627":{}},"parent":{}}],["settingsmodule",{"_index":535,"name":{"640":{}},"parent":{}}],["settingsroutingmodule",{"_index":528,"name":{"624":{}},"parent":{}}],["settransaction",{"_index":340,"name":{"390":{},"869":{}},"parent":{}}],["sharedmodule",{"_index":615,"name":{"747":{}},"parent":{}}],["sidebarcomponent",{"_index":618,"name":{"750":{}},"parent":{}}],["sidebarstubcomponent",{"_index":697,"name":{"856":{},"937":{}},"parent":{}}],["sign",{"_index":226,"name":{"225":{},"252":{},"268":{},"282":{}},"parent":{}}],["signable",{"_index":240,"name":{"270":{},"920":{}},"parent":{}}],["signature",{"_index":127,"name":{"120":{},"124":{},"265":{},"272":{},"906":{},"921":{}},"parent":{}}],["signer",{"_index":229,"name":{"253":{},"277":{},"401":{},"922":{}},"parent":{"254":{},"270":{},"272":{},"277":{}}}],["signer.pgpsigner",{"_index":231,"name":{},"parent":{"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"271":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"273":{},"274":{},"275":{},"276":{}}}],["signer.signer",{"_index":243,"name":{},"parent":{"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":487,"name":{"559":{},"593":{},"634":{},"658":{},"701":{}},"parent":{}}],["sourcetoken",{"_index":177,"name":{"174":{}},"parent":{}}],["staff",{"_index":152,"name":{"149":{},"911":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":54,"name":{"49":{}},"parent":{}}],["status.component",{"_index":609,"name":{"740":{}},"parent":{"741":{}}}],["status.component.networkstatuscomponent",{"_index":611,"name":{},"parent":{"742":{},"743":{},"744":{},"745":{}}}],["status/network",{"_index":608,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{},"744":{},"745":{}}}],["store",{"_index":199,"name":{"199":{}},"parent":{"200":{},"226":{}}}],["store.mutablekeystore",{"_index":202,"name":{},"parent":{"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{}}}],["store.mutablepgpkeystore",{"_index":228,"name":{},"parent":{"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":{}}}],["stringtovalue",{"_index":650,"name":{"788":{}},"parent":{}}],["strip0x",{"_index":626,"name":{"760":{}},"parent":{}}],["stub",{"_index":680,"name":{"842":{},"849":{},"855":{},"862":{},"866":{},"872":{}},"parent":{"843":{},"850":{},"856":{},"858":{},"860":{},"863":{},"867":{},"873":{}}}],["stub.activatedroutestub",{"_index":682,"name":{},"parent":{"844":{},"845":{},"846":{},"847":{}}}],["stub.footerstubcomponent",{"_index":702,"name":{},"parent":{"861":{}}}],["stub.routerlinkdirectivestub",{"_index":691,"name":{},"parent":{"851":{},"852":{},"853":{},"854":{}}}],["stub.sidebarstubcomponent",{"_index":698,"name":{},"parent":{"857":{}}}],["stub.tokenservicestub",{"_index":706,"name":{},"parent":{"864":{},"865":{}}}],["stub.topbarstubcomponent",{"_index":700,"name":{},"parent":{"859":{}}}],["stub.transactionservicestub",{"_index":710,"name":{},"parent":{"868":{},"869":{},"870":{},"871":{}}}],["stub.userservicestub",{"_index":713,"name":{},"parent":{"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["subject",{"_index":683,"name":{"845":{}},"parent":{}}],["submitted",{"_index":414,"name":{"468":{},"511":{},"574":{},"618":{}},"parent":{}}],["success",{"_index":190,"name":{"190":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":170,"name":{"168":{}},"parent":{}}],["switchwindows",{"_index":418,"name":{"475":{}},"parent":{}}],["symbol",{"_index":171,"name":{"169":{},"197":{}},"parent":{}}],["sync.service",{"_index":265,"name":{"307":{}},"parent":{"308":{}}}],["sync.service.blocksyncservice",{"_index":267,"name":{},"parent":{"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{}}}],["tag",{"_index":156,"name":{"153":{}},"parent":{}}],["tel",{"_index":121,"name":{"115":{}},"parent":{}}],["test",{"_index":677,"name":{"841":{}},"parent":{}}],["testing",{"_index":686,"name":{"848":{}},"parent":{"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{}}}],["testing/activated",{"_index":678,"name":{"842":{}},"parent":{"843":{},"844":{},"845":{},"846":{},"847":{}}}],["testing/router",{"_index":687,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["testing/shared",{"_index":695,"name":{"855":{}},"parent":{"856":{},"857":{},"858":{},"859":{},"860":{},"861":{}}}],["testing/token",{"_index":703,"name":{"862":{}},"parent":{"863":{},"864":{},"865":{}}}],["testing/transaction",{"_index":708,"name":{"866":{}},"parent":{"867":{},"868":{},"869":{},"870":{},"871":{}}}],["testing/user",{"_index":711,"name":{"872":{}},"parent":{"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["timestamp",{"_index":191,"name":{"191":{}},"parent":{}}],["title",{"_index":391,"name":{"445":{}},"parent":{}}],["to",{"_index":186,"name":{"183":{},"769":{}},"parent":{}}],["toggle.directive",{"_index":402,"name":{"455":{},"715":{}},"parent":{"456":{},"716":{}}}],["toggle.directive.menutoggledirective",{"_index":584,"name":{},"parent":{"717":{},"718":{}}}],["toggle.directive.passwordtoggledirective",{"_index":404,"name":{},"parent":{"457":{},"458":{},"459":{},"460":{}}}],["toggledisplay",{"_index":419,"name":{"476":{}},"parent":{}}],["togglepasswordvisibility",{"_index":406,"name":{"460":{}},"parent":{}}],["tohex",{"_index":625,"name":{"759":{}},"parent":{}}],["token",{"_index":159,"name":{"156":{},"184":{},"645":{},"660":{},"912":{}},"parent":{}}],["tokendetailscomponent",{"_index":539,"name":{"643":{}},"parent":{}}],["tokenname",{"_index":561,"name":{"676":{}},"parent":{}}],["tokenratiopipe",{"_index":592,"name":{"724":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"356":{},"366":{},"882":{}},"parent":{}}],["tokens",{"_index":320,"name":{"367":{},"659":{}},"parent":{}}],["tokenscomponent",{"_index":547,"name":{"653":{}},"parent":{}}],["tokenservice",{"_index":318,"name":{"363":{},"926":{}},"parent":{}}],["tokenservicestub",{"_index":705,"name":{"863":{},"941":{}},"parent":{}}],["tokenslist",{"_index":321,"name":{"368":{}},"parent":{}}],["tokensmodule",{"_index":552,"name":{"666":{}},"parent":{}}],["tokensroutingmodule",{"_index":544,"name":{"650":{}},"parent":{}}],["tokenssubject",{"_index":322,"name":{"369":{}},"parent":{}}],["tokensymbol",{"_index":450,"name":{"513":{},"557":{},"677":{},"699":{}},"parent":{}}],["topbarcomponent",{"_index":621,"name":{"754":{}},"parent":{}}],["topbarstubcomponent",{"_index":699,"name":{"858":{},"938":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":178,"name":{"175":{},"790":{}},"parent":{}}],["trader",{"_index":179,"name":{"176":{}},"parent":{}}],["traderbloxberglink",{"_index":560,"name":{"675":{}},"parent":{}}],["transaction",{"_index":181,"name":{"179":{},"504":{},"671":{},"696":{},"914":{}},"parent":{}}],["transactiondatasource",{"_index":572,"name":{"691":{}},"parent":{}}],["transactiondetailscomponent",{"_index":556,"name":{"669":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":573,"name":{"692":{}},"parent":{}}],["transactionlist",{"_index":335,"name":{"383":{}},"parent":{}}],["transactions",{"_index":334,"name":{"382":{},"505":{},"695":{}},"parent":{}}],["transactionscomponent",{"_index":570,"name":{"689":{}},"parent":{}}],["transactionsdatasource",{"_index":428,"name":{"483":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":430,"name":{"485":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":429,"name":{"484":{}},"parent":{}}],["transactionservice",{"_index":332,"name":{"380":{},"924":{}},"parent":{}}],["transactionservicestub",{"_index":709,"name":{"867":{},"942":{}},"parent":{}}],["transactionsmodule",{"_index":576,"name":{"709":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":431,"name":{"486":{}},"parent":{}}],["transactionsroutingmodule",{"_index":567,"name":{"686":{}},"parent":{}}],["transactionssubject",{"_index":336,"name":{"384":{}},"parent":{}}],["transactionstype",{"_index":445,"name":{"506":{},"697":{}},"parent":{}}],["transactionstypes",{"_index":447,"name":{"508":{},"698":{}},"parent":{}}],["transactiontablepaginator",{"_index":432,"name":{"487":{}},"parent":{}}],["transactiontablesort",{"_index":433,"name":{"488":{}},"parent":{}}],["transferrequest",{"_index":345,"name":{"395":{}},"parent":{}}],["transform",{"_index":589,"name":{"722":{},"726":{},"730":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":667,"name":{"805":{},"821":{},"837":{}},"parent":{}}],["trustedusers",{"_index":247,"name":{"288":{},"631":{}},"parent":{}}],["trusteduserslist",{"_index":248,"name":{"289":{}},"parent":{}}],["trusteduserssubject",{"_index":249,"name":{"290":{}},"parent":{}}],["tx",{"_index":180,"name":{"177":{},"185":{},"188":{},"764":{},"915":{},"934":{}},"parent":{}}],["txhash",{"_index":192,"name":{"192":{}},"parent":{}}],["txhelper",{"_index":147,"name":{"143":{}},"parent":{}}],["txindex",{"_index":193,"name":{"193":{}},"parent":{}}],["txtoken",{"_index":194,"name":{"194":{},"916":{}},"parent":{}}],["type",{"_index":116,"name":{"109":{},"186":{}},"parent":{}}],["unixdatepipe",{"_index":596,"name":{"728":{}},"parent":{}}],["updatemeta",{"_index":363,"name":{"417":{}},"parent":{}}],["updatesyncable",{"_index":83,"name":{"74":{},"899":{}},"parent":{}}],["url",{"_index":518,"name":{"610":{}},"parent":{}}],["useclass",{"_index":74,"name":{"66":{}},"parent":{}}],["user",{"_index":142,"name":{"137":{},"178":{}},"parent":{}}],["userdatasource",{"_index":434,"name":{"489":{}},"parent":{}}],["userdisplayedcolumns",{"_index":435,"name":{"490":{}},"parent":{}}],["userid",{"_index":157,"name":{"154":{}},"parent":{}}],["userinfo",{"_index":533,"name":{"632":{}},"parent":{}}],["users",{"_index":714,"name":{"875":{}},"parent":{}}],["usersdefaultpagesize",{"_index":436,"name":{"491":{}},"parent":{}}],["userservice",{"_index":347,"name":{"397":{},"925":{}},"parent":{}}],["userservicestub",{"_index":712,"name":{"873":{},"940":{}},"parent":{}}],["userspagesizeoptions",{"_index":437,"name":{"492":{}},"parent":{}}],["usertablepaginator",{"_index":438,"name":{"493":{}},"parent":{}}],["usertablesort",{"_index":439,"name":{"494":{}},"parent":{}}],["v",{"_index":634,"name":{"772":{}},"parent":{}}],["validation",{"_index":79,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["value",{"_index":187,"name":{"187":{},"770":{}},"parent":{}}],["vcard",{"_index":117,"name":{"110":{}},"parent":{}}],["vcardvalidation",{"_index":81,"name":{"72":{},"898":{}},"parent":{}}],["verify",{"_index":239,"name":{"269":{},"283":{}},"parent":{}}],["version",{"_index":122,"name":{"116":{}},"parent":{}}],["viewaccount",{"_index":455,"name":{"521":{},"562":{}},"parent":{}}],["viewrecipient",{"_index":563,"name":{"680":{}},"parent":{}}],["viewsender",{"_index":562,"name":{"679":{}},"parent":{}}],["viewtoken",{"_index":550,"name":{"663":{}},"parent":{}}],["viewtrader",{"_index":564,"name":{"681":{}},"parent":{}}],["viewtransaction",{"_index":454,"name":{"520":{},"703":{}},"parent":{}}],["w3",{"_index":148,"name":{"144":{},"145":{},"910":{}},"parent":{}}],["web3",{"_index":337,"name":{"385":{},"436":{}},"parent":{}}],["web3provider",{"_index":664,"name":{"802":{},"818":{},"834":{}},"parent":{}}],["web3service",{"_index":381,"name":{"435":{},"931":{}},"parent":{}}],["weight",{"_index":168,"name":{"166":{}},"parent":{}}],["wrap",{"_index":369,"name":{"423":{}},"parent":{}}],["write",{"_index":643,"name":{"781":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/typedoc/classes/app__eth_accountindex.accountindex.html b/docs/typedoc/classes/app__eth_accountindex.accountindex.html index 6b1da46..47e82d4 100644 --- a/docs/typedoc/classes/app__eth_accountindex.accountindex.html +++ b/docs/typedoc/classes/app__eth_accountindex.accountindex.html @@ -219,7 +219,7 @@
      • @@ -261,7 +261,7 @@
      • @@ -303,7 +303,7 @@
      • @@ -344,7 +344,7 @@
      • diff --git a/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html b/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html index d4d90b5..bdcb5f9 100644 --- a/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html +++ b/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html @@ -114,7 +114,7 @@

        constructor

        • @@ -130,12 +130,6 @@

        Parameters

          -
        • -
          errorDialogService: ErrorDialogService
          -
          -

          A service that provides a dialog box for displaying errors to the user.

          -
          -
        • loggingService: LoggingService
          @@ -167,7 +161,7 @@
          diff --git a/docs/typedoc/classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html b/docs/typedoc/classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html index f595de3..94e9103 100644 --- a/docs/typedoc/classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html +++ b/docs/typedoc/classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html @@ -120,7 +120,7 @@
        • @@ -146,7 +146,7 @@
          diff --git a/docs/typedoc/classes/app__services_auth_service.authservice.html b/docs/typedoc/classes/app__services_auth_service.authservice.html index da42570..757205a 100644 --- a/docs/typedoc/classes/app__services_auth_service.authservice.html +++ b/docs/typedoc/classes/app__services_auth_service.authservice.html @@ -125,20 +125,17 @@

          constructor

          • Parameters

              -
            • -
              httpClient: HttpClient
              -
            • loggingService: LoggingService
            • @@ -159,7 +156,7 @@
              mutableKeyStore: MutableKeyStore
              @@ -169,7 +166,7 @@
              trustedUsers: Staff[] = []
              @@ -179,7 +176,7 @@
              trustedUsersList: BehaviorSubject<Staff[]> = ...
              @@ -189,7 +186,7 @@
              trustedUsersSubject: Observable<Staff[]> = ...
              @@ -206,7 +203,7 @@
            • Parameters

              @@ -229,7 +226,7 @@
            • Returns Promise<any>

              @@ -246,7 +243,7 @@
            • Returns any

              @@ -263,7 +260,7 @@
            • Returns any

              @@ -280,7 +277,7 @@
            • Returns Promise<any>

              @@ -297,7 +294,7 @@
            • Returns string

              @@ -314,7 +311,7 @@
            • Returns void

              @@ -331,7 +328,7 @@
            • Returns Promise<boolean>

              @@ -348,7 +345,7 @@
            • Returns Promise<void>

              @@ -365,7 +362,7 @@
            • Returns Promise<boolean>

              @@ -382,7 +379,7 @@
            • Returns void

              @@ -399,7 +396,7 @@
            • Returns void

              @@ -416,7 +413,7 @@
            • Parameters

              @@ -439,7 +436,7 @@
            • @@ -471,7 +468,7 @@
            • Parameters

              @@ -494,7 +491,7 @@
            • Parameters

              diff --git a/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html b/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html index a8e749c..033d691 100644 --- a/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html +++ b/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html @@ -98,7 +98,6 @@
              • blockSync
              • fetcher
              • -
              • init
              • newEvent
              • readyStateProcessor
              • scan
              • @@ -113,13 +112,13 @@

                constructor

                • Parameters

                  @@ -127,9 +126,6 @@
                • transactionService: TransactionService
                • -
                • -
                  loggingService: LoggingService
                  -

                Returns BlockSyncService

                @@ -144,7 +140,7 @@
                readyState: number = 0
                @@ -154,7 +150,7 @@
                readyStateTarget: number = 2
                @@ -171,7 +167,7 @@
              • Parameters

                @@ -200,7 +196,7 @@
              • Parameters

                @@ -216,23 +212,6 @@
              -
              - -

              init

              -
                -
              • init(): Promise<void>
              • -
              -
                -
              • - -

                Returns Promise<void>

                -
              • -
              -

              newEvent

              @@ -243,7 +222,7 @@
            • Parameters

              @@ -269,7 +248,7 @@
            • Parameters

              @@ -304,7 +283,7 @@
            • Parameters

              @@ -367,9 +346,6 @@
            • fetcher
            • -
            • - init -
            • newEvent
            • diff --git a/docs/typedoc/classes/app__services_logging_service.loggingservice.html b/docs/typedoc/classes/app__services_logging_service.loggingservice.html index 6ef8c6b..ceb28cd 100644 --- a/docs/typedoc/classes/app__services_logging_service.loggingservice.html +++ b/docs/typedoc/classes/app__services_logging_service.loggingservice.html @@ -86,13 +86,6 @@
            • constructor
            -
            -

            Properties

            - -

            Methods

              @@ -120,7 +113,7 @@
            • Parameters

              @@ -134,29 +127,6 @@
            -
            -

            Properties

            -
            - -

            canDebug

            -
            canDebug: boolean
            - -
            -
            - -

            env

            -
            env: string
            - -
            -

            Methods

            @@ -169,7 +139,7 @@
          • Parameters

            @@ -198,7 +168,7 @@
          • Parameters

            @@ -227,7 +197,7 @@
          • Parameters

            @@ -256,7 +226,7 @@
          • Parameters

            @@ -279,7 +249,7 @@
          • Parameters

            @@ -308,7 +278,7 @@
          • Parameters

            @@ -337,7 +307,7 @@
          • Parameters

            @@ -376,12 +346,6 @@
          • constructor
          • -
          • - canDebug -
          • -
          • - env -
          • sendDebugLevelMessage
          • @@ -419,7 +383,6 @@
            • Class
            • Constructor
            • -
            • Property
            • Method
              diff --git a/docs/typedoc/classes/app__services_registry_service.registryservice.html b/docs/typedoc/classes/app__services_registry_service.registryservice.html index 7a462e0..b9bd70c 100644 --- a/docs/typedoc/classes/app__services_registry_service.registryservice.html +++ b/docs/typedoc/classes/app__services_registry_service.registryservice.html @@ -89,14 +89,18 @@

              Properties

              Methods

          @@ -113,9 +117,6 @@
          • Returns RegistryService

          • @@ -124,13 +125,23 @@

            Properties

            +
            + +

            Static Private accountRegistry

            +
            accountRegistry: AccountIndex
            + +

            Static fileGetter

            fileGetter: FileGetter = ...
            @@ -140,13 +151,40 @@
            registry: CICRegistry
            +
            +
            + +

            Static Private tokenRegistry

            +
            tokenRegistry: TokenRegistry
            +

            Methods

            +
            + +

            Static getAccountRegistry

            + +
              +
            • + +

              Returns Promise<AccountIndex>

              +
            • +
            +

            Static getRegistry

            @@ -157,13 +195,30 @@
          • Returns Promise<CICRegistry>

          +
          + +

          Static getTokenRegistry

          + +
            +
          • + +

            Returns Promise<TokenRegistry>

            +
          • +
          +
        • constructor
        • +
        • + accountRegistry +
        • fileGetter
        • registry
        • +
        • + tokenRegistry +
        • +
        • + getAccountRegistry +
        • getRegistry
        • +
        • + getTokenRegistry +
      • diff --git a/docs/typedoc/classes/app__services_token_service.tokenservice.html b/docs/typedoc/classes/app__services_token_service.tokenservice.html index d16211e..d98d832 100644 --- a/docs/typedoc/classes/app__services_token_service.tokenservice.html +++ b/docs/typedoc/classes/app__services_token_service.tokenservice.html @@ -208,7 +208,7 @@
      • Parameters

        @@ -231,7 +231,7 @@
      • Parameters

        @@ -254,7 +254,7 @@
      • Parameters

        @@ -277,7 +277,7 @@
      • Parameters

        @@ -300,7 +300,7 @@
      • Returns Promise<string>

        @@ -317,7 +317,7 @@
      • Returns Promise<string>

        @@ -334,7 +334,7 @@
      • Returns Promise<void>

        diff --git a/docs/typedoc/classes/app__services_transaction_service.transactionservice.html b/docs/typedoc/classes/app__services_transaction_service.transactionservice.html index 5499626..ff19266 100644 --- a/docs/typedoc/classes/app__services_transaction_service.transactionservice.html +++ b/docs/typedoc/classes/app__services_transaction_service.transactionservice.html @@ -93,7 +93,6 @@
      • transactionList
      • transactions
      • transactionsSubject
      • -
      • userInfo
      • web3
      • @@ -120,13 +119,13 @@

        constructor

        • Parameters

          @@ -134,9 +133,6 @@
        • httpClient: HttpClient
        • -
        • -
          authService: AuthService
          -
        • userService: UserService
        • @@ -157,7 +153,7 @@
          registry: CICRegistry
          @@ -167,7 +163,7 @@
          transactionList: BehaviorSubject<any[]> = ...
          @@ -177,7 +173,7 @@
          transactions: any[] = []
          @@ -187,17 +183,7 @@
          transactionsSubject: Observable<any[]> = ...
          - -
          - -

          userInfo

          -
          userInfo: any
          -
          @@ -207,7 +193,7 @@
          web3: default
          @@ -224,7 +210,7 @@
        • Parameters

          @@ -250,7 +236,7 @@
        • Parameters

          @@ -276,7 +262,7 @@
        • Parameters

          @@ -305,7 +291,7 @@
        • Parameters

          @@ -331,7 +317,7 @@
        • Returns Promise<void>

          @@ -348,7 +334,7 @@
        • Returns void

          @@ -365,7 +351,7 @@
        • Parameters

          @@ -391,7 +377,7 @@
        • Parameters

          @@ -417,7 +403,7 @@
        • Parameters

          @@ -474,9 +460,6 @@
        • transactionsSubject
        • -
        • - userInfo -
        • web3
        • diff --git a/docs/typedoc/classes/app__services_user_service.userservice.html b/docs/typedoc/classes/app__services_user_service.userservice.html index 9d6b11e..fd6f524 100644 --- a/docs/typedoc/classes/app__services_user_service.userservice.html +++ b/docs/typedoc/classes/app__services_user_service.userservice.html @@ -127,7 +127,6 @@
        • resetAccountsList
        • resetPin
        • revokeAction
        • -
        • searchAccountByName
        • updateMeta
        • wrap
        @@ -141,13 +140,13 @@

        constructor

        • Parameters

          @@ -161,9 +160,6 @@
        • tokenService: TokenService
        • -
        • -
          authService: AuthService
          -

        Returns UserService

        @@ -178,7 +174,7 @@
        accounts: AccountDetails[] = []
        @@ -188,7 +184,7 @@
        accountsList: BehaviorSubject<AccountDetails[]> = ...
        @@ -198,7 +194,7 @@
        accountsSubject: Observable<AccountDetails[]> = ...
        @@ -208,7 +204,7 @@
        actions: any[] = []
        @@ -218,7 +214,7 @@
        actionsList: BehaviorSubject<any> = ...
        @@ -228,7 +224,7 @@
        actionsSubject: Observable<any[]> = ...
        @@ -238,7 +234,7 @@
        categories: object = {}
        @@ -248,7 +244,7 @@
        categoriesList: BehaviorSubject<object> = ...
        @@ -258,7 +254,7 @@
        categoriesSubject: Observable<object> = ...
        @@ -268,7 +264,7 @@
        headers: HttpHeaders = ...
        @@ -278,7 +274,7 @@
        keystore: MutableKeyStore
        @@ -288,7 +284,7 @@
        registry: CICRegistry
        @@ -298,7 +294,7 @@
        signer: Signer
        @@ -315,7 +311,7 @@
      • Parameters

        @@ -341,7 +337,7 @@
      • Parameters

        @@ -364,7 +360,7 @@
      • Parameters

        @@ -417,7 +413,7 @@
      • Parameters

        @@ -443,7 +439,7 @@
      • Parameters

        @@ -469,7 +465,7 @@
      • Parameters

        @@ -492,7 +488,7 @@
      • Parameters

        @@ -515,7 +511,7 @@
      • Returns Observable<any>

        @@ -532,7 +528,7 @@
      • Parameters

        @@ -555,7 +551,7 @@
      • Returns void

        @@ -572,7 +568,7 @@
      • Returns void

        @@ -589,7 +585,7 @@
      • Parameters

        @@ -615,7 +611,7 @@
      • Returns Observable<any>

        @@ -632,7 +628,7 @@
      • Parameters

        @@ -658,7 +654,7 @@
      • Returns Observable<any>

        @@ -675,7 +671,7 @@
      • Returns Promise<void>

        @@ -692,7 +688,7 @@
      • Parameters

        @@ -718,7 +714,7 @@
      • Returns void

        @@ -735,7 +731,7 @@
      • Parameters

        @@ -758,7 +754,7 @@
      • Parameters

        @@ -771,29 +767,6 @@
      • -
        - -

        searchAccountByName

        -
          -
        • searchAccountByName(name: string): any
        • -
        -
          -
        • - -

          Parameters

          -
            -
          • -
            name: string
            -
          • -
          -

          Returns any

          -
        • -
        -

        updateMeta

        @@ -804,7 +777,7 @@
      • Parameters

        @@ -833,7 +806,7 @@
      • Parameters

        @@ -971,9 +944,6 @@
      • revokeAction
      • -
      • - searchAccountByName -
      • updateMeta
      • diff --git a/docs/typedoc/classes/app_app_component.appcomponent.html b/docs/typedoc/classes/app_app_component.appcomponent.html index 4d23abb..463339e 100644 --- a/docs/typedoc/classes/app_app_component.appcomponent.html +++ b/docs/typedoc/classes/app_app_component.appcomponent.html @@ -96,8 +96,6 @@

        Properties

        @@ -119,7 +117,7 @@

        constructor

        -
        - -

        readyState

        -
        readyState: number = 0
        - -
        -
        - -

        readyStateTarget

        -
        readyStateTarget: number = 3
        - -

        title

        title: string = 'CICADA'
        @@ -206,7 +193,7 @@
      • Parameters

        @@ -229,7 +216,7 @@
      • Parameters

        @@ -253,7 +240,7 @@

        Returns Promise<void>

        @@ -270,7 +257,7 @@
      • Parameters

        @@ -309,12 +296,6 @@
      • mediaQuery
      • -
      • - readyState -
      • -
      • - readyStateTarget -
      • title
      • diff --git a/docs/typedoc/classes/app_auth_auth_component.authcomponent.html b/docs/typedoc/classes/app_auth_auth_component.authcomponent.html index b32d679..4e93b0b 100644 --- a/docs/typedoc/classes/app_auth_auth_component.authcomponent.html +++ b/docs/typedoc/classes/app_auth_auth_component.authcomponent.html @@ -132,7 +132,7 @@
      • Parameters

        @@ -163,7 +163,7 @@
        keyForm: FormGroup
        @@ -173,7 +173,7 @@
        loading: boolean = false
        @@ -183,7 +183,7 @@ @@ -193,7 +193,7 @@
        submitted: boolean = false
        @@ -210,7 +210,7 @@
      • Returns any

        @@ -230,7 +230,7 @@
      • Returns Promise<void>

        @@ -241,17 +241,17 @@

        ngOnInit

          -
        • ngOnInit(): Promise<void>
        • +
        • ngOnInit(): void
        • -

          Returns Promise<void>

          +

          Returns void

        @@ -265,7 +265,7 @@
      • Returns Promise<void>

        @@ -282,7 +282,7 @@
      • Returns void

        @@ -299,7 +299,7 @@
      • Parameters

        diff --git a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html index 91839dc..762fa33 100644 --- a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html @@ -567,7 +567,7 @@
      • Returns any

        @@ -587,7 +587,7 @@
      • Returns void

        @@ -604,7 +604,7 @@
      • Parameters

        @@ -627,7 +627,7 @@
      • Parameters

        @@ -650,7 +650,7 @@
      • Parameters

        @@ -676,7 +676,7 @@
      • Returns void

        @@ -693,7 +693,7 @@
      • Returns void

        @@ -728,7 +728,7 @@
      • Returns void

        @@ -745,7 +745,7 @@
      • Returns Promise<void>

        @@ -762,7 +762,7 @@
      • Parameters

        @@ -785,7 +785,7 @@
      • Parameters

        diff --git a/docs/typedoc/classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html b/docs/typedoc/classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html index 8241b21..f46fd1d 100644 --- a/docs/typedoc/classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html @@ -99,9 +99,6 @@
      • addressSearchLoading
      • addressSearchSubmitted
      • matcher
      • -
      • nameSearchForm
      • -
      • nameSearchLoading
      • -
      • nameSearchSubmitted
      • phoneSearchForm
      • phoneSearchLoading
      • phoneSearchSubmitted
      • @@ -111,7 +108,6 @@

        Accessors

        @@ -120,7 +116,6 @@ @@ -139,7 +134,7 @@
      • Parameters

        @@ -167,7 +162,7 @@
        addressSearchForm: FormGroup
        @@ -177,7 +172,7 @@
        addressSearchLoading: boolean = false
        @@ -187,7 +182,7 @@
        addressSearchSubmitted: boolean = false
        @@ -197,37 +192,7 @@ - -
        - -

        nameSearchForm

        -
        nameSearchForm: FormGroup
        - -
        -
        - -

        nameSearchLoading

        -
        nameSearchLoading: boolean = false
        - -
        -
        - -

        nameSearchSubmitted

        -
        nameSearchSubmitted: boolean = false
        -
        @@ -237,7 +202,7 @@
        phoneSearchForm: FormGroup
        @@ -247,7 +212,7 @@
        phoneSearchLoading: boolean = false
        @@ -257,7 +222,7 @@
        phoneSearchSubmitted: boolean = false
        @@ -274,24 +239,7 @@
      • -

        Returns any

        -
      • - - -
        - -

        nameSearchFormStub

        -
          -
        • get nameSearchFormStub(): any
        • -
        -
          -
        • -

          Returns any

          @@ -308,7 +256,7 @@
        • Returns any

          @@ -322,17 +270,17 @@

          ngOnInit

            -
          • ngOnInit(): Promise<void>
          • +
          • ngOnInit(): void
          • -

            Returns Promise<void>

            +

            Returns void

        @@ -346,30 +294,13 @@
      • Returns Promise<void>

      • -
        - -

        onNameSearch

        -
          -
        • onNameSearch(): void
        • -
        -
          -
        • - -

          Returns void

          -
        • -
        -

        onPhoneSearch

        @@ -380,7 +311,7 @@
      • Returns Promise<void>

        @@ -422,15 +353,6 @@
      • matcher
      • -
      • - nameSearchForm -
      • -
      • - nameSearchLoading -
      • -
      • - nameSearchSubmitted -
      • phoneSearchForm
      • @@ -443,9 +365,6 @@
      • addressSearchFormStub
      • -
      • - nameSearchFormStub -
      • phoneSearchFormStub
      • @@ -455,9 +374,6 @@
      • onAddressSearch
      • -
      • - onNameSearch -
      • onPhoneSearch
      • diff --git a/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html b/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html index a88082c..9041100 100644 --- a/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html @@ -127,7 +127,7 @@

        constructor

        • @@ -141,9 +141,6 @@
        • userService: UserService
        • -
        • -
          loggingService: LoggingService
          -
        • router: Router
        • @@ -271,7 +268,7 @@
        • Parameters

          @@ -294,7 +291,7 @@
        • Returns void

          @@ -311,7 +308,7 @@
        • Returns void

          @@ -322,17 +319,17 @@

          ngOnInit

            -
          • ngOnInit(): Promise<void>
          • +
          • ngOnInit(): void
          • -

            Returns Promise<void>

            +

            Returns void

        @@ -346,7 +343,7 @@
      • Returns void

        @@ -363,7 +360,7 @@
      • Parameters

        diff --git a/docs/typedoc/classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html b/docs/typedoc/classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html index 04f3720..bb72d08 100644 --- a/docs/typedoc/classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html @@ -237,7 +237,7 @@
      • Returns any

        @@ -251,7 +251,7 @@

        ngOnInit

          -
        • ngOnInit(): Promise<void>
        • +
        • ngOnInit(): void
        • @@ -261,7 +261,7 @@
        • Defined in src/app/pages/accounts/create-account/create-account.component.ts:28
        -

        Returns Promise<void>

        +

        Returns void

      • @@ -275,7 +275,7 @@
      • Returns void

        diff --git a/docs/typedoc/classes/app_pages_admin_admin_component.admincomponent.html b/docs/typedoc/classes/app_pages_admin_admin_component.admincomponent.html index 6bd3984..b3a0eaa 100644 --- a/docs/typedoc/classes/app_pages_admin_admin_component.admincomponent.html +++ b/docs/typedoc/classes/app_pages_admin_admin_component.admincomponent.html @@ -222,7 +222,7 @@
      • Parameters

        @@ -245,7 +245,7 @@
      • Parameters

        @@ -268,7 +268,7 @@
      • Parameters

        @@ -291,7 +291,7 @@
      • Parameters

        @@ -314,7 +314,7 @@
      • Returns void

        @@ -331,7 +331,7 @@
      • Parameters

        @@ -348,7 +348,7 @@

        ngOnInit

          -
        • ngOnInit(): Promise<void>
        • +
        • ngOnInit(): void
        • @@ -358,7 +358,7 @@
        • Defined in src/app/pages/admin/admin.component.ts:35
        -

        Returns Promise<void>

        +

        Returns void

      • diff --git a/docs/typedoc/classes/app_pages_settings_settings_component.settingscomponent.html b/docs/typedoc/classes/app_pages_settings_settings_component.settingscomponent.html index cb181e6..054de1f 100644 --- a/docs/typedoc/classes/app_pages_settings_settings_component.settingscomponent.html +++ b/docs/typedoc/classes/app_pages_settings_settings_component.settingscomponent.html @@ -96,7 +96,6 @@

        Properties

        • dataSource
        • -
        • date
        • displayedColumns
        • paginator
        • sort
        • @@ -128,7 +127,7 @@
        • Parameters

          @@ -148,16 +147,6 @@

          dataSource

          dataSource: MatTableDataSource<any>
          - - -
          - -

          date

          -
          date: string
          @@ -180,7 +169,7 @@
          paginator: MatPaginator
          @@ -190,7 +179,7 @@
          sort: MatSort
          @@ -200,7 +189,7 @@
          trustedUsers: Staff[]
          @@ -210,7 +199,7 @@
          userInfo: Staff
          @@ -227,7 +216,7 @@
        • Parameters

          @@ -250,7 +239,7 @@
        • Returns void

          @@ -267,7 +256,7 @@
        • Returns void

          @@ -278,17 +267,17 @@

          ngOnInit

            -
          • ngOnInit(): Promise<void>
          • +
          • ngOnInit(): void
          • -

            Returns Promise<void>

            +

            Returns void

          @@ -318,9 +307,6 @@
        • dataSource
        • -
        • - date -
        • displayedColumns
        • diff --git a/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html b/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html index a664ced..b1d836b 100644 --- a/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html +++ b/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html @@ -121,13 +121,13 @@

          constructor

          • Parameters

            @@ -135,12 +135,6 @@
          • tokenService: TokenService
          • -
          • -
            loggingService: LoggingService
            -
          • -
          • -
            router: Router
            -

          Returns TokensComponent

          @@ -155,7 +149,7 @@
          columnsToDisplay: string[] = ...
          @@ -165,7 +159,7 @@
          dataSource: MatTableDataSource<any>
          @@ -175,7 +169,7 @@
          paginator: MatPaginator
          @@ -185,7 +179,7 @@
          sort: MatSort
          @@ -195,7 +189,7 @@
          token: Token
          @@ -205,7 +199,7 @@
          tokens: Token[]
          @@ -222,7 +216,7 @@
        • Parameters

          @@ -245,7 +239,7 @@
        • Returns void

          @@ -256,17 +250,17 @@

          ngOnInit

            -
          • ngOnInit(): Promise<void>
          • +
          • ngOnInit(): void
          • -

            Returns Promise<void>

            +

            Returns void

          @@ -280,7 +274,7 @@
        • Parameters

          diff --git a/docs/typedoc/classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html b/docs/typedoc/classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html index 05a866d..fa99ce6 100644 --- a/docs/typedoc/classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html +++ b/docs/typedoc/classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html @@ -239,7 +239,7 @@
        • Returns void

          @@ -256,7 +256,7 @@
        • Parameters

          @@ -273,7 +273,7 @@

          ngOnInit

            -
          • ngOnInit(): Promise<void>
          • +
          • ngOnInit(): void
          • @@ -283,7 +283,7 @@
          • Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:39
          -

          Returns Promise<void>

          +

          Returns void

        @@ -297,7 +297,7 @@
      • Returns Promise<void>

        @@ -314,7 +314,7 @@
      • Returns Promise<void>

        @@ -331,7 +331,7 @@
      • Returns Promise<void>

        @@ -348,7 +348,7 @@
      • Returns Promise<void>

        diff --git a/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html b/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html index 6beb5ea..9bc2c8f 100644 --- a/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html +++ b/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html @@ -129,7 +129,7 @@

        constructor

        • @@ -140,9 +140,6 @@

          Parameters

            -
          • -
            blockSyncService: BlockSyncService
            -
          • transactionService: TransactionService
          • @@ -283,7 +280,7 @@
          • Parameters

            @@ -309,7 +306,7 @@
          • Returns void

            @@ -326,7 +323,7 @@
          • Returns void

            @@ -344,7 +341,7 @@

            Returns void

            @@ -355,17 +352,17 @@

            ngOnInit

              -
            • ngOnInit(): Promise<void>
            • +
            • ngOnInit(): void
            • -

              Returns Promise<void>

              +

              Returns void

            @@ -379,7 +376,7 @@
          • Parameters

            From 28fc0048f79e865b4d4cedda2ac4d1aac7ed0cd1 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 19:20:47 +0300 Subject: [PATCH 05/16] Lint code. --- src/app/_interceptors/error.interceptor.ts | 16 +++++++--- src/app/_services/auth.service.ts | 37 +++++++++++----------- src/app/auth/auth.component.ts | 2 +- 3 files changed, 30 insertions(+), 25 deletions(-) diff --git a/src/app/_interceptors/error.interceptor.ts b/src/app/_interceptors/error.interceptor.ts index 2f53f1b..4e2deea 100644 --- a/src/app/_interceptors/error.interceptor.ts +++ b/src/app/_interceptors/error.interceptor.ts @@ -14,7 +14,7 @@ import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; // Application imports -import { LoggingService } from '@app/_services'; +import { ErrorDialogService, LoggingService } from '@app/_services'; /** Intercepts and handles errors from outgoing HTTP request. */ @Injectable() @@ -22,10 +22,15 @@ export class ErrorInterceptor implements HttpInterceptor { /** * Initialization of the error interceptor. * + * @param errorDialogService - A service that provides a dialog box for displaying errors to the user. * @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) {} + constructor( + private errorDialogService: ErrorDialogService, + private loggingService: LoggingService, + private router: Router + ) {} /** * Intercepts HTTP requests. @@ -54,9 +59,10 @@ export class ErrorInterceptor implements HttpInterceptor { this.router.navigateByUrl('/auth').then(); break; case 403: // forbidden - this.errorDialogService.openDialog( - { message: 'Access to resource is not allowed (Error 403)'}) - //alert('Access to resource is not allowed!'); + this.errorDialogService.openDialog({ + message: 'Access to resource is not allowed (Error 403)', + }); + // alert('Access to resource is not allowed!'); break; } // Return an observable with a user-facing error message. diff --git a/src/app/_services/auth.service.ts b/src/app/_services/auth.service.ts index 63982fd..9342b11 100644 --- a/src/app/_services/auth.service.ts +++ b/src/app/_services/auth.service.ts @@ -46,7 +46,7 @@ export class AuthService { } getWithToken(): Promise { - const sessionToken = this.getSessionToken() + const sessionToken = this.getSessionToken(); const headers = { Authorization: 'Bearer ' + sessionToken, 'Content-Type': 'application/json;charset=utf-8', @@ -92,33 +92,32 @@ export class AuthService { async login(): Promise { if (this.getSessionToken()) { sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN')); - } + } const o = await this.getChallenge(); const r = await signChallenge( - o.challenge, - o.realm, - environment.cicMetaUrl, - this.mutableKeyStore + o.challenge, + o.realm, + environment.cicMetaUrl, + this.mutableKeyStore ); - const tokenResponse = await this.sendSignedChallenge(r) - .then((response) => { - const token = response.headers.get('Token'); - if (token) { - return token; - } - if (response.status === 401) { - throw new HttpError('You are not authorized to use this system', response.status); - } - if (!response.ok) { - throw new HttpError('Unknown error from authentication server', response.status); - } + const tokenResponse = await this.sendSignedChallenge(r).then((response) => { + const token = response.headers.get('Token'); + if (token) { + return token; + } + if (response.status === 401) { + throw new HttpError('You are not authorized to use this system', response.status); + } + if (!response.ok) { + throw new HttpError('Unknown error from authentication server', response.status); + } }); if (tokenResponse) { this.setSessionToken(tokenResponse); - //this.setState('Click button to log in'); + // this.setState('Click button to log in'); return true; } return false; diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts index a51d47e..cf72b96 100644 --- a/src/app/auth/auth.component.ts +++ b/src/app/auth/auth.component.ts @@ -57,7 +57,7 @@ export class AuthComponent implements OnInit { } } catch (HttpError) { this.errorDialogService.openDialog({ - message: "Failed to login please try again.", + message: 'Failed to login please try again.', }); } } From 2515ce1d96057aa8dc9cd21b9c5dbf07556eb097 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 19:42:24 +0300 Subject: [PATCH 06/16] Reset pagination and sorting on secondary page navigation. --- src/app/pages/accounts/accounts.component.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/app/pages/accounts/accounts.component.ts b/src/app/pages/accounts/accounts.component.ts index 18368d3..e81b2d4 100644 --- a/src/app/pages/accounts/accounts.component.ts +++ b/src/app/pages/accounts/accounts.component.ts @@ -1,4 +1,10 @@ -import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core'; +import { + AfterViewInit, + ChangeDetectionStrategy, + Component, + OnInit, + ViewChild, +} from '@angular/core'; import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; @@ -16,7 +22,7 @@ import { AccountDetails } from '@app/_models'; styleUrls: ['./accounts.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) -export class AccountsComponent implements OnInit { +export class AccountsComponent implements OnInit, AfterViewInit { dataSource: MatTableDataSource; accounts: Array = []; displayedColumns: Array = ['name', 'phone', 'created', 'balance', 'location']; @@ -53,6 +59,11 @@ export class AccountsComponent implements OnInit { }); } + ngAfterViewInit(): void { + this.dataSource.paginator = this.paginator; + this.dataSource.sort = this.sort; + } + doFilter(value: string): void { this.dataSource.filter = value.trim().toLocaleLowerCase(); } From 717c8616aee779144da444540ef9dd06e1e134e3 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 19:48:44 +0300 Subject: [PATCH 07/16] Refactor loading of tokens to occur in app component. --- src/app/app.component.ts | 5 +++++ src/app/pages/tokens/tokens.component.ts | 20 +++++++++++++------- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 03aa30e..7ed099d 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -56,6 +56,11 @@ export class AppComponent implements OnInit { } catch (error) { this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); } + this.tokenService.load.subscribe(async (status: boolean) => { + if (status) { + await this.tokenService.getTokens(); + } + }); if (!this.swUpdate.isEnabled) { this.swUpdate.available.subscribe(() => { if (confirm('New Version available. Load New Version?')) { diff --git a/src/app/pages/tokens/tokens.component.ts b/src/app/pages/tokens/tokens.component.ts index 38cce28..cc717d5 100644 --- a/src/app/pages/tokens/tokens.component.ts +++ b/src/app/pages/tokens/tokens.component.ts @@ -1,4 +1,10 @@ -import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core'; +import { + AfterViewInit, + ChangeDetectionStrategy, + Component, + OnInit, + ViewChild, +} from '@angular/core'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { TokenService } from '@app/_services'; @@ -12,7 +18,7 @@ import { Token } from '@app/_models'; styleUrls: ['./tokens.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) -export class TokensComponent implements OnInit { +export class TokensComponent implements OnInit, AfterViewInit { dataSource: MatTableDataSource; columnsToDisplay: Array = ['name', 'symbol', 'address', 'supply']; @ViewChild(MatPaginator) paginator: MatPaginator; @@ -23,11 +29,6 @@ export class TokensComponent implements OnInit { constructor(private tokenService: TokenService) {} ngOnInit(): void { - this.tokenService.load.subscribe(async (status: boolean) => { - if (status) { - await this.tokenService.getTokens(); - } - }); this.tokenService.tokensSubject.subscribe((tokens) => { this.dataSource = new MatTableDataSource(tokens); this.dataSource.paginator = this.paginator; @@ -36,6 +37,11 @@ export class TokensComponent implements OnInit { }); } + ngAfterViewInit(): void { + this.dataSource.paginator = this.paginator; + this.dataSource.sort = this.sort; + } + doFilter(value: string): void { this.dataSource.filter = value.trim().toLocaleLowerCase(); } From 5fcee3dcf90d56740870fb16b8f8f82662b4f119 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 30 Jun 2021 20:01:18 +0300 Subject: [PATCH 08/16] Add default response when area name or type is not found. --- src/app/_services/location.service.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/_services/location.service.ts b/src/app/_services/location.service.ts index 562952f..740cc5e 100644 --- a/src/app/_services/location.service.ts +++ b/src/app/_services/location.service.ts @@ -35,6 +35,7 @@ export class LocationService { return queriedAreaName; } } + return 'other'; } getAreaTypes(): void { @@ -54,5 +55,6 @@ export class LocationService { return queriedAreaType; } } + return 'other'; } } From beca2bf7f8eef759424afb4ad41f2e3d2efe27d6 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Thu, 1 Jul 2021 16:22:27 +0300 Subject: [PATCH 09/16] Refactor online status tracker. --- src/app/_helpers/index.ts | 1 + src/app/_helpers/online-status.ts | 17 ++++++++++++++ .../network-status.component.html | 2 +- .../network-status.component.ts | 22 ++++++++++++++----- 4 files changed, 35 insertions(+), 7 deletions(-) create mode 100644 src/app/_helpers/online-status.ts diff --git a/src/app/_helpers/index.ts b/src/app/_helpers/index.ts index 82fdb87..c1f744b 100644 --- a/src/app/_helpers/index.ts +++ b/src/app/_helpers/index.ts @@ -9,3 +9,4 @@ export * from '@app/_helpers/mock-backend'; export * from '@app/_helpers/read-csv'; export * from '@app/_helpers/schema-validation'; export * from '@app/_helpers/sync'; +export * from '@app/_helpers/online-status'; diff --git a/src/app/_helpers/online-status.ts b/src/app/_helpers/online-status.ts new file mode 100644 index 0000000..86e2a10 --- /dev/null +++ b/src/app/_helpers/online-status.ts @@ -0,0 +1,17 @@ +const apiUrls = [ + 'https://api.coindesk.com/v1/bpi/currentprice.json', + 'https://dog.ceo/api/breeds/image/random', + 'https://ipinfo.io/161.185.160.93/geo', + 'https://randomuser.me/api/', +]; + +async function checkOnlineStatus(): Promise { + try { + const online = await fetch(apiUrls[Math.floor(Math.random() * apiUrls.length)]); + return online.status >= 200 && online.status < 300; + } catch (error) { + return false; + } +} + +export { checkOnlineStatus }; diff --git a/src/app/shared/network-status/network-status.component.html b/src/app/shared/network-status/network-status.component.html index 54d821a..92b9802 100644 --- a/src/app/shared/network-status/network-status.component.html +++ b/src/app/shared/network-status/network-status.component.html @@ -1,6 +1,6 @@
      • @@ -508,8 +512,8 @@ @@ -547,8 +551,8 @@ @@ -617,8 +621,8 @@ @@ -687,8 +691,8 @@ @@ -769,8 +773,8 @@ @@ -808,8 +812,47 @@ + + + + + + + +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -constructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router) +constructor(loggingService: LoggingService, router: Router)
        errorDialogService - ErrorDialogService - - No - -
          -
        • A service that provides a dialog box for displaying errors to the user.
        • -
        -
        -
        loggingService
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - + +
        + +
        + Returns : void + +
        +
        + + + + + + + + + + + + @@ -849,8 +892,8 @@ @@ -888,8 +931,8 @@ @@ -929,8 +972,8 @@ @@ -968,8 +1011,8 @@ @@ -1034,8 +1077,8 @@ @@ -1104,7 +1147,7 @@ @@ -1131,7 +1174,7 @@ @@ -1158,7 +1201,7 @@ @@ -1190,7 +1233,7 @@ @@ -1217,7 +1260,7 @@ @@ -1249,7 +1292,7 @@ @@ -1276,7 +1319,7 @@ @@ -1303,7 +1346,7 @@ @@ -1330,7 +1373,7 @@ @@ -1357,7 +1400,7 @@ @@ -1384,7 +1427,7 @@ @@ -1411,7 +1454,7 @@ @@ -1438,7 +1481,7 @@ @@ -1465,7 +1508,7 @@ @@ -1492,7 +1535,7 @@ @@ -1524,7 +1567,7 @@ @@ -1556,7 +1599,7 @@ @@ -1583,7 +1626,7 @@ @@ -1610,7 +1653,7 @@ @@ -1637,7 +1680,7 @@ @@ -1664,7 +1707,7 @@ @@ -1696,7 +1739,7 @@ @@ -1728,7 +1771,7 @@ @@ -1760,7 +1803,7 @@ @@ -1792,7 +1835,7 @@ @@ -1819,7 +1862,7 @@ @@ -1855,7 +1898,7 @@ @@ -1891,7 +1934,7 @@ @@ -1918,7 +1961,7 @@ @@ -1950,7 +1993,7 @@ @@ -1982,7 +2025,7 @@ @@ -2014,7 +2057,7 @@ @@ -2050,7 +2093,7 @@ @@ -2086,7 +2129,7 @@ @@ -2115,7 +2158,7 @@ @@ -2127,6 +2170,7 @@
        import {
        +  AfterViewInit,
           ChangeDetectionStrategy,
           ChangeDetectorRef,
           Component,
        @@ -2159,7 +2203,7 @@ import { AccountDetails, Transaction } from '@app/_models';
           styleUrls: ['./account-details.component.scss'],
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
        -export class AccountDetailsComponent implements OnInit {
        +export class AccountDetailsComponent implements OnInit, AfterViewInit {
           transactionsDataSource: MatTableDataSource<any>;
           transactionsDisplayedColumns: Array<string> = ['sender', 'recipient', 'value', 'created', 'type'];
           transactionsDefaultPageSize: number = 10;
        @@ -2231,6 +2275,7 @@ export class AccountDetailsComponent implements OnInit {
               location: ['', Validators.required],
               locationType: ['', Validators.required],
             });
        +    this.transactionService.resetTransactionsList();
             await this.blockSyncService.blockSync(this.accountAddress);
             this.userService.resetAccountsList();
             (await this.userService.getAccountByAddress(this.accountAddress, 100)).subscribe(
        @@ -2322,6 +2367,17 @@ export class AccountDetailsComponent implements OnInit {
             });
           }
         
        +  ngAfterViewInit(): void {
        +    if (this.userDataSource) {
        +      this.userDataSource.paginator = this.userTablePaginator;
        +      this.userDataSource.sort = this.userTableSort;
        +    }
        +    if (this.transactionsDataSource) {
        +      this.transactionsDataSource.paginator = this.transactionTablePaginator;
        +      this.transactionsDataSource.sort = this.transactionTableSort;
        +    }
        +  }
        +
           doTransactionFilter(value: string): void {
             this.transactionsDataSource.filter = value.trim().toLocaleLowerCase();
           }
        diff --git a/docs/compodoc/components/AccountsComponent.html b/docs/compodoc/components/AccountsComponent.html
        index 7b402f4..f161130 100644
        --- a/docs/compodoc/components/AccountsComponent.html
        +++ b/docs/compodoc/components/AccountsComponent.html
        @@ -71,6 +71,7 @@
             

        OnInit + AfterViewInit

        @@ -185,6 +186,10 @@ filterAccounts
      • + ngAfterViewInit +
      • +
      • + Async ngOnInit
      • @@ -212,12 +217,12 @@
      • @@ -234,6 +239,18 @@ + + + + + + + + @@ -310,8 +327,8 @@ @@ -380,8 +397,8 @@ @@ -419,8 +436,47 @@ + + + + + + + +
        + + + + ngAfterViewInit + + + +
        +ngAfterViewInit() +
        +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -constructor(userService: UserService, router: Router, tokenService: TokenService) +constructor(loggingService: LoggingService, userService: UserService, router: Router, tokenService: TokenService)
        - +
        loggingService + LoggingService + + No +
        userService
        - +
        - +
        - + +
        + +
        + Returns : void + +
        +
        + + + + + + + + + + + + @@ -443,6 +499,7 @@ + Async ngOnInit @@ -451,15 +508,16 @@ @@ -468,7 +526,7 @@ @@ -497,8 +555,8 @@ @@ -538,8 +596,8 @@ @@ -613,7 +671,7 @@ @@ -645,7 +703,7 @@ @@ -672,7 +730,7 @@ @@ -699,7 +757,7 @@ @@ -731,7 +789,7 @@ @@ -763,7 +821,7 @@ @@ -795,7 +853,7 @@ @@ -831,7 +889,7 @@ @@ -867,7 +925,7 @@ @@ -894,7 +952,7 @@ @@ -907,11 +965,17 @@
        -
        import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';
        +        
        import {
        +  AfterViewInit,
        +  ChangeDetectionStrategy,
        +  Component,
        +  OnInit,
        +  ViewChild,
        +} from '@angular/core';
         import { MatTableDataSource } from '@angular/material/table';
         import { MatPaginator } from '@angular/material/paginator';
         import { MatSort } from '@angular/material/sort';
        -import { TokenService, UserService } from '@app/_services';
        +import { LoggingService, TokenService, UserService } from '@app/_services';
         import { Router } from '@angular/router';
         import { exportCsv } from '@app/_helpers';
         import { strip0x } from '@src/assets/js/ethtx/dist/hex';
        @@ -925,7 +989,7 @@ import { AccountDetails } from '@app/_models';
           styleUrls: ['./accounts.component.scss'],
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
        -export class AccountsComponent implements OnInit {
        +export class AccountsComponent implements OnInit, AfterViewInit {
           dataSource: MatTableDataSource<any>;
           accounts: Array<AccountDetails> = [];
           displayedColumns: Array<string> = ['name', 'phone', 'created', 'balance', 'location'];
        @@ -939,18 +1003,25 @@ export class AccountsComponent implements OnInit {
           @ViewChild(MatSort) sort: MatSort;
         
           constructor(
        +    private loggingService: LoggingService,
             private userService: UserService,
             private router: Router,
             private tokenService: TokenService
           ) {}
         
        -  ngOnInit(): void {
        +  async ngOnInit(): Promise<void> {
             this.userService.accountsSubject.subscribe((accounts) => {
               this.dataSource = new MatTableDataSource<any>(accounts);
               this.dataSource.paginator = this.paginator;
               this.dataSource.sort = this.sort;
               this.accounts = accounts;
             });
        +    try {
        +      // TODO it feels like this should be in the onInit handler
        +      await this.userService.loadAccounts(100);
        +    } catch (error) {
        +      this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });
        +    }
             this.userService
               .getAccountTypes()
               .pipe(first())
        @@ -962,6 +1033,13 @@ export class AccountsComponent implements OnInit {
             });
           }
         
        +  ngAfterViewInit(): void {
        +    if (this.dataSource) {
        +      this.dataSource.paginator = this.paginator;
        +      this.dataSource.sort = this.sort;
        +    }
        +  }
        +
           doFilter(value: string): void {
             this.dataSource.filter = value.trim().toLocaleLowerCase();
           }
        diff --git a/docs/compodoc/components/AppComponent.html b/docs/compodoc/components/AppComponent.html
        index 231b7a4..f1c97ef 100644
        --- a/docs/compodoc/components/AppComponent.html
        +++ b/docs/compodoc/components/AppComponent.html
        @@ -133,12 +133,18 @@
                         
        @@ -193,12 +199,12 @@ @@ -311,6 +317,18 @@ + + + + + + + +
        + + + + ngAfterViewInit + + + +
        +ngAfterViewInit() +
        +
        -ngOnInit() + + ngOnInit()
        - +
        - Returns : void + Returns : Promise<void>
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -constructor(authService: AuthService, blockSyncService: BlockSyncService, errorDialogService: ErrorDialogService, loggingService: LoggingService, tokenService: TokenService, transactionService: TransactionService, userService: UserService, swUpdate: SwUpdate) +constructor(authService: AuthService, blockSyncService: BlockSyncService, errorDialogService: ErrorDialogService, loggingService: LoggingService, tokenService: TokenService, transactionService: TransactionService, userService: UserService, swUpdate: SwUpdate, router: Router)
        - +
        router + Router + + No +
        @@ -351,8 +369,8 @@ - + @@ -386,8 +404,8 @@ - + @@ -424,8 +442,8 @@ - + @@ -463,8 +481,8 @@ - + @@ -513,6 +531,38 @@

        Properties

        + + + + + + + + + + + + + + + + + +
        + + + + accountDetailsRegex + + +
        + Type : string + +
        + Default value : '/accounts/[a-z,A-Z,0-9]{40}' +
        + +
        @@ -538,7 +588,7 @@ @@ -570,7 +620,34 @@ + + + + +
        - +
        - + +
        + + + + + + + + + + @@ -594,6 +671,8 @@ import { UserService, } from '@app/_services'; import { SwUpdate } from '@angular/service-worker'; +import { NavigationEnd, Router } from '@angular/router'; +import { filter } from 'rxjs/operators'; @Component({ selector: 'app-root', @@ -604,6 +683,8 @@ import { SwUpdate } from '@angular/service-worker'; export class AppComponent implements OnInit { title = 'CICADA'; mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)'); + url: string; + accountDetailsRegex = '/accounts/[a-z,A-Z,0-9]{40}'; constructor( private authService: AuthService, @@ -613,7 +694,8 @@ export class AppComponent implements OnInit { private tokenService: TokenService, private transactionService: TransactionService, private userService: UserService, - private swUpdate: SwUpdate + private swUpdate: SwUpdate, + private router: Router ) { this.mediaQuery.addEventListener('change', this.onResize); this.onResize(this.mediaQuery); @@ -624,7 +706,24 @@ export class AppComponent implements OnInit { await this.tokenService.init(); await this.userService.init(); await this.transactionService.init(); - await this.blockSyncService.blockSync(); + await this.router.events + .pipe(filter((e) => e instanceof NavigationEnd)) + .forEach(async (routeInfo) => { + if (routeInfo instanceof NavigationEnd) { + this.url = routeInfo.url; + if (!this.url.match(this.accountDetailsRegex) || !this.url.includes('tx')) { + await this.blockSyncService.blockSync(); + } + if (!this.url.includes('accounts')) { + try { + // TODO it feels like this should be in the onInit handler + await this.userService.loadAccounts(100); + } catch (error) { + this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); + } + } + } + }); try { const publicKeys = await this.authService.getPublicKeys(); await this.authService.mutableKeyStore.importPublicKey(publicKeys); @@ -635,12 +734,11 @@ export class AppComponent implements OnInit { }); // TODO do something to halt user progress...show a sad cicada page 🦗? } - try { - // TODO it feels like this should be in the onInit handler - await this.userService.loadAccounts(100); - } catch (error) { - this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error }); - } + this.tokenService.load.subscribe(async (status: boolean) => { + if (status) { + await this.tokenService.getTokens(); + } + }); if (!this.swUpdate.isEnabled) { this.swUpdate.available.subscribe(() => { if (confirm('New Version available. Load New Version?')) { diff --git a/docs/compodoc/components/AuthComponent.html b/docs/compodoc/components/AuthComponent.html index 8e004d8..d15420f 100644 --- a/docs/compodoc/components/AuthComponent.html +++ b/docs/compodoc/components/AuthComponent.html @@ -745,7 +745,7 @@ export class AuthComponent implements OnInit { } } catch (HttpError) { this.errorDialogService.openDialog({ - message: HttpError.message, + message: 'Failed to login please try again.', }); } } diff --git a/docs/compodoc/components/NetworkStatusComponent.html b/docs/compodoc/components/NetworkStatusComponent.html index c977b9d..fbb9985 100644 --- a/docs/compodoc/components/NetworkStatusComponent.html +++ b/docs/compodoc/components/NetworkStatusComponent.html @@ -134,7 +134,7 @@ @@ -177,7 +177,7 @@ @@ -246,8 +246,8 @@ @@ -285,8 +285,8 @@ @@ -312,11 +312,11 @@ @@ -328,12 +328,12 @@ @@ -347,6 +347,7 @@
        import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
        +import { checkOnlineStatus } from '@src/app/_helpers';
         
         @Component({
           selector: 'app-network-status',
        @@ -355,22 +356,31 @@
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
         export class NetworkStatusComponent implements OnInit {
        -  noInternetConnection: boolean = !navigator.onLine;
        +  online: boolean = navigator.onLine;
         
           constructor(private cdr: ChangeDetectorRef) {
             this.handleNetworkChange();
           }
         
        -  ngOnInit(): void {}
        +  ngOnInit(): void {
        +    window.addEventListener('online', (event: any) => {
        +      this.online = true;
        +      this.cdr.detectChanges();
        +    });
        +    window.addEventListener('offline', (event: any) => {
        +      this.online = false;
        +      this.cdr.detectChanges();
        +    });
        +  }
         
           handleNetworkChange(): void {
        -    setTimeout(() => {
        -      if (!navigator.onLine !== this.noInternetConnection) {
        -        this.noInternetConnection = !navigator.onLine;
        +    setTimeout(async () => {
        +      if (this.online !== (await checkOnlineStatus())) {
        +        this.online = await checkOnlineStatus();
                 this.cdr.detectChanges();
               }
               this.handleNetworkChange();
        -    }, 5000);
        +    }, 3000);
           }
         }
         
        @@ -379,7 +389,7 @@ export class NetworkStatusComponent implements OnInit {
        <nav class="navbar navbar-dark background-dark">
           <h1 class="navbar-brand">
        -    <div *ngIf="noInternetConnection; then offlineBlock; else onlineBlock"></div>
        +    <div *ngIf="online; then onlineBlock; else offlineBlock"></div>
             <ng-template #offlineBlock>
               <strong style="color: red">OFFLINE </strong>
               <img width="20rem" src="assets/images/no-wifi.svg" alt="Internet Disconnected" />
        @@ -425,7 +435,7 @@ export class NetworkStatusComponent implements OnInit {
         
         
         
        +
        +       
        +       
        +       
        +       
        +       
        +
        +       
        +
        +       
        +       
        +       
        +       
        +
        +       
        +
        +       
        +       
        +       
        +       
        +       
        +          
        +          
        +          
        +          
        +       
        +
        +
        +    
        +
        diff --git a/docs/compodoc/interceptors/ErrorInterceptor.html b/docs/compodoc/interceptors/ErrorInterceptor.html
        index 343508b..b63821c 100644
        --- a/docs/compodoc/interceptors/ErrorInterceptor.html
        +++ b/docs/compodoc/interceptors/ErrorInterceptor.html
        @@ -103,7 +103,7 @@
                     
        @@ -128,6 +128,24 @@ + + + + + + + + + @@ -200,8 +218,8 @@ @@ -297,7 +315,7 @@ import { Observable, throwError } from 'rxjs'; import { catchError } from 'rxjs/operators'; // Application imports -import { LoggingService } from '@app/_services'; +import { ErrorDialogService, LoggingService } from '@app/_services'; /** Intercepts and handles errors from outgoing HTTP request. */ @Injectable() @@ -305,10 +323,15 @@ export class ErrorInterceptor implements HttpInterceptor { /** * Initialization of the error interceptor. * + * @param errorDialogService - A service that provides a dialog box for displaying errors to the user. * @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) {} + constructor( + private errorDialogService: ErrorDialogService, + private loggingService: LoggingService, + private router: Router + ) {} /** * Intercepts HTTP requests. @@ -337,7 +360,10 @@ export class ErrorInterceptor implements HttpInterceptor { this.router.navigateByUrl('/auth').then(); break; case 403: // forbidden - alert('Access to resource is not allowed!'); + this.errorDialogService.openDialog({ + message: 'Access to resource is not allowed (Error 403)', + }); + // alert('Access to resource is not allowed!'); break; } // Return an observable with a user-facing error message. diff --git a/docs/compodoc/js/menu-wc.js b/docs/compodoc/js/menu-wc.js index b59cb5a..78a9ff1 100644 --- a/docs/compodoc/js/menu-wc.js +++ b/docs/compodoc/js/menu-wc.js @@ -114,13 +114,13 @@ customElements.define('compodoc-menu', class extends HTMLElement { AppModule
      • -
      • +
        + + + + url + + +
        + Type : string + +
        +
        - +
        - +
        - +
        - + - noInternetConnection - + online +
        - Default value : !navigator.onLine + Default value : navigator.onLine
        - +
        -constructor(loggingService: LoggingService, router: Router) +constructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router)
        errorDialogService + ErrorDialogService + + No + +
          +
        • A service that provides a dialog box for displaying errors to the user.
        • +
        +
        +
        loggingService
        - +
        +

        src/app/_helpers/online-status.ts

        +
        +

        + + + + + + + + + + + + + diff --git a/docs/compodoc/miscellaneous/variables.html b/docs/compodoc/miscellaneous/variables.html index 177f195..0da1843 100644 --- a/docs/compodoc/miscellaneous/variables.html +++ b/docs/compodoc/miscellaneous/variables.html @@ -69,6 +69,9 @@
      • actions   (src/.../mock-backend.ts)
      • +
      • + apiUrls   (src/.../online-status.ts) +
      • areaNames   (src/.../mock-backend.ts)
      • @@ -1411,6 +1414,39 @@
        + + + + checkOnlineStatus + + + +
        +checkOnlineStatus() +
        + +
        + Returns : Promise<boolean> +
        +

        src/app/_helpers/online-status.ts

        +
        +

        + + + + + + + + + + + + + +
        + + + + apiUrls + + +
        + Type : [] + +
        + Default value : [ + 'https://api.coindesk.com/v1/bpi/currentprice.json', + 'https://dog.ceo/api/breeds/image/random', +] +
        +

        src/app/_models/account.ts

        diff --git a/docs/compodoc/modules/AccountsModule.html b/docs/compodoc/modules/AccountsModule.html index e2d836b..f5c2217 100644 --- a/docs/compodoc/modules/AccountsModule.html +++ b/docs/compodoc/modules/AccountsModule.html @@ -65,103 +65,103 @@ cluster_AccountsModule - -cluster_AccountsModule_imports - - cluster_AccountsModule_declarations - + + + +cluster_AccountsModule_imports + AccountDetailsComponent - -AccountDetailsComponent + +AccountDetailsComponent AccountsModule - -AccountsModule + +AccountsModule AccountDetailsComponent->AccountsModule - - + + AccountSearchComponent - -AccountSearchComponent + +AccountSearchComponent AccountSearchComponent->AccountsModule - - + + AccountsComponent - -AccountsComponent + +AccountsComponent AccountsComponent->AccountsModule - - + + CreateAccountComponent - -CreateAccountComponent + +CreateAccountComponent CreateAccountComponent->AccountsModule - - + + AccountsRoutingModule - -AccountsRoutingModule + +AccountsRoutingModule AccountsRoutingModule->AccountsModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AccountsModule - - + + TransactionsModule - -TransactionsModule + +TransactionsModule TransactionsModule->AccountsModule - - + + diff --git a/docs/compodoc/modules/AccountsModule/dependencies.svg b/docs/compodoc/modules/AccountsModule/dependencies.svg index 9a89256..0e07050 100644 --- a/docs/compodoc/modules/AccountsModule/dependencies.svg +++ b/docs/compodoc/modules/AccountsModule/dependencies.svg @@ -24,103 +24,103 @@ cluster_AccountsModule - -cluster_AccountsModule_imports - - cluster_AccountsModule_declarations - + + + +cluster_AccountsModule_imports + AccountDetailsComponent - -AccountDetailsComponent + +AccountDetailsComponent AccountsModule - -AccountsModule + +AccountsModule AccountDetailsComponent->AccountsModule - - + + AccountSearchComponent - -AccountSearchComponent + +AccountSearchComponent AccountSearchComponent->AccountsModule - - + + AccountsComponent - -AccountsComponent + +AccountsComponent AccountsComponent->AccountsModule - - + + CreateAccountComponent - -CreateAccountComponent + +CreateAccountComponent CreateAccountComponent->AccountsModule - - + + AccountsRoutingModule - -AccountsRoutingModule + +AccountsRoutingModule AccountsRoutingModule->AccountsModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AccountsModule - - + + TransactionsModule - -TransactionsModule + +TransactionsModule TransactionsModule->AccountsModule - - + + diff --git a/docs/compodoc/modules/AdminModule.html b/docs/compodoc/modules/AdminModule.html index 048af73..a401fa7 100644 --- a/docs/compodoc/modules/AdminModule.html +++ b/docs/compodoc/modules/AdminModule.html @@ -65,55 +65,55 @@ cluster_AdminModule - -cluster_AdminModule_imports - - cluster_AdminModule_declarations - + + + +cluster_AdminModule_imports + AdminComponent - -AdminComponent + +AdminComponent AdminModule - -AdminModule + +AdminModule AdminComponent->AdminModule - - + + AdminRoutingModule - -AdminRoutingModule + +AdminRoutingModule AdminRoutingModule->AdminModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AdminModule - - + + diff --git a/docs/compodoc/modules/AdminModule/dependencies.svg b/docs/compodoc/modules/AdminModule/dependencies.svg index 3310125..b2d203c 100644 --- a/docs/compodoc/modules/AdminModule/dependencies.svg +++ b/docs/compodoc/modules/AdminModule/dependencies.svg @@ -24,55 +24,55 @@ cluster_AdminModule - -cluster_AdminModule_imports - - cluster_AdminModule_declarations - + + + +cluster_AdminModule_imports + AdminComponent - -AdminComponent + +AdminComponent AdminModule - -AdminModule + +AdminModule AdminComponent->AdminModule - - + + AdminRoutingModule - -AdminRoutingModule + +AdminRoutingModule AdminRoutingModule->AdminModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AdminModule - - + + diff --git a/docs/compodoc/modules/AppModule.html b/docs/compodoc/modules/AppModule.html index be378ea..945c573 100644 --- a/docs/compodoc/modules/AppModule.html +++ b/docs/compodoc/modules/AppModule.html @@ -45,42 +45,42 @@ - + dependencies - -Legend - -  Declarations - -  Module - -  Bootstrap - -  Providers - -  Exports + +Legend + +  Declarations + +  Module + +  Bootstrap + +  Providers + +  Exports cluster_AppModule - - - -cluster_AppModule_bootstrap - - - -cluster_AppModule_imports - + cluster_AppModule_providers - + + + +cluster_AppModule_imports + cluster_AppModule_declarations + +cluster_AppModule_bootstrap + + AppComponent @@ -90,98 +90,110 @@ AppModule - -AppModule + +AppModule AppComponent->AppModule - - + + AppComponent - -AppComponent + +AppComponent AppModule->AppComponent - - + + AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + + + + +ConnectionInterceptor + +ConnectionInterceptor + + + +ConnectionInterceptor->AppModule + + - + ErrorInterceptor - -ErrorInterceptor + +ErrorInterceptor - + ErrorInterceptor->AppModule - - + + - + GlobalErrorHandler - -GlobalErrorHandler + +GlobalErrorHandler - + GlobalErrorHandler->AppModule - - + + - + HttpConfigInterceptor - -HttpConfigInterceptor + +HttpConfigInterceptor - + HttpConfigInterceptor->AppModule - - + + - + LoggingInterceptor - -LoggingInterceptor + +LoggingInterceptor - + LoggingInterceptor->AppModule - - + + @@ -234,6 +246,9 @@

        Providers

          +
        • + ConnectionInterceptor +
        • ErrorInterceptor
        • @@ -290,7 +305,12 @@ import { MatTableModule } from '@angular/material/table'; import { AuthGuard } from '@app/_guards'; import { LoggerModule } from 'ngx-logger'; import { environment } from '@src/environments/environment'; -import { ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor } from '@app/_interceptors'; +import { + ConnectionInterceptor, + ErrorInterceptor, + HttpConfigInterceptor, + LoggingInterceptor, +} from '@app/_interceptors'; import { MutablePgpKeyStore } from '@app/_pgp'; import { ServiceWorkerModule } from '@angular/service-worker'; @@ -317,6 +337,7 @@ import { ServiceWorkerModule } from '@angular/service-worker'; MockBackendProvider, GlobalErrorHandler, { provide: ErrorHandler, useClass: GlobalErrorHandler }, + { provide: HTTP_INTERCEPTORS, useClass: ConnectionInterceptor, multi: true }, { provide: HTTP_INTERCEPTORS, useClass: HttpConfigInterceptor, multi: true }, { provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }, { provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true }, diff --git a/docs/compodoc/modules/AppModule/dependencies.svg b/docs/compodoc/modules/AppModule/dependencies.svg index b954b67..6035202 100644 --- a/docs/compodoc/modules/AppModule/dependencies.svg +++ b/docs/compodoc/modules/AppModule/dependencies.svg @@ -4,42 +4,42 @@ - + dependencies - -Legend - -  Declarations - -  Module - -  Bootstrap - -  Providers - -  Exports + +Legend + +  Declarations + +  Module + +  Bootstrap + +  Providers + +  Exports cluster_AppModule - - - -cluster_AppModule_bootstrap - - - -cluster_AppModule_imports - + cluster_AppModule_providers - + + + +cluster_AppModule_imports + cluster_AppModule_declarations + +cluster_AppModule_bootstrap + + AppComponent @@ -49,98 +49,110 @@ AppModule - -AppModule + +AppModule AppComponent->AppModule - - + + AppComponent - -AppComponent + +AppComponent AppModule->AppComponent - - + + AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + + + + +ConnectionInterceptor + +ConnectionInterceptor + + + +ConnectionInterceptor->AppModule + + - + ErrorInterceptor - -ErrorInterceptor + +ErrorInterceptor - + ErrorInterceptor->AppModule - - + + - + GlobalErrorHandler - -GlobalErrorHandler + +GlobalErrorHandler - + GlobalErrorHandler->AppModule - - + + - + HttpConfigInterceptor - -HttpConfigInterceptor + +HttpConfigInterceptor - + HttpConfigInterceptor->AppModule - - + + - + LoggingInterceptor - -LoggingInterceptor + +LoggingInterceptor - + LoggingInterceptor->AppModule - - + + diff --git a/docs/compodoc/modules/TransactionsModule.html b/docs/compodoc/modules/TransactionsModule.html index cc83b27..f623dce 100644 --- a/docs/compodoc/modules/TransactionsModule.html +++ b/docs/compodoc/modules/TransactionsModule.html @@ -65,10 +65,6 @@ cluster_TransactionsModule - -cluster_TransactionsModule_exports - - cluster_TransactionsModule_imports @@ -77,6 +73,10 @@ cluster_TransactionsModule_declarations + +cluster_TransactionsModule_exports + + TransactionDetailsComponent diff --git a/docs/compodoc/modules/TransactionsModule/dependencies.svg b/docs/compodoc/modules/TransactionsModule/dependencies.svg index eb0564d..802da2c 100644 --- a/docs/compodoc/modules/TransactionsModule/dependencies.svg +++ b/docs/compodoc/modules/TransactionsModule/dependencies.svg @@ -24,10 +24,6 @@ cluster_TransactionsModule - -cluster_TransactionsModule_exports - - cluster_TransactionsModule_imports @@ -36,6 +32,10 @@ cluster_TransactionsModule_declarations + +cluster_TransactionsModule_exports + + TransactionDetailsComponent diff --git a/docs/compodoc/overview.html b/docs/compodoc/overview.html index 705ae7a..5f8be53 100644 --- a/docs/compodoc/overview.html +++ b/docs/compodoc/overview.html @@ -43,22 +43,22 @@ - + dependencies - -Legend - -  Declarations - -  Module - -  Bootstrap - -  Providers - -  Exports + +Legend + +  Declarations + +  Module + +  Bootstrap + +  Providers + +  Exports cluster_AccountsModule @@ -85,59 +85,59 @@ cluster_AppModule - + cluster_AppModule_declarations - + cluster_AppModule_imports - + cluster_AppModule_bootstrap - + cluster_AppModule_providers - + cluster_AuthModule - + cluster_AuthModule_declarations - + cluster_AuthModule_imports - + cluster_PagesModule - + cluster_PagesModule_declarations - + cluster_PagesModule_imports - + cluster_SettingsModule - + cluster_SettingsModule_declarations - + cluster_SettingsModule_imports - + cluster_SharedModule @@ -153,15 +153,15 @@ cluster_TokensModule - + cluster_TokensModule_declarations - + cluster_TokensModule_imports - + cluster_TransactionsModule @@ -264,7 +264,7 @@ TransactionsModule - + SharedModule->TransactionsModule @@ -284,158 +284,158 @@ AppModule - -AppModule + +AppModule SharedModule->AppModule - - + + - + AuthModule - -AuthModule + +AuthModule - + SharedModule->AuthModule - - + + - + PagesModule - -PagesModule + +PagesModule - + SharedModule->PagesModule - - + + - + SettingsModule - -SettingsModule + +SettingsModule - + SharedModule->SettingsModule - - + + - + FooterComponent FooterComponent - + SharedModule->FooterComponent - + MenuSelectionDirective MenuSelectionDirective - + SharedModule->MenuSelectionDirective - + NetworkStatusComponent NetworkStatusComponent - + SharedModule->NetworkStatusComponent - + SafePipe SafePipe - + SharedModule->SafePipe - + SidebarComponent SidebarComponent - + SharedModule->SidebarComponent - + TokenRatioPipe TokenRatioPipe - + SharedModule->TokenRatioPipe - + TopbarComponent TopbarComponent - + SharedModule->TopbarComponent - + UnixDatePipe UnixDatePipe - + SharedModule->UnixDatePipe - + TokensModule - -TokensModule + +TokensModule - + SharedModule->TokensModule - - + + @@ -444,13 +444,13 @@ - + TransactionDetailsComponent TransactionDetailsComponent - + TransactionsModule->TransactionDetailsComponent @@ -482,371 +482,383 @@ AppComponent - -AppComponent + +AppComponent AppComponent->AppModule - - + + AppComponent - -AppComponent + +AppComponent AppModule->AppComponent - - + + AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + + + + +ConnectionInterceptor + +ConnectionInterceptor + + + +ConnectionInterceptor->AppModule + + - + ErrorInterceptor ErrorInterceptor - + ErrorInterceptor->AppModule - - + + - + GlobalErrorHandler GlobalErrorHandler - + GlobalErrorHandler->AppModule - - + + - + HttpConfigInterceptor - -HttpConfigInterceptor + +HttpConfigInterceptor - + HttpConfigInterceptor->AppModule - - + + - + LoggingInterceptor - -LoggingInterceptor + +LoggingInterceptor - + LoggingInterceptor->AppModule - - + + - + AuthComponent - -AuthComponent + +AuthComponent - + AuthComponent->AuthModule - - + + - + PasswordToggleDirective - -PasswordToggleDirective + +PasswordToggleDirective - + PasswordToggleDirective->AuthModule - - + + - + AuthRoutingModule - -AuthRoutingModule + +AuthRoutingModule - + AuthRoutingModule->AuthModule - - + + - + PagesComponent - -PagesComponent + +PagesComponent - + PagesComponent->PagesModule - - + + - + PagesRoutingModule - -PagesRoutingModule + +PagesRoutingModule - + PagesRoutingModule->PagesModule - - + + - + OrganizationComponent - -OrganizationComponent + +OrganizationComponent - + OrganizationComponent->SettingsModule - - + + - + SettingsComponent - -SettingsComponent + +SettingsComponent - + SettingsComponent->SettingsModule - - + + - + SettingsRoutingModule - -SettingsRoutingModule + +SettingsRoutingModule - + SettingsRoutingModule->SettingsModule - - + + - + ErrorDialogComponent ErrorDialogComponent - + ErrorDialogComponent->SharedModule - + FooterComponent FooterComponent - + FooterComponent->SharedModule - + MenuSelectionDirective MenuSelectionDirective - + MenuSelectionDirective->SharedModule - + MenuToggleDirective MenuToggleDirective - + MenuToggleDirective->SharedModule - + NetworkStatusComponent NetworkStatusComponent - + NetworkStatusComponent->SharedModule - + SafePipe SafePipe - + SafePipe->SharedModule - + SidebarComponent SidebarComponent - + SidebarComponent->SharedModule - + TokenRatioPipe TokenRatioPipe - + TokenRatioPipe->SharedModule - + TopbarComponent TopbarComponent - + TopbarComponent->SharedModule - + UnixDatePipe UnixDatePipe - + UnixDatePipe->SharedModule - + TokenDetailsComponent - -TokenDetailsComponent + +TokenDetailsComponent - + TokenDetailsComponent->TokensModule - - + + - + TokensComponent - -TokensComponent + +TokensComponent - + TokensComponent->TokensModule - - + + - + TokensRoutingModule - -TokensRoutingModule + +TokensRoutingModule - + TokensRoutingModule->TokensModule - - + + - + TransactionDetailsComponent TransactionDetailsComponent - + TransactionDetailsComponent->TransactionsModule - + TransactionsComponent TransactionsComponent - + TransactionsComponent->TransactionsModule - + TransactionsRoutingModule TransactionsRoutingModule - + TransactionsRoutingModule->TransactionsModule diff --git a/docs/typedoc/assets/js/search.js b/docs/typedoc/assets/js/search.js index 3988efd..569edf8 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","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":64,"name":"rejectBody","url":"modules/app__helpers_global_error_handler.html#rejectbody","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"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":47,"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":48,"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":49,"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":50,"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":51,"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":52,"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":53,"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":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":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":56,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":57,"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":58,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":59,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":60,"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":61,"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":62,"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":63,"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":64,"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":65,"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":66,"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":67,"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":68,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":69,"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":70,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":71,"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":72,"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":73,"kind":1,"name":"app/_helpers/sync","url":"modules/app__helpers_sync.html","classes":"tsd-kind-module"},{"id":74,"kind":64,"name":"updateSyncable","url":"modules/app__helpers_sync.html#updatesyncable","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/sync"},{"id":75,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":76,"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":77,"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":78,"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":79,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":80,"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":81,"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":82,"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":83,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":84,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":85,"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":86,"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":87,"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":88,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":89,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":90,"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":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":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"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":94,"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":95,"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":96,"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":97,"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":98,"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":99,"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":100,"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":101,"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":102,"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":103,"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":104,"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":105,"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":106,"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":107,"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":108,"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":109,"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":110,"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":111,"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":112,"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":113,"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":114,"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":115,"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":116,"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":117,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":118,"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":119,"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":120,"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":121,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":122,"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":123,"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":124,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":125,"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":126,"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":127,"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":128,"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":129,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":130,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":131,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":132,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"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":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":136,"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":137,"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":138,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":139,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":140,"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":141,"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":142,"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":143,"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":144,"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":145,"kind":256,"name":"W3","url":"interfaces/app__models_settings.w3.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":1024,"name":"engine","url":"interfaces/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":147,"kind":1024,"name":"provider","url":"interfaces/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":148,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":149,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":150,"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":151,"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":152,"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":153,"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":154,"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":155,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":157,"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":158,"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":159,"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":160,"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":161,"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":162,"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":163,"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":164,"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":165,"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":166,"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":167,"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":168,"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":169,"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":170,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":171,"kind":256,"name":"Conversion","url":"interfaces/app__models_transaction.conversion.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":172,"kind":1024,"name":"destinationToken","url":"interfaces/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":173,"kind":1024,"name":"fromValue","url":"interfaces/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":174,"kind":1024,"name":"sourceToken","url":"interfaces/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":175,"kind":1024,"name":"toValue","url":"interfaces/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":176,"kind":1024,"name":"trader","url":"interfaces/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":177,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":178,"kind":1024,"name":"user","url":"interfaces/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":179,"kind":256,"name":"Transaction","url":"interfaces/app__models_transaction.transaction.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":180,"kind":1024,"name":"from","url":"interfaces/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":181,"kind":1024,"name":"recipient","url":"interfaces/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":182,"kind":1024,"name":"sender","url":"interfaces/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":183,"kind":1024,"name":"to","url":"interfaces/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":184,"kind":1024,"name":"token","url":"interfaces/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":185,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":186,"kind":1024,"name":"type","url":"interfaces/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":187,"kind":1024,"name":"value","url":"interfaces/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":188,"kind":256,"name":"Tx","url":"interfaces/app__models_transaction.tx.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":189,"kind":1024,"name":"block","url":"interfaces/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":190,"kind":1024,"name":"success","url":"interfaces/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":191,"kind":1024,"name":"timestamp","url":"interfaces/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"txHash","url":"interfaces/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"txIndex","url":"interfaces/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":194,"kind":256,"name":"TxToken","url":"interfaces/app__models_transaction.txtoken.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":195,"kind":1024,"name":"address","url":"interfaces/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":196,"kind":1024,"name":"name","url":"interfaces/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":197,"kind":1024,"name":"symbol","url":"interfaces/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":198,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":199,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":200,"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":201,"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":202,"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":203,"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":204,"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":205,"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":206,"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":207,"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":208,"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":209,"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":210,"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":211,"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":212,"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":213,"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":214,"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":215,"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":216,"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":217,"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":218,"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":219,"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":220,"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":221,"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":222,"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":223,"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":224,"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":225,"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":226,"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":227,"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":228,"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":229,"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":230,"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":231,"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":232,"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":233,"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":234,"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":235,"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":236,"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":237,"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":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":"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":240,"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":241,"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":242,"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":243,"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":244,"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":245,"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":246,"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":247,"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":248,"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":249,"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":250,"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":251,"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":252,"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":253,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":254,"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":255,"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":256,"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":257,"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":258,"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":259,"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":260,"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":261,"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":262,"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":263,"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":264,"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":265,"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":266,"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":267,"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":268,"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":269,"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":270,"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":271,"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":272,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":274,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":275,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":277,"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":278,"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":279,"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":280,"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":281,"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":282,"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":283,"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":284,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":285,"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":286,"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":287,"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":288,"kind":1024,"name":"trustedUsers","url":"classes/app__services_auth_service.authservice.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":289,"kind":1024,"name":"trustedUsersList","url":"classes/app__services_auth_service.authservice.html#trusteduserslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/auth.service.AuthService"},{"id":290,"kind":1024,"name":"trustedUsersSubject","url":"classes/app__services_auth_service.authservice.html#trusteduserssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":291,"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":292,"kind":2048,"name":"getSessionToken","url":"classes/app__services_auth_service.authservice.html#getsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":293,"kind":2048,"name":"setSessionToken","url":"classes/app__services_auth_service.authservice.html#setsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":294,"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":295,"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":296,"kind":2048,"name":"sendSignedChallenge","url":"classes/app__services_auth_service.authservice.html#sendsignedchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":297,"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":298,"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":299,"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":300,"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":301,"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":302,"kind":2048,"name":"addTrustedUser","url":"classes/app__services_auth_service.authservice.html#addtrusteduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":303,"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":304,"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":305,"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":306,"kind":2048,"name":"getPrivateKeyInfo","url":"classes/app__services_auth_service.authservice.html#getprivatekeyinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":308,"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":309,"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":310,"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":311,"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":312,"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":313,"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":314,"kind":2048,"name":"newEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":315,"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":316,"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":317,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":318,"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":319,"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":320,"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":321,"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":322,"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":323,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":324,"kind":1,"name":"app/_services/keystore.service","url":"modules/app__services_keystore_service.html","classes":"tsd-kind-module"},{"id":325,"kind":128,"name":"KeystoreService","url":"classes/app__services_keystore_service.keystoreservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/keystore.service"},{"id":326,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_keystore_service.keystoreservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":327,"kind":2048,"name":"getKeystore","url":"classes/app__services_keystore_service.keystoreservice.html#getkeystore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":328,"kind":512,"name":"constructor","url":"classes/app__services_keystore_service.keystoreservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/keystore.service.KeystoreService"},{"id":329,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":330,"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":331,"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":332,"kind":1024,"name":"areaNames","url":"classes/app__services_location_service.locationservice.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":333,"kind":1024,"name":"areaNamesList","url":"classes/app__services_location_service.locationservice.html#areanameslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":334,"kind":1024,"name":"areaNamesSubject","url":"classes/app__services_location_service.locationservice.html#areanamessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":335,"kind":1024,"name":"areaTypes","url":"classes/app__services_location_service.locationservice.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":336,"kind":1024,"name":"areaTypesList","url":"classes/app__services_location_service.locationservice.html#areatypeslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":337,"kind":1024,"name":"areaTypesSubject","url":"classes/app__services_location_service.locationservice.html#areatypessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":338,"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":339,"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":340,"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":341,"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":342,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":343,"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":344,"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":345,"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":346,"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":347,"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":348,"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":349,"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":350,"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":351,"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":352,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":353,"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":354,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":355,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":356,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_registry_service.registryservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":357,"kind":1024,"name":"accountRegistry","url":"classes/app__services_registry_service.registryservice.html#accountregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":358,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":359,"kind":2048,"name":"getTokenRegistry","url":"classes/app__services_registry_service.registryservice.html#gettokenregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":360,"kind":2048,"name":"getAccountRegistry","url":"classes/app__services_registry_service.registryservice.html#getaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"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":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":363,"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":364,"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":365,"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":366,"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":367,"kind":1024,"name":"tokens","url":"classes/app__services_token_service.tokenservice.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":368,"kind":1024,"name":"tokensList","url":"classes/app__services_token_service.tokenservice.html#tokenslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/token.service.TokenService"},{"id":369,"kind":1024,"name":"tokensSubject","url":"classes/app__services_token_service.tokenservice.html#tokenssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":1024,"name":"load","url":"classes/app__services_token_service.tokenservice.html#load","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":2048,"name":"init","url":"classes/app__services_token_service.tokenservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"kind":2048,"name":"addToken","url":"classes/app__services_token_service.tokenservice.html#addtoken","classes":"tsd-kind-method 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":"getTokenByAddress","url":"classes/app__services_token_service.tokenservice.html#gettokenbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":375,"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":376,"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":377,"kind":2048,"name":"getTokenName","url":"classes/app__services_token_service.tokenservice.html#gettokenname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":378,"kind":2048,"name":"getTokenSymbol","url":"classes/app__services_token_service.tokenservice.html#gettokensymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":379,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":380,"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":381,"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":382,"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":383,"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":384,"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":385,"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":386,"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":387,"kind":2048,"name":"init","url":"classes/app__services_transaction_service.transactionservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"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":389,"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":390,"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":391,"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":392,"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":393,"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":394,"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":395,"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":396,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":397,"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":398,"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":399,"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":400,"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":401,"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":402,"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":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"kind":1024,"name":"categories","url":"classes/app__services_user_service.userservice.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":1024,"name":"categoriesList","url":"classes/app__services_user_service.userservice.html#categorieslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":411,"kind":1024,"name":"categoriesSubject","url":"classes/app__services_user_service.userservice.html#categoriessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"init","url":"classes/app__services_user_service.userservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"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":414,"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":415,"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":416,"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":417,"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":418,"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":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"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":428,"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":429,"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":430,"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":431,"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":432,"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":433,"kind":2048,"name":"addAccount","url":"classes/app__services_user_service.userservice.html#addaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":434,"kind":1,"name":"app/_services/web3.service","url":"modules/app__services_web3_service.html","classes":"tsd-kind-module"},{"id":435,"kind":128,"name":"Web3Service","url":"classes/app__services_web3_service.web3service.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/web3.service"},{"id":436,"kind":1024,"name":"web3","url":"classes/app__services_web3_service.web3service.html#web3","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":437,"kind":2048,"name":"getInstance","url":"classes/app__services_web3_service.web3service.html#getinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":438,"kind":512,"name":"constructor","url":"classes/app__services_web3_service.web3service.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/web3.service.Web3Service"},{"id":439,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":440,"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":441,"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":442,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":443,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":444,"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":445,"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":446,"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":447,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":448,"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":449,"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":450,"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":451,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":452,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":453,"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":454,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":455,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":456,"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":457,"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":458,"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":459,"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":460,"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":461,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":462,"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":463,"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":464,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":465,"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":466,"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":467,"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":468,"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":469,"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":470,"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":471,"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":472,"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":473,"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":474,"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":475,"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":476,"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":477,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":478,"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":479,"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":480,"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":481,"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":482,"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":483,"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":484,"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":485,"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":486,"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":487,"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":488,"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":489,"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":490,"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":491,"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":492,"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":493,"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":494,"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":495,"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":496,"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":497,"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":498,"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":499,"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":500,"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":501,"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":502,"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":503,"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":504,"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":505,"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":506,"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":507,"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":508,"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":509,"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":510,"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":511,"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":512,"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":513,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":514,"kind":1024,"name":"category","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":515,"kind":1024,"name":"area","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":516,"kind":1024,"name":"areaType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":517,"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":518,"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":519,"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":520,"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":521,"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":522,"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":523,"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":524,"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":525,"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":526,"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":527,"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":528,"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":529,"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":530,"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":531,"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":532,"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":533,"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":534,"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":535,"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":536,"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":537,"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":538,"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":539,"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":540,"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":541,"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":542,"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":543,"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":544,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":545,"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":546,"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":547,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":548,"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":549,"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":550,"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":551,"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":552,"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":553,"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":554,"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":555,"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":556,"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":557,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":558,"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":559,"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":560,"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":561,"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":562,"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":563,"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":564,"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":565,"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":566,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":567,"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":568,"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":569,"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":570,"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":571,"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":572,"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":573,"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":574,"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":575,"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":576,"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":577,"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":578,"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":579,"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":580,"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":581,"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":582,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":583,"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":584,"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":585,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":586,"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":587,"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":588,"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":589,"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":590,"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":591,"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":592,"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":593,"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":594,"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":595,"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":596,"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":597,"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":598,"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":599,"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":600,"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":601,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":602,"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":603,"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":604,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":605,"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":606,"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":607,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":608,"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":609,"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":610,"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":611,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":612,"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":613,"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":614,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":615,"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":616,"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":617,"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":618,"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":619,"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":620,"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":621,"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":622,"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":623,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":624,"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":625,"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":626,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":627,"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":628,"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":629,"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":630,"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":631,"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":632,"kind":1024,"name":"userInfo","url":"classes/app_pages_settings_settings_component.settingscomponent.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":633,"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":634,"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":635,"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":636,"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":637,"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":638,"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":639,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":640,"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":641,"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":642,"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":643,"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":644,"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":645,"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":646,"kind":1024,"name":"closeWindow","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":647,"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":648,"kind":2048,"name":"close","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":649,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":650,"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":651,"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":652,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":653,"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":654,"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":655,"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":656,"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":657,"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":658,"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":659,"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":660,"kind":1024,"name":"token","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":661,"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":662,"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":663,"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":664,"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":665,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":666,"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":667,"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":668,"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":669,"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":670,"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":671,"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":672,"kind":1024,"name":"closeWindow","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":673,"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":674,"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":675,"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":676,"kind":1024,"name":"tokenName","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokenname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":677,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":678,"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":679,"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":680,"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":681,"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":682,"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":683,"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":684,"kind":2048,"name":"close","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":685,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":686,"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":687,"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":688,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":689,"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":690,"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":691,"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":692,"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":693,"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":694,"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":695,"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":696,"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":697,"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":698,"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":699,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":700,"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":701,"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":702,"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":703,"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":704,"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":705,"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":706,"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":707,"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":708,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":709,"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":710,"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":711,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":712,"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":713,"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":714,"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":715,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":716,"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":717,"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":718,"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":719,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":720,"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":721,"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":722,"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":723,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":724,"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":725,"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":726,"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":727,"kind":1,"name":"app/shared/_pipes/unix-date.pipe","url":"modules/app_shared__pipes_unix_date_pipe.html","classes":"tsd-kind-module"},{"id":728,"kind":128,"name":"UnixDatePipe","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/unix-date.pipe"},{"id":729,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":730,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":731,"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":732,"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":733,"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":734,"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":735,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":736,"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":737,"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":738,"kind":1024,"name":"currentYear","url":"classes/app_shared_footer_footer_component.footercomponent.html#currentyear","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":739,"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":740,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":741,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":742,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":743,"kind":1024,"name":"noInternetConnection","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#nointernetconnection","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":744,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":745,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":746,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":747,"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":748,"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":749,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":750,"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":751,"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":752,"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":753,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":754,"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":755,"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":756,"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":757,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":758,"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":759,"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":760,"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":761,"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":762,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":763,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":764,"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":765,"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":766,"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":767,"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":768,"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":769,"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":770,"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":771,"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":772,"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":773,"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":774,"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":775,"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":776,"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":777,"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":778,"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":779,"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":780,"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":781,"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":782,"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":783,"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":784,"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":785,"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":786,"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":787,"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":788,"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":789,"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":790,"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":791,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":792,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":793,"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":794,"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":795,"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":796,"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":797,"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":798,"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":799,"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":800,"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":801,"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":802,"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":803,"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":804,"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":805,"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":806,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_dev.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":807,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":808,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":809,"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":810,"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":811,"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":812,"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":813,"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":814,"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":815,"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":816,"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":817,"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":818,"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":819,"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":820,"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":821,"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":822,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_prod.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":823,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":824,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":825,"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":826,"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":827,"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":828,"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":829,"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":830,"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":831,"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":832,"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":833,"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":834,"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":835,"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":836,"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":837,"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":838,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":839,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":840,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":841,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":842,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":843,"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":844,"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":845,"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":846,"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":847,"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":848,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":849,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":850,"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":851,"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":852,"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":853,"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":854,"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":855,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":856,"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":857,"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":858,"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":859,"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":860,"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":861,"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":862,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":863,"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":864,"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":865,"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":866,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":867,"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":868,"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":869,"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":870,"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":871,"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":872,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":873,"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":874,"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":875,"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":876,"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":877,"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":878,"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":879,"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":880,"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":881,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":882,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":883,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":884,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":885,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":886,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":887,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":888,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":889,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":890,"kind":16777216,"name":"rejectBody","url":"modules/app__helpers.html#rejectbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":891,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":892,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":893,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":894,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":895,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":896,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":897,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":898,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":899,"kind":16777216,"name":"updateSyncable","url":"modules/app__helpers.html#updatesyncable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":900,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":901,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":902,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":903,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":904,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":905,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":906,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":907,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":908,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":909,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":910,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":911,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":912,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":913,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":914,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":915,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":916,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":917,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":918,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":919,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":920,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":921,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":922,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":923,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":924,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":925,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":926,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":927,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":928,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":929,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":930,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":931,"kind":16777216,"name":"Web3Service","url":"modules/app__services.html#web3service","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":932,"kind":16777216,"name":"KeystoreService","url":"modules/app__services.html#keystoreservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":933,"kind":16777216,"name":"RegistryService","url":"modules/app__services.html#registryservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":934,"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":935,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":936,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":937,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":938,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":939,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":940,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":941,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":942,"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.803]],["parent/0",[]],["name/1",[1,60.803]],["parent/1",[0,6.78]],["name/2",[2,25.616]],["parent/2",[3,5.382]],["name/3",[4,60.803]],["parent/3",[3,5.382]],["name/4",[5,60.803]],["parent/4",[3,5.382]],["name/5",[6,60.803]],["parent/5",[3,5.382]],["name/6",[7,66.037]],["parent/6",[3,5.382]],["name/7",[8,66.037]],["parent/7",[3,5.382]],["name/8",[9,66.037]],["parent/8",[3,5.382]],["name/9",[10,66.037]],["parent/9",[3,5.382]],["name/10",[11,57.355]],["parent/10",[]],["name/11",[12,33.792,13,35.529]],["parent/11",[]],["name/12",[14,54.78]],["parent/12",[12,3.966,13,4.17]],["name/13",[2,25.616]],["parent/13",[12,3.966,15,4.17]],["name/14",[4,60.803]],["parent/14",[12,3.966,15,4.17]],["name/15",[5,60.803]],["parent/15",[12,3.966,15,4.17]],["name/16",[6,60.803]],["parent/16",[12,3.966,15,4.17]],["name/17",[16,66.037]],["parent/17",[12,3.966,15,4.17]],["name/18",[17,66.037]],["parent/18",[12,3.966,15,4.17]],["name/19",[18,66.037]],["parent/19",[12,3.966,15,4.17]],["name/20",[19,60.803]],["parent/20",[]],["name/21",[20,60.803]],["parent/21",[19,6.78]],["name/22",[2,25.616]],["parent/22",[21,6.78]],["name/23",[22,60.803]],["parent/23",[21,6.78]],["name/24",[23,57.355]],["parent/24",[]],["name/25",[24,60.803]],["parent/25",[]],["name/26",[25,60.803]],["parent/26",[24,6.78]],["name/27",[2,25.616]],["parent/27",[26,6.78]],["name/28",[22,60.803]],["parent/28",[26,6.78]],["name/29",[27,43.602,28,43.602]],["parent/29",[]],["name/30",[29,60.803]],["parent/30",[27,5.118,28,5.118]],["name/31",[30,43.602,31,43.602]],["parent/31",[]],["name/32",[32,60.803]],["parent/32",[30,5.118,31,5.118]],["name/33",[33,25.088,34,18.991,35,25.088,36,22.691]],["parent/33",[]],["name/34",[37,60.803]],["parent/34",[33,3.094,34,2.342,35,3.094,36,2.798]],["name/35",[2,25.616]],["parent/35",[33,3.094,34,2.342,35,3.094,38,3.434]],["name/36",[39,66.037]],["parent/36",[33,3.094,34,2.342,35,3.094,38,3.434]],["name/37",[40,60.803]],["parent/37",[]],["name/38",[41,60.803]],["parent/38",[40,6.78]],["name/39",[42,66.037]],["parent/39",[43,6.396]],["name/40",[44,66.037]],["parent/40",[43,6.396]],["name/41",[2,25.616]],["parent/41",[43,6.396]],["name/42",[45,43.602,46,39.283]],["parent/42",[]],["name/43",[47,60.803]],["parent/43",[45,5.118,46,4.611]],["name/44",[34,23.178,48,24.769,49,30.62]],["parent/44",[]],["name/45",[50,60.803]],["parent/45",[34,2.803,48,2.995,49,3.703]],["name/46",[51,60.803]],["parent/46",[34,2.803,48,2.995,49,3.703]],["name/47",[52,43.523]],["parent/47",[34,2.803,48,2.995,53,3.877]],["name/48",[2,25.616]],["parent/48",[34,2.803,48,2.995,53,3.877]],["name/49",[54,66.037]],["parent/49",[34,2.803,48,2.995,53,3.877]],["name/50",[55,60.803]],["parent/50",[34,2.803,48,2.995,49,3.703]],["name/51",[2,25.616]],["parent/51",[34,2.803,48,2.995,56,3.564]],["name/52",[57,66.037]],["parent/52",[34,2.803,48,2.995,56,3.564]],["name/53",[58,66.037]],["parent/53",[34,2.803,48,2.995,56,3.564]],["name/54",[59,66.037]],["parent/54",[34,2.803,48,2.995,56,3.564]],["name/55",[60,66.037]],["parent/55",[34,2.803,48,2.995,56,3.564]],["name/56",[61,43.602,62,43.602]],["parent/56",[]],["name/57",[63,60.803]],["parent/57",[61,5.118,62,5.118]],["name/58",[64,41.467]],["parent/58",[]],["name/59",[65,33.792,66,41.129]],["parent/59",[]],["name/60",[67,60.803]],["parent/60",[65,3.966,66,4.827]],["name/61",[2,25.616]],["parent/61",[65,3.966,68,5.118]],["name/62",[69,54.78]],["parent/62",[65,3.966,68,5.118]],["name/63",[70,60.803]],["parent/63",[65,3.966,66,4.827]],["name/64",[52,43.523]],["parent/64",[65,3.966,71,5.558]],["name/65",[72,66.037]],["parent/65",[65,3.966,73,4.827]],["name/66",[74,66.037]],["parent/66",[65,3.966,73,4.827]],["name/67",[75,66.037]],["parent/67",[65,3.966,73,4.827]],["name/68",[46,39.283,76,43.602]],["parent/68",[]],["name/69",[77,60.803]],["parent/69",[46,4.611,76,5.118]],["name/70",[78,41.129,79,41.129]],["parent/70",[]],["name/71",[80,60.803]],["parent/71",[78,4.827,79,4.827]],["name/72",[81,60.803]],["parent/72",[78,4.827,79,4.827]],["name/73",[82,60.803]],["parent/73",[]],["name/74",[83,60.803]],["parent/74",[82,6.78]],["name/75",[84,60.803]],["parent/75",[]],["name/76",[85,60.803]],["parent/76",[84,6.78]],["name/77",[2,25.616]],["parent/77",[86,6.78]],["name/78",[69,54.78]],["parent/78",[86,6.78]],["name/79",[87,39.283,88,43.602]],["parent/79",[]],["name/80",[89,60.803]],["parent/80",[87,4.611,88,5.118]],["name/81",[2,25.616]],["parent/81",[87,4.611,90,5.118]],["name/82",[69,54.78]],["parent/82",[87,4.611,90,5.118]],["name/83",[91,54.78]],["parent/83",[]],["name/84",[92,60.803]],["parent/84",[]],["name/85",[93,60.803]],["parent/85",[92,6.78]],["name/86",[2,25.616]],["parent/86",[94,6.78]],["name/87",[69,54.78]],["parent/87",[94,6.78]],["name/88",[95,51.012]],["parent/88",[]],["name/89",[96,60.803]],["parent/89",[95,5.688]],["name/90",[97,66.037]],["parent/90",[98,4.853]],["name/91",[99,60.803]],["parent/91",[98,4.853]],["name/92",[100,60.803]],["parent/92",[98,4.853]],["name/93",[101,66.037]],["parent/93",[98,4.853]],["name/94",[102,66.037]],["parent/94",[98,4.853]],["name/95",[103,66.037]],["parent/95",[98,4.853]],["name/96",[52,43.523]],["parent/96",[98,4.853]],["name/97",[104,66.037]],["parent/97",[105,4.941]],["name/98",[52,43.523]],["parent/98",[105,4.941]],["name/99",[106,66.037]],["parent/99",[107,6.78]],["name/100",[108,66.037]],["parent/100",[107,6.78]],["name/101",[109,66.037]],["parent/101",[105,4.941]],["name/102",[110,66.037]],["parent/102",[105,4.941]],["name/103",[111,66.037]],["parent/103",[98,4.853]],["name/104",[52,43.523]],["parent/104",[98,4.853]],["name/105",[112,60.803]],["parent/105",[105,4.941]],["name/106",[113,66.037]],["parent/106",[105,4.941]],["name/107",[114,66.037]],["parent/107",[105,4.941]],["name/108",[115,66.037]],["parent/108",[98,4.853]],["name/109",[116,60.803]],["parent/109",[98,4.853]],["name/110",[117,66.037]],["parent/110",[98,4.853]],["name/111",[52,43.523]],["parent/111",[98,4.853]],["name/112",[118,60.803]],["parent/112",[105,4.941]],["name/113",[119,66.037]],["parent/113",[105,4.941]],["name/114",[120,66.037]],["parent/114",[105,4.941]],["name/115",[121,66.037]],["parent/115",[105,4.941]],["name/116",[122,66.037]],["parent/116",[105,4.941]],["name/117",[123,60.803]],["parent/117",[95,5.688]],["name/118",[124,52.724]],["parent/118",[125,6.396]],["name/119",[126,54.78]],["parent/119",[125,6.396]],["name/120",[127,51.012]],["parent/120",[125,6.396]],["name/121",[128,60.803]],["parent/121",[95,5.688]],["name/122",[126,54.78]],["parent/122",[129,6.78]],["name/123",[130,66.037]],["parent/123",[129,6.78]],["name/124",[127,51.012]],["parent/124",[95,5.688]],["name/125",[131,57.355]],["parent/125",[132,6.108]],["name/126",[124,52.724]],["parent/126",[132,6.108]],["name/127",[133,57.355]],["parent/127",[132,6.108]],["name/128",[134,54.78]],["parent/128",[132,6.108]],["name/129",[135,60.803]],["parent/129",[95,5.688]],["name/130",[136,42.107]],["parent/130",[]],["name/131",[137,60.803]],["parent/131",[]],["name/132",[138,54.78]],["parent/132",[137,6.78]],["name/133",[138,54.78]],["parent/133",[139,5.879]],["name/134",[140,66.037]],["parent/134",[139,5.879]],["name/135",[126,54.78]],["parent/135",[139,5.879]],["name/136",[141,66.037]],["parent/136",[139,5.879]],["name/137",[142,60.803]],["parent/137",[139,5.879]],["name/138",[143,57.355]],["parent/138",[]],["name/139",[144,60.803]],["parent/139",[143,6.396]],["name/140",[2,25.616]],["parent/140",[145,5.879]],["name/141",[13,49.546]],["parent/141",[145,5.879]],["name/142",[146,66.037]],["parent/142",[145,5.879]],["name/143",[147,66.037]],["parent/143",[145,5.879]],["name/144",[148,57.355]],["parent/144",[145,5.879]],["name/145",[148,57.355]],["parent/145",[143,6.396]],["name/146",[134,54.78]],["parent/146",[149,6.78]],["name/147",[150,66.037]],["parent/147",[149,6.78]],["name/148",[151,60.803]],["parent/148",[]],["name/149",[152,60.803]],["parent/149",[151,6.78]],["name/150",[153,66.037]],["parent/150",[154,5.879]],["name/151",[118,60.803]],["parent/151",[154,5.879]],["name/152",[155,57.355]],["parent/152",[154,5.879]],["name/153",[156,66.037]],["parent/153",[154,5.879]],["name/154",[157,66.037]],["parent/154",[154,5.879]],["name/155",[158,60.803]],["parent/155",[]],["name/156",[159,52.724]],["parent/156",[158,6.78]],["name/157",[160,60.803]],["parent/157",[161,5.255]],["name/158",[162,66.037]],["parent/158",[161,5.255]],["name/159",[155,57.355]],["parent/159",[161,5.255]],["name/160",[163,66.037]],["parent/160",[161,5.255]],["name/161",[164,66.037]],["parent/161",[161,5.255]],["name/162",[165,66.037]],["parent/162",[161,5.255]],["name/163",[52,43.523]],["parent/163",[161,5.255]],["name/164",[166,66.037]],["parent/164",[167,6.78]],["name/165",[52,43.523]],["parent/165",[167,6.78]],["name/166",[168,66.037]],["parent/166",[169,6.78]],["name/167",[99,60.803]],["parent/167",[169,6.78]],["name/168",[170,66.037]],["parent/168",[161,5.255]],["name/169",[171,60.803]],["parent/169",[161,5.255]],["name/170",[172,52.724]],["parent/170",[]],["name/171",[173,60.803]],["parent/171",[172,5.879]],["name/172",[174,66.037]],["parent/172",[175,5.525]],["name/173",[176,66.037]],["parent/173",[175,5.525]],["name/174",[177,66.037]],["parent/174",[175,5.525]],["name/175",[178,60.803]],["parent/175",[175,5.525]],["name/176",[179,66.037]],["parent/176",[175,5.525]],["name/177",[180,51.012]],["parent/177",[175,5.525]],["name/178",[142,60.803]],["parent/178",[175,5.525]],["name/179",[181,52.724]],["parent/179",[172,5.879]],["name/180",[182,66.037]],["parent/180",[183,5.382]],["name/181",[184,66.037]],["parent/181",[183,5.382]],["name/182",[185,66.037]],["parent/182",[183,5.382]],["name/183",[186,60.803]],["parent/183",[183,5.382]],["name/184",[159,52.724]],["parent/184",[183,5.382]],["name/185",[180,51.012]],["parent/185",[183,5.382]],["name/186",[116,60.803]],["parent/186",[183,5.382]],["name/187",[187,60.803]],["parent/187",[183,5.382]],["name/188",[180,51.012]],["parent/188",[172,5.879]],["name/189",[188,66.037]],["parent/189",[189,5.879]],["name/190",[190,66.037]],["parent/190",[189,5.879]],["name/191",[191,66.037]],["parent/191",[189,5.879]],["name/192",[192,66.037]],["parent/192",[189,5.879]],["name/193",[193,66.037]],["parent/193",[189,5.879]],["name/194",[194,60.803]],["parent/194",[172,5.879]],["name/195",[160,60.803]],["parent/195",[195,6.396]],["name/196",[155,57.355]],["parent/196",[195,6.396]],["name/197",[171,60.803]],["parent/197",[195,6.396]],["name/198",[196,49.546]],["parent/198",[]],["name/199",[197,13.756,198,16.335,199,32.06]],["parent/199",[]],["name/200",[200,54.78]],["parent/200",[197,1.663,198,1.975,199,3.877]],["name/201",[201,60.803]],["parent/201",[197,1.663,198,1.975,202,2.501]],["name/202",[203,60.803]],["parent/202",[197,1.663,198,1.975,202,2.501]],["name/203",[204,60.803]],["parent/203",[197,1.663,198,1.975,202,2.501]],["name/204",[205,60.803]],["parent/204",[197,1.663,198,1.975,202,2.501]],["name/205",[206,60.803]],["parent/205",[197,1.663,198,1.975,202,2.501]],["name/206",[207,57.355]],["parent/206",[197,1.663,198,1.975,202,2.501]],["name/207",[208,60.803]],["parent/207",[197,1.663,198,1.975,202,2.501]],["name/208",[209,60.803]],["parent/208",[197,1.663,198,1.975,202,2.501]],["name/209",[210,60.803]],["parent/209",[197,1.663,198,1.975,202,2.501]],["name/210",[211,60.803]],["parent/210",[197,1.663,198,1.975,202,2.501]],["name/211",[212,60.803]],["parent/211",[197,1.663,198,1.975,202,2.501]],["name/212",[213,57.355]],["parent/212",[197,1.663,198,1.975,202,2.501]],["name/213",[214,60.803]],["parent/213",[197,1.663,198,1.975,202,2.501]],["name/214",[215,60.803]],["parent/214",[197,1.663,198,1.975,202,2.501]],["name/215",[216,60.803]],["parent/215",[197,1.663,198,1.975,202,2.501]],["name/216",[217,60.803]],["parent/216",[197,1.663,198,1.975,202,2.501]],["name/217",[218,60.803]],["parent/217",[197,1.663,198,1.975,202,2.501]],["name/218",[219,60.803]],["parent/218",[197,1.663,198,1.975,202,2.501]],["name/219",[220,60.803]],["parent/219",[197,1.663,198,1.975,202,2.501]],["name/220",[221,60.803]],["parent/220",[197,1.663,198,1.975,202,2.501]],["name/221",[222,60.803]],["parent/221",[197,1.663,198,1.975,202,2.501]],["name/222",[223,60.803]],["parent/222",[197,1.663,198,1.975,202,2.501]],["name/223",[224,60.803]],["parent/223",[197,1.663,198,1.975,202,2.501]],["name/224",[225,60.803]],["parent/224",[197,1.663,198,1.975,202,2.501]],["name/225",[226,54.78]],["parent/225",[197,1.663,198,1.975,202,2.501]],["name/226",[227,60.803]],["parent/226",[197,1.663,198,1.975,199,3.877]],["name/227",[2,25.616]],["parent/227",[197,1.663,198,1.975,228,2.475]],["name/228",[201,60.803]],["parent/228",[197,1.663,198,1.975,228,2.475]],["name/229",[203,60.803]],["parent/229",[197,1.663,198,1.975,228,2.475]],["name/230",[204,60.803]],["parent/230",[197,1.663,198,1.975,228,2.475]],["name/231",[205,60.803]],["parent/231",[197,1.663,198,1.975,228,2.475]],["name/232",[206,60.803]],["parent/232",[197,1.663,198,1.975,228,2.475]],["name/233",[207,57.355]],["parent/233",[197,1.663,198,1.975,228,2.475]],["name/234",[208,60.803]],["parent/234",[197,1.663,198,1.975,228,2.475]],["name/235",[209,60.803]],["parent/235",[197,1.663,198,1.975,228,2.475]],["name/236",[210,60.803]],["parent/236",[197,1.663,198,1.975,228,2.475]],["name/237",[211,60.803]],["parent/237",[197,1.663,198,1.975,228,2.475]],["name/238",[212,60.803]],["parent/238",[197,1.663,198,1.975,228,2.475]],["name/239",[213,57.355]],["parent/239",[197,1.663,198,1.975,228,2.475]],["name/240",[214,60.803]],["parent/240",[197,1.663,198,1.975,228,2.475]],["name/241",[215,60.803]],["parent/241",[197,1.663,198,1.975,228,2.475]],["name/242",[216,60.803]],["parent/242",[197,1.663,198,1.975,228,2.475]],["name/243",[217,60.803]],["parent/243",[197,1.663,198,1.975,228,2.475]],["name/244",[218,60.803]],["parent/244",[197,1.663,198,1.975,228,2.475]],["name/245",[219,60.803]],["parent/245",[197,1.663,198,1.975,228,2.475]],["name/246",[220,60.803]],["parent/246",[197,1.663,198,1.975,228,2.475]],["name/247",[221,60.803]],["parent/247",[197,1.663,198,1.975,228,2.475]],["name/248",[222,60.803]],["parent/248",[197,1.663,198,1.975,228,2.475]],["name/249",[223,60.803]],["parent/249",[197,1.663,198,1.975,228,2.475]],["name/250",[224,60.803]],["parent/250",[197,1.663,198,1.975,228,2.475]],["name/251",[225,60.803]],["parent/251",[197,1.663,198,1.975,228,2.475]],["name/252",[226,54.78]],["parent/252",[197,1.663,198,1.975,228,2.475]],["name/253",[197,17.647,229,34.61]],["parent/253",[]],["name/254",[230,60.803]],["parent/254",[197,2.071,229,4.062]],["name/255",[2,25.616]],["parent/255",[197,2.071,231,3.544]],["name/256",[131,57.355]],["parent/256",[197,2.071,231,3.544]],["name/257",[232,66.037]],["parent/257",[197,2.071,231,3.544]],["name/258",[134,54.78]],["parent/258",[197,2.071,231,3.544]],["name/259",[233,60.803]],["parent/259",[197,2.071,231,3.544]],["name/260",[234,57.355]],["parent/260",[197,2.071,231,3.544]],["name/261",[235,60.803]],["parent/261",[197,2.071,231,3.544]],["name/262",[52,43.523]],["parent/262",[197,2.071,231,3.544]],["name/263",[236,60.803]],["parent/263",[197,2.071,231,3.544]],["name/264",[52,43.523]],["parent/264",[197,2.071,231,3.544]],["name/265",[127,51.012]],["parent/265",[197,2.071,231,3.544]],["name/266",[237,60.803]],["parent/266",[197,2.071,231,3.544]],["name/267",[238,60.803]],["parent/267",[197,2.071,231,3.544]],["name/268",[226,54.78]],["parent/268",[197,2.071,231,3.544]],["name/269",[239,60.803]],["parent/269",[197,2.071,231,3.544]],["name/270",[240,60.803]],["parent/270",[197,2.071,229,4.062]],["name/271",[133,57.355]],["parent/271",[197,2.071,241,5.558]],["name/272",[127,51.012]],["parent/272",[197,2.071,229,4.062]],["name/273",[131,57.355]],["parent/273",[197,2.071,242,4.611]],["name/274",[124,52.724]],["parent/274",[197,2.071,242,4.611]],["name/275",[133,57.355]],["parent/275",[197,2.071,242,4.611]],["name/276",[134,54.78]],["parent/276",[197,2.071,242,4.611]],["name/277",[229,48.263]],["parent/277",[197,2.071,229,4.062]],["name/278",[237,60.803]],["parent/278",[197,2.071,243,4.294]],["name/279",[235,60.803]],["parent/279",[197,2.071,243,4.294]],["name/280",[236,60.803]],["parent/280",[197,2.071,243,4.294]],["name/281",[238,60.803]],["parent/281",[197,2.071,243,4.294]],["name/282",[226,54.78]],["parent/282",[197,2.071,243,4.294]],["name/283",[239,60.803]],["parent/283",[197,2.071,243,4.294]],["name/284",[244,60.803]],["parent/284",[]],["name/285",[245,60.803]],["parent/285",[244,6.78]],["name/286",[2,25.616]],["parent/286",[246,4.321]],["name/287",[200,54.78]],["parent/287",[246,4.321]],["name/288",[247,60.803]],["parent/288",[246,4.321]],["name/289",[248,66.037]],["parent/289",[246,4.321]],["name/290",[249,66.037]],["parent/290",[246,4.321]],["name/291",[250,54.78]],["parent/291",[246,4.321]],["name/292",[251,66.037]],["parent/292",[246,4.321]],["name/293",[252,66.037]],["parent/293",[246,4.321]],["name/294",[253,66.037]],["parent/294",[246,4.321]],["name/295",[254,66.037]],["parent/295",[246,4.321]],["name/296",[255,66.037]],["parent/296",[246,4.321]],["name/297",[256,66.037]],["parent/297",[246,4.321]],["name/298",[257,60.803]],["parent/298",[246,4.321]],["name/299",[258,66.037]],["parent/299",[246,4.321]],["name/300",[259,66.037]],["parent/300",[246,4.321]],["name/301",[260,60.803]],["parent/301",[246,4.321]],["name/302",[261,66.037]],["parent/302",[246,4.321]],["name/303",[262,66.037]],["parent/303",[246,4.321]],["name/304",[213,57.355]],["parent/304",[246,4.321]],["name/305",[207,57.355]],["parent/305",[246,4.321]],["name/306",[263,66.037]],["parent/306",[246,4.321]],["name/307",[264,33.057,265,43.602]],["parent/307",[]],["name/308",[266,60.803]],["parent/308",[264,3.88,265,5.118]],["name/309",[2,25.616]],["parent/309",[264,3.88,267,4.062]],["name/310",[268,66.037]],["parent/310",[264,3.88,267,4.062]],["name/311",[269,66.037]],["parent/311",[264,3.88,267,4.062]],["name/312",[270,66.037]],["parent/312",[264,3.88,267,4.062]],["name/313",[271,66.037]],["parent/313",[264,3.88,267,4.062]],["name/314",[272,66.037]],["parent/314",[264,3.88,267,4.062]],["name/315",[273,66.037]],["parent/315",[264,3.88,267,4.062]],["name/316",[274,66.037]],["parent/316",[264,3.88,267,4.062]],["name/317",[275,36.581,276,43.602]],["parent/317",[]],["name/318",[277,60.803]],["parent/318",[275,4.294,276,5.118]],["name/319",[2,25.616]],["parent/319",[275,4.294,278,4.611]],["name/320",[279,66.037]],["parent/320",[275,4.294,278,4.611]],["name/321",[280,66.037]],["parent/321",[275,4.294,278,4.611]],["name/322",[281,66.037]],["parent/322",[275,4.294,278,4.611]],["name/323",[282,44.311]],["parent/323",[]],["name/324",[283,60.803]],["parent/324",[]],["name/325",[284,60.803]],["parent/325",[283,6.78]],["name/326",[200,54.78]],["parent/326",[285,6.396]],["name/327",[286,66.037]],["parent/327",[285,6.396]],["name/328",[2,25.616]],["parent/328",[285,6.396]],["name/329",[287,60.803]],["parent/329",[]],["name/330",[288,60.803]],["parent/330",[287,6.78]],["name/331",[2,25.616]],["parent/331",[289,5.036]],["name/332",[290,57.355]],["parent/332",[289,5.036]],["name/333",[291,66.037]],["parent/333",[289,5.036]],["name/334",[292,66.037]],["parent/334",[289,5.036]],["name/335",[293,60.803]],["parent/335",[289,5.036]],["name/336",[294,66.037]],["parent/336",[289,5.036]],["name/337",[295,66.037]],["parent/337",[289,5.036]],["name/338",[296,66.037]],["parent/338",[289,5.036]],["name/339",[297,66.037]],["parent/339",[289,5.036]],["name/340",[298,66.037]],["parent/340",[289,5.036]],["name/341",[299,66.037]],["parent/341",[289,5.036]],["name/342",[300,60.803]],["parent/342",[]],["name/343",[234,57.355]],["parent/343",[300,6.78]],["name/344",[2,25.616]],["parent/344",[301,5.382]],["name/345",[302,66.037]],["parent/345",[301,5.382]],["name/346",[303,66.037]],["parent/346",[301,5.382]],["name/347",[304,66.037]],["parent/347",[301,5.382]],["name/348",[305,66.037]],["parent/348",[301,5.382]],["name/349",[306,66.037]],["parent/349",[301,5.382]],["name/350",[307,66.037]],["parent/350",[301,5.382]],["name/351",[308,66.037]],["parent/351",[301,5.382]],["name/352",[309,60.803]],["parent/352",[]],["name/353",[310,60.803]],["parent/353",[309,6.78]],["name/354",[311,66.037]],["parent/354",[312,5.382]],["name/355",[13,49.546]],["parent/355",[312,5.382]],["name/356",[14,54.78]],["parent/356",[312,5.382]],["name/357",[313,66.037]],["parent/357",[312,5.382]],["name/358",[314,66.037]],["parent/358",[312,5.382]],["name/359",[315,66.037]],["parent/359",[312,5.382]],["name/360",[316,66.037]],["parent/360",[312,5.382]],["name/361",[2,25.616]],["parent/361",[312,5.382]],["name/362",[317,60.803]],["parent/362",[]],["name/363",[318,60.803]],["parent/363",[317,6.78]],["name/364",[2,25.616]],["parent/364",[319,4.695]],["name/365",[13,49.546]],["parent/365",[319,4.695]],["name/366",[14,54.78]],["parent/366",[319,4.695]],["name/367",[320,60.803]],["parent/367",[319,4.695]],["name/368",[321,66.037]],["parent/368",[319,4.695]],["name/369",[322,66.037]],["parent/369",[319,4.695]],["name/370",[323,66.037]],["parent/370",[319,4.695]],["name/371",[250,54.78]],["parent/371",[319,4.695]],["name/372",[324,66.037]],["parent/372",[319,4.695]],["name/373",[325,66.037]],["parent/373",[319,4.695]],["name/374",[326,66.037]],["parent/374",[319,4.695]],["name/375",[327,66.037]],["parent/375",[319,4.695]],["name/376",[328,66.037]],["parent/376",[319,4.695]],["name/377",[329,66.037]],["parent/377",[319,4.695]],["name/378",[330,66.037]],["parent/378",[319,4.695]],["name/379",[331,60.803]],["parent/379",[]],["name/380",[332,60.803]],["parent/380",[331,6.78]],["name/381",[2,25.616]],["parent/381",[333,4.695]],["name/382",[334,57.355]],["parent/382",[333,4.695]],["name/383",[335,66.037]],["parent/383",[333,4.695]],["name/384",[336,66.037]],["parent/384",[333,4.695]],["name/385",[337,60.803]],["parent/385",[333,4.695]],["name/386",[13,49.546]],["parent/386",[333,4.695]],["name/387",[250,54.78]],["parent/387",[333,4.695]],["name/388",[338,60.803]],["parent/388",[333,4.695]],["name/389",[339,66.037]],["parent/389",[333,4.695]],["name/390",[340,60.803]],["parent/390",[333,4.695]],["name/391",[341,60.803]],["parent/391",[333,4.695]],["name/392",[342,66.037]],["parent/392",[333,4.695]],["name/393",[343,66.037]],["parent/393",[333,4.695]],["name/394",[344,66.037]],["parent/394",[333,4.695]],["name/395",[345,66.037]],["parent/395",[333,4.695]],["name/396",[346,60.803]],["parent/396",[]],["name/397",[347,60.803]],["parent/397",[346,6.78]],["name/398",[2,25.616]],["parent/398",[348,3.717]],["name/399",[349,66.037]],["parent/399",[348,3.717]],["name/400",[233,60.803]],["parent/400",[348,3.717]],["name/401",[229,48.263]],["parent/401",[348,3.717]],["name/402",[13,49.546]],["parent/402",[348,3.717]],["name/403",[350,57.355]],["parent/403",[348,3.717]],["name/404",[351,66.037]],["parent/404",[348,3.717]],["name/405",[352,66.037]],["parent/405",[348,3.717]],["name/406",[353,57.355]],["parent/406",[348,3.717]],["name/407",[354,66.037]],["parent/407",[348,3.717]],["name/408",[355,66.037]],["parent/408",[348,3.717]],["name/409",[356,57.355]],["parent/409",[348,3.717]],["name/410",[357,66.037]],["parent/410",[348,3.717]],["name/411",[358,66.037]],["parent/411",[348,3.717]],["name/412",[250,54.78]],["parent/412",[348,3.717]],["name/413",[359,60.803]],["parent/413",[348,3.717]],["name/414",[360,66.037]],["parent/414",[348,3.717]],["name/415",[361,66.037]],["parent/415",[348,3.717]],["name/416",[362,66.037]],["parent/416",[348,3.717]],["name/417",[363,66.037]],["parent/417",[348,3.717]],["name/418",[364,66.037]],["parent/418",[348,3.717]],["name/419",[365,60.803]],["parent/419",[348,3.717]],["name/420",[366,57.355]],["parent/420",[348,3.717]],["name/421",[367,66.037]],["parent/421",[348,3.717]],["name/422",[368,66.037]],["parent/422",[348,3.717]],["name/423",[369,66.037]],["parent/423",[348,3.717]],["name/424",[370,66.037]],["parent/424",[348,3.717]],["name/425",[371,66.037]],["parent/425",[348,3.717]],["name/426",[372,66.037]],["parent/426",[348,3.717]],["name/427",[373,66.037]],["parent/427",[348,3.717]],["name/428",[374,66.037]],["parent/428",[348,3.717]],["name/429",[375,66.037]],["parent/429",[348,3.717]],["name/430",[376,66.037]],["parent/430",[348,3.717]],["name/431",[377,66.037]],["parent/431",[348,3.717]],["name/432",[378,66.037]],["parent/432",[348,3.717]],["name/433",[379,66.037]],["parent/433",[348,3.717]],["name/434",[380,60.803]],["parent/434",[]],["name/435",[381,60.803]],["parent/435",[380,6.78]],["name/436",[337,60.803]],["parent/436",[382,6.396]],["name/437",[383,66.037]],["parent/437",[382,6.396]],["name/438",[2,25.616]],["parent/438",[382,6.396]],["name/439",[384,41.129,385,29.736]],["parent/439",[]],["name/440",[386,66.037]],["parent/440",[384,4.827,385,3.49]],["name/441",[2,25.616]],["parent/441",[384,4.827,387,5.558]],["name/442",[388,60.803]],["parent/442",[]],["name/443",[389,66.037]],["parent/443",[388,6.78]],["name/444",[2,25.616]],["parent/444",[390,5.525]],["name/445",[391,66.037]],["parent/445",[390,5.525]],["name/446",[392,66.037]],["parent/446",[390,5.525]],["name/447",[393,40.864]],["parent/447",[390,5.525]],["name/448",[394,66.037]],["parent/448",[390,5.525]],["name/449",[395,66.037]],["parent/449",[390,5.525]],["name/450",[396,66.037]],["parent/450",[390,5.525]],["name/451",[397,60.803]],["parent/451",[]],["name/452",[398,66.037]],["parent/452",[397,6.78]],["name/453",[2,25.616]],["parent/453",[399,7.364]],["name/454",[400,66.037]],["parent/454",[]],["name/455",[401,36.581,402,39.283]],["parent/455",[]],["name/456",[403,66.037]],["parent/456",[401,4.294,402,4.611]],["name/457",[2,25.616]],["parent/457",[401,4.294,404,4.611]],["name/458",[126,54.78]],["parent/458",[401,4.294,404,4.611]],["name/459",[405,66.037]],["parent/459",[401,4.294,404,4.611]],["name/460",[406,66.037]],["parent/460",[401,4.294,404,4.611]],["name/461",[385,29.736,407,41.129]],["parent/461",[]],["name/462",[408,66.037]],["parent/462",[385,3.49,407,4.827]],["name/463",[2,25.616]],["parent/463",[407,4.827,409,5.558]],["name/464",[410,60.803]],["parent/464",[]],["name/465",[411,66.037]],["parent/465",[410,6.78]],["name/466",[2,25.616]],["parent/466",[412,5.036]],["name/467",[413,66.037]],["parent/467",[412,5.036]],["name/468",[414,54.78]],["parent/468",[412,5.036]],["name/469",[415,66.037]],["parent/469",[412,5.036]],["name/470",[36,49.546]],["parent/470",[412,5.036]],["name/471",[393,40.864]],["parent/471",[412,5.036]],["name/472",[416,66.037]],["parent/472",[412,5.036]],["name/473",[417,57.355]],["parent/473",[412,5.036]],["name/474",[257,60.803]],["parent/474",[412,5.036]],["name/475",[418,66.037]],["parent/475",[412,5.036]],["name/476",[419,66.037]],["parent/476",[412,5.036]],["name/477",[420,60.803]],["parent/477",[]],["name/478",[421,66.037]],["parent/478",[420,6.78]],["name/479",[2,25.616]],["parent/479",[422,7.364]],["name/480",[423,15.37,424,16.886,425,28.514]],["parent/480",[]],["name/481",[426,66.037]],["parent/481",[423,1.859,424,2.042,425,3.448]],["name/482",[2,25.616]],["parent/482",[423,1.859,424,2.042,427,2.071]],["name/483",[428,66.037]],["parent/483",[423,1.859,424,2.042,427,2.071]],["name/484",[429,66.037]],["parent/484",[423,1.859,424,2.042,427,2.071]],["name/485",[430,66.037]],["parent/485",[423,1.859,424,2.042,427,2.071]],["name/486",[431,66.037]],["parent/486",[423,1.859,424,2.042,427,2.071]],["name/487",[432,66.037]],["parent/487",[423,1.859,424,2.042,427,2.071]],["name/488",[433,66.037]],["parent/488",[423,1.859,424,2.042,427,2.071]],["name/489",[434,66.037]],["parent/489",[423,1.859,424,2.042,427,2.071]],["name/490",[435,66.037]],["parent/490",[423,1.859,424,2.042,427,2.071]],["name/491",[436,66.037]],["parent/491",[423,1.859,424,2.042,427,2.071]],["name/492",[437,66.037]],["parent/492",[423,1.859,424,2.042,427,2.071]],["name/493",[438,66.037]],["parent/493",[423,1.859,424,2.042,427,2.071]],["name/494",[439,66.037]],["parent/494",[423,1.859,424,2.042,427,2.071]],["name/495",[440,66.037]],["parent/495",[423,1.859,424,2.042,427,2.071]],["name/496",[441,66.037]],["parent/496",[423,1.859,424,2.042,427,2.071]],["name/497",[442,66.037]],["parent/497",[423,1.859,424,2.042,427,2.071]],["name/498",[443,66.037]],["parent/498",[423,1.859,424,2.042,427,2.071]],["name/499",[350,57.355]],["parent/499",[423,1.859,424,2.042,427,2.071]],["name/500",[444,60.803]],["parent/500",[423,1.859,424,2.042,427,2.071]],["name/501",[356,57.355]],["parent/501",[423,1.859,424,2.042,427,2.071]],["name/502",[290,57.355]],["parent/502",[423,1.859,424,2.042,427,2.071]],["name/503",[293,60.803]],["parent/503",[423,1.859,424,2.042,427,2.071]],["name/504",[181,52.724]],["parent/504",[423,1.859,424,2.042,427,2.071]],["name/505",[334,57.355]],["parent/505",[423,1.859,424,2.042,427,2.071]],["name/506",[445,60.803]],["parent/506",[423,1.859,424,2.042,427,2.071]],["name/507",[446,57.355]],["parent/507",[423,1.859,424,2.042,427,2.071]],["name/508",[447,60.803]],["parent/508",[423,1.859,424,2.042,427,2.071]],["name/509",[448,60.803]],["parent/509",[423,1.859,424,2.042,427,2.071]],["name/510",[36,49.546]],["parent/510",[423,1.859,424,2.042,427,2.071]],["name/511",[414,54.78]],["parent/511",[423,1.859,424,2.042,427,2.071]],["name/512",[449,66.037]],["parent/512",[423,1.859,424,2.042,427,2.071]],["name/513",[450,54.78]],["parent/513",[423,1.859,424,2.042,427,2.071]],["name/514",[100,60.803]],["parent/514",[423,1.859,424,2.042,427,2.071]],["name/515",[112,60.803]],["parent/515",[423,1.859,424,2.042,427,2.071]],["name/516",[451,66.037]],["parent/516",[423,1.859,424,2.042,427,2.071]],["name/517",[393,40.864]],["parent/517",[423,1.859,424,2.042,427,2.071]],["name/518",[452,66.037]],["parent/518",[423,1.859,424,2.042,427,2.071]],["name/519",[453,66.037]],["parent/519",[423,1.859,424,2.042,427,2.071]],["name/520",[454,60.803]],["parent/520",[423,1.859,424,2.042,427,2.071]],["name/521",[455,60.803]],["parent/521",[423,1.859,424,2.042,427,2.071]],["name/522",[456,66.037]],["parent/522",[423,1.859,424,2.042,427,2.071]],["name/523",[457,66.037]],["parent/523",[423,1.859,424,2.042,427,2.071]],["name/524",[458,60.803]],["parent/524",[423,1.859,424,2.042,427,2.071]],["name/525",[459,60.803]],["parent/525",[423,1.859,424,2.042,427,2.071]],["name/526",[359,60.803]],["parent/526",[423,1.859,424,2.042,427,2.071]],["name/527",[460,51.012]],["parent/527",[423,1.859,424,2.042,427,2.071]],["name/528",[461,60.803]],["parent/528",[423,1.859,424,2.042,427,2.071]],["name/529",[423,15.37,462,23.537,463,33.987]],["parent/529",[]],["name/530",[464,66.037]],["parent/530",[423,1.859,462,2.846,463,4.11]],["name/531",[2,25.616]],["parent/531",[423,1.859,462,2.846,465,2.942]],["name/532",[466,66.037]],["parent/532",[423,1.859,462,2.846,465,2.942]],["name/533",[467,66.037]],["parent/533",[423,1.859,462,2.846,465,2.942]],["name/534",[468,66.037]],["parent/534",[423,1.859,462,2.846,465,2.942]],["name/535",[469,66.037]],["parent/535",[423,1.859,462,2.846,465,2.942]],["name/536",[470,66.037]],["parent/536",[423,1.859,462,2.846,465,2.942]],["name/537",[471,66.037]],["parent/537",[423,1.859,462,2.846,465,2.942]],["name/538",[36,49.546]],["parent/538",[423,1.859,462,2.846,465,2.942]],["name/539",[393,40.864]],["parent/539",[423,1.859,462,2.846,465,2.942]],["name/540",[472,66.037]],["parent/540",[423,1.859,462,2.846,465,2.942]],["name/541",[473,66.037]],["parent/541",[423,1.859,462,2.846,465,2.942]],["name/542",[474,66.037]],["parent/542",[423,1.859,462,2.846,465,2.942]],["name/543",[475,66.037]],["parent/543",[423,1.859,462,2.846,465,2.942]],["name/544",[385,29.736,476,41.129]],["parent/544",[]],["name/545",[477,66.037]],["parent/545",[385,3.49,476,4.827]],["name/546",[2,25.616]],["parent/546",[476,4.827,478,5.558]],["name/547",[479,60.803]],["parent/547",[]],["name/548",[480,66.037]],["parent/548",[479,6.78]],["name/549",[2,25.616]],["parent/549",[481,4.557]],["name/550",[482,54.78]],["parent/550",[481,4.557]],["name/551",[350,57.355]],["parent/551",[481,4.557]],["name/552",[483,57.355]],["parent/552",[481,4.557]],["name/553",[484,60.803]],["parent/553",[481,4.557]],["name/554",[485,60.803]],["parent/554",[481,4.557]],["name/555",[444,60.803]],["parent/555",[481,4.557]],["name/556",[446,57.355]],["parent/556",[481,4.557]],["name/557",[450,54.78]],["parent/557",[481,4.557]],["name/558",[486,52.724]],["parent/558",[481,4.557]],["name/559",[487,52.724]],["parent/559",[481,4.557]],["name/560",[393,40.864]],["parent/560",[481,4.557]],["name/561",[488,52.724]],["parent/561",[481,4.557]],["name/562",[455,60.803]],["parent/562",[481,4.557]],["name/563",[458,60.803]],["parent/563",[481,4.557]],["name/564",[489,66.037]],["parent/564",[481,4.557]],["name/565",[460,51.012]],["parent/565",[481,4.557]],["name/566",[490,60.803]],["parent/566",[]],["name/567",[491,66.037]],["parent/567",[490,6.78]],["name/568",[2,25.616]],["parent/568",[492,7.364]],["name/569",[493,24.328,494,24.328,495,33.987]],["parent/569",[]],["name/570",[496,66.037]],["parent/570",[493,2.942,494,2.942,495,4.11]],["name/571",[2,25.616]],["parent/571",[493,2.942,494,2.942,497,3.053]],["name/572",[498,66.037]],["parent/572",[493,2.942,494,2.942,497,3.053]],["name/573",[36,49.546]],["parent/573",[493,2.942,494,2.942,497,3.053]],["name/574",[414,54.78]],["parent/574",[493,2.942,494,2.942,497,3.053]],["name/575",[356,57.355]],["parent/575",[493,2.942,494,2.942,497,3.053]],["name/576",[290,57.355]],["parent/576",[493,2.942,494,2.942,497,3.053]],["name/577",[446,57.355]],["parent/577",[493,2.942,494,2.942,497,3.053]],["name/578",[448,60.803]],["parent/578",[493,2.942,494,2.942,497,3.053]],["name/579",[393,40.864]],["parent/579",[493,2.942,494,2.942,497,3.053]],["name/580",[499,66.037]],["parent/580",[493,2.942,494,2.942,497,3.053]],["name/581",[417,57.355]],["parent/581",[493,2.942,494,2.942,497,3.053]],["name/582",[385,29.736,500,41.129]],["parent/582",[]],["name/583",[501,66.037]],["parent/583",[385,3.49,500,4.827]],["name/584",[2,25.616]],["parent/584",[500,4.827,502,5.558]],["name/585",[503,60.803]],["parent/585",[]],["name/586",[504,66.037]],["parent/586",[503,6.78]],["name/587",[2,25.616]],["parent/587",[505,4.771]],["name/588",[482,54.78]],["parent/588",[505,4.771]],["name/589",[483,57.355]],["parent/589",[505,4.771]],["name/590",[138,54.78]],["parent/590",[505,4.771]],["name/591",[353,57.355]],["parent/591",[505,4.771]],["name/592",[486,52.724]],["parent/592",[505,4.771]],["name/593",[487,52.724]],["parent/593",[505,4.771]],["name/594",[393,40.864]],["parent/594",[505,4.771]],["name/595",[488,52.724]],["parent/595",[505,4.771]],["name/596",[506,66.037]],["parent/596",[505,4.771]],["name/597",[366,57.355]],["parent/597",[505,4.771]],["name/598",[507,66.037]],["parent/598",[505,4.771]],["name/599",[508,66.037]],["parent/599",[505,4.771]],["name/600",[460,51.012]],["parent/600",[505,4.771]],["name/601",[509,60.803]],["parent/601",[]],["name/602",[510,66.037]],["parent/602",[509,6.78]],["name/603",[2,25.616]],["parent/603",[511,7.364]],["name/604",[385,29.736,512,41.129]],["parent/604",[]],["name/605",[513,66.037]],["parent/605",[385,3.49,512,4.827]],["name/606",[2,25.616]],["parent/606",[512,4.827,514,5.558]],["name/607",[515,60.803]],["parent/607",[]],["name/608",[516,66.037]],["parent/608",[515,6.78]],["name/609",[2,25.616]],["parent/609",[517,6.78]],["name/610",[518,66.037]],["parent/610",[517,6.78]],["name/611",[519,60.803]],["parent/611",[]],["name/612",[520,66.037]],["parent/612",[519,6.78]],["name/613",[2,25.616]],["parent/613",[521,7.364]],["name/614",[522,60.803]],["parent/614",[]],["name/615",[523,66.037]],["parent/615",[522,6.78]],["name/616",[2,25.616]],["parent/616",[524,5.525]],["name/617",[525,66.037]],["parent/617",[524,5.525]],["name/618",[414,54.78]],["parent/618",[524,5.525]],["name/619",[36,49.546]],["parent/619",[524,5.525]],["name/620",[393,40.864]],["parent/620",[524,5.525]],["name/621",[526,66.037]],["parent/621",[524,5.525]],["name/622",[417,57.355]],["parent/622",[524,5.525]],["name/623",[385,29.736,527,41.129]],["parent/623",[]],["name/624",[528,66.037]],["parent/624",[385,3.49,527,4.827]],["name/625",[2,25.616]],["parent/625",[527,4.827,529,5.558]],["name/626",[530,60.803]],["parent/626",[]],["name/627",[531,66.037]],["parent/627",[530,6.78]],["name/628",[2,25.616]],["parent/628",[532,5.036]],["name/629",[482,54.78]],["parent/629",[532,5.036]],["name/630",[483,57.355]],["parent/630",[532,5.036]],["name/631",[247,60.803]],["parent/631",[532,5.036]],["name/632",[533,66.037]],["parent/632",[532,5.036]],["name/633",[486,52.724]],["parent/633",[532,5.036]],["name/634",[487,52.724]],["parent/634",[532,5.036]],["name/635",[393,40.864]],["parent/635",[532,5.036]],["name/636",[488,52.724]],["parent/636",[532,5.036]],["name/637",[460,51.012]],["parent/637",[532,5.036]],["name/638",[260,60.803]],["parent/638",[532,5.036]],["name/639",[534,60.803]],["parent/639",[]],["name/640",[535,66.037]],["parent/640",[534,6.78]],["name/641",[2,25.616]],["parent/641",[536,7.364]],["name/642",[425,28.514,537,27.694,538,27.694]],["parent/642",[]],["name/643",[539,66.037]],["parent/643",[425,3.448,537,3.349,538,3.349]],["name/644",[2,25.616]],["parent/644",[537,3.349,538,3.349,540,3.564]],["name/645",[159,52.724]],["parent/645",[537,3.349,538,3.349,540,3.564]],["name/646",[541,60.803]],["parent/646",[537,3.349,538,3.349,540,3.564]],["name/647",[393,40.864]],["parent/647",[537,3.349,538,3.349,540,3.564]],["name/648",[542,60.803]],["parent/648",[537,3.349,538,3.349,540,3.564]],["name/649",[385,29.736,543,41.129]],["parent/649",[]],["name/650",[544,66.037]],["parent/650",[385,3.49,543,4.827]],["name/651",[2,25.616]],["parent/651",[543,4.827,545,5.558]],["name/652",[546,60.803]],["parent/652",[]],["name/653",[547,66.037]],["parent/653",[546,6.78]],["name/654",[2,25.616]],["parent/654",[548,5.036]],["name/655",[482,54.78]],["parent/655",[548,5.036]],["name/656",[549,66.037]],["parent/656",[548,5.036]],["name/657",[486,52.724]],["parent/657",[548,5.036]],["name/658",[487,52.724]],["parent/658",[548,5.036]],["name/659",[320,60.803]],["parent/659",[548,5.036]],["name/660",[159,52.724]],["parent/660",[548,5.036]],["name/661",[393,40.864]],["parent/661",[548,5.036]],["name/662",[488,52.724]],["parent/662",[548,5.036]],["name/663",[550,66.037]],["parent/663",[548,5.036]],["name/664",[460,51.012]],["parent/664",[548,5.036]],["name/665",[551,60.803]],["parent/665",[]],["name/666",[552,66.037]],["parent/666",[551,6.78]],["name/667",[2,25.616]],["parent/667",[553,7.364]],["name/668",[425,28.514,554,22.841,555,22.841]],["parent/668",[]],["name/669",[556,66.037]],["parent/669",[425,3.448,554,2.762,555,2.762]],["name/670",[2,25.616]],["parent/670",[554,2.762,555,2.762,557,2.846]],["name/671",[181,52.724]],["parent/671",[554,2.762,555,2.762,557,2.846]],["name/672",[541,60.803]],["parent/672",[554,2.762,555,2.762,557,2.846]],["name/673",[558,66.037]],["parent/673",[554,2.762,555,2.762,557,2.846]],["name/674",[559,66.037]],["parent/674",[554,2.762,555,2.762,557,2.846]],["name/675",[560,66.037]],["parent/675",[554,2.762,555,2.762,557,2.846]],["name/676",[561,66.037]],["parent/676",[554,2.762,555,2.762,557,2.846]],["name/677",[450,54.78]],["parent/677",[554,2.762,555,2.762,557,2.846]],["name/678",[393,40.864]],["parent/678",[554,2.762,555,2.762,557,2.846]],["name/679",[562,66.037]],["parent/679",[554,2.762,555,2.762,557,2.846]],["name/680",[563,66.037]],["parent/680",[554,2.762,555,2.762,557,2.846]],["name/681",[564,66.037]],["parent/681",[554,2.762,555,2.762,557,2.846]],["name/682",[565,66.037]],["parent/682",[554,2.762,555,2.762,557,2.846]],["name/683",[461,60.803]],["parent/683",[554,2.762,555,2.762,557,2.846]],["name/684",[542,60.803]],["parent/684",[554,2.762,555,2.762,557,2.846]],["name/685",[385,29.736,566,41.129]],["parent/685",[]],["name/686",[567,66.037]],["parent/686",[385,3.49,566,4.827]],["name/687",[2,25.616]],["parent/687",[566,4.827,568,5.558]],["name/688",[569,60.803]],["parent/688",[]],["name/689",[570,66.037]],["parent/689",[569,6.78]],["name/690",[2,25.616]],["parent/690",[571,4.493]],["name/691",[572,66.037]],["parent/691",[571,4.493]],["name/692",[573,66.037]],["parent/692",[571,4.493]],["name/693",[484,60.803]],["parent/693",[571,4.493]],["name/694",[485,60.803]],["parent/694",[571,4.493]],["name/695",[334,57.355]],["parent/695",[571,4.493]],["name/696",[181,52.724]],["parent/696",[571,4.493]],["name/697",[445,60.803]],["parent/697",[571,4.493]],["name/698",[447,60.803]],["parent/698",[571,4.493]],["name/699",[450,54.78]],["parent/699",[571,4.493]],["name/700",[486,52.724]],["parent/700",[571,4.493]],["name/701",[487,52.724]],["parent/701",[571,4.493]],["name/702",[393,40.864]],["parent/702",[571,4.493]],["name/703",[454,60.803]],["parent/703",[571,4.493]],["name/704",[488,52.724]],["parent/704",[571,4.493]],["name/705",[459,60.803]],["parent/705",[571,4.493]],["name/706",[574,66.037]],["parent/706",[571,4.493]],["name/707",[460,51.012]],["parent/707",[571,4.493]],["name/708",[575,60.803]],["parent/708",[]],["name/709",[576,66.037]],["parent/709",[575,6.78]],["name/710",[2,25.616]],["parent/710",[577,7.364]],["name/711",[578,34.61,579,43.602]],["parent/711",[]],["name/712",[580,66.037]],["parent/712",[578,4.062,579,5.118]],["name/713",[2,25.616]],["parent/713",[578,4.062,581,5.118]],["name/714",[582,66.037]],["parent/714",[578,4.062,581,5.118]],["name/715",[402,39.283,578,34.61]],["parent/715",[]],["name/716",[583,66.037]],["parent/716",[402,4.611,578,4.062]],["name/717",[2,25.616]],["parent/717",[578,4.062,584,5.118]],["name/718",[585,66.037]],["parent/718",[578,4.062,584,5.118]],["name/719",[586,60.803]],["parent/719",[]],["name/720",[587,66.037]],["parent/720",[586,6.78]],["name/721",[2,25.616]],["parent/721",[588,6.78]],["name/722",[589,57.355]],["parent/722",[588,6.78]],["name/723",[590,39.283,591,43.602]],["parent/723",[]],["name/724",[592,66.037]],["parent/724",[590,4.611,591,5.118]],["name/725",[2,25.616]],["parent/725",[590,4.611,593,5.118]],["name/726",[589,57.355]],["parent/726",[590,4.611,593,5.118]],["name/727",[594,39.283,595,43.602]],["parent/727",[]],["name/728",[596,66.037]],["parent/728",[594,4.611,595,5.118]],["name/729",[2,25.616]],["parent/729",[594,4.611,597,5.118]],["name/730",[589,57.355]],["parent/730",[594,4.611,597,5.118]],["name/731",[598,30.62,599,30.62,600,33.987]],["parent/731",[]],["name/732",[601,66.037]],["parent/732",[598,3.703,599,3.703,600,4.11]],["name/733",[2,25.616]],["parent/733",[598,3.703,599,3.703,602,4.11]],["name/734",[124,52.724]],["parent/734",[598,3.703,599,3.703,602,4.11]],["name/735",[603,60.803]],["parent/735",[]],["name/736",[604,66.037]],["parent/736",[603,6.78]],["name/737",[2,25.616]],["parent/737",[605,6.396]],["name/738",[606,66.037]],["parent/738",[605,6.396]],["name/739",[393,40.864]],["parent/739",[605,6.396]],["name/740",[607,28.514,608,28.514,609,33.987]],["parent/740",[]],["name/741",[610,66.037]],["parent/741",[607,3.448,608,3.448,609,4.11]],["name/742",[2,25.616]],["parent/742",[607,3.448,608,3.448,611,3.703]],["name/743",[612,66.037]],["parent/743",[607,3.448,608,3.448,611,3.703]],["name/744",[393,40.864]],["parent/744",[607,3.448,608,3.448,611,3.703]],["name/745",[613,66.037]],["parent/745",[607,3.448,608,3.448,611,3.703]],["name/746",[614,60.803]],["parent/746",[]],["name/747",[615,66.037]],["parent/747",[614,6.78]],["name/748",[2,25.616]],["parent/748",[616,7.364]],["name/749",[617,60.803]],["parent/749",[]],["name/750",[618,66.037]],["parent/750",[617,6.78]],["name/751",[2,25.616]],["parent/751",[619,6.78]],["name/752",[393,40.864]],["parent/752",[619,6.78]],["name/753",[620,60.803]],["parent/753",[]],["name/754",[621,66.037]],["parent/754",[620,6.78]],["name/755",[2,25.616]],["parent/755",[622,6.78]],["name/756",[393,40.864]],["parent/756",[622,6.78]],["name/757",[623,52.724]],["parent/757",[]],["name/758",[624,66.037]],["parent/758",[623,5.879]],["name/759",[625,66.037]],["parent/759",[623,5.879]],["name/760",[626,66.037]],["parent/760",[623,5.879]],["name/761",[627,66.037]],["parent/761",[623,5.879]],["name/762",[628,60.803]],["parent/762",[]],["name/763",[629,52.724]],["parent/763",[]],["name/764",[180,51.012]],["parent/764",[629,5.879]],["name/765",[2,25.616]],["parent/765",[630,4.22]],["name/766",[631,66.037]],["parent/766",[630,4.22]],["name/767",[632,66.037]],["parent/767",[630,4.22]],["name/768",[633,66.037]],["parent/768",[630,4.22]],["name/769",[186,60.803]],["parent/769",[630,4.22]],["name/770",[187,60.803]],["parent/770",[630,4.22]],["name/771",[124,52.724]],["parent/771",[630,4.22]],["name/772",[634,66.037]],["parent/772",[630,4.22]],["name/773",[635,66.037]],["parent/773",[630,4.22]],["name/774",[636,66.037]],["parent/774",[630,4.22]],["name/775",[637,66.037]],["parent/775",[630,4.22]],["name/776",[638,66.037]],["parent/776",[630,4.22]],["name/777",[639,66.037]],["parent/777",[630,4.22]],["name/778",[640,66.037]],["parent/778",[630,4.22]],["name/779",[641,66.037]],["parent/779",[630,4.22]],["name/780",[642,66.037]],["parent/780",[630,4.22]],["name/781",[643,66.037]],["parent/781",[630,4.22]],["name/782",[644,66.037]],["parent/782",[630,4.22]],["name/783",[645,66.037]],["parent/783",[630,4.22]],["name/784",[646,66.037]],["parent/784",[630,4.22]],["name/785",[647,66.037]],["parent/785",[630,4.22]],["name/786",[648,66.037]],["parent/786",[630,4.22]],["name/787",[649,66.037]],["parent/787",[630,4.22]],["name/788",[650,66.037]],["parent/788",[629,5.879]],["name/789",[651,66.037]],["parent/789",[629,5.879]],["name/790",[178,60.803]],["parent/790",[629,5.879]],["name/791",[652,60.803]],["parent/791",[]],["name/792",[653,57.355]],["parent/792",[652,6.78]],["name/793",[52,43.523]],["parent/793",[654,7.364]],["name/794",[655,57.355]],["parent/794",[656,4.853]],["name/795",[657,57.355]],["parent/795",[656,4.853]],["name/796",[658,57.355]],["parent/796",[656,4.853]],["name/797",[659,57.355]],["parent/797",[656,4.853]],["name/798",[660,57.355]],["parent/798",[656,4.853]],["name/799",[661,57.355]],["parent/799",[656,4.853]],["name/800",[662,57.355]],["parent/800",[656,4.853]],["name/801",[663,57.355]],["parent/801",[656,4.853]],["name/802",[664,57.355]],["parent/802",[656,4.853]],["name/803",[665,57.355]],["parent/803",[656,4.853]],["name/804",[666,57.355]],["parent/804",[656,4.853]],["name/805",[667,57.355]],["parent/805",[656,4.853]],["name/806",[668,57.355]],["parent/806",[656,4.853]],["name/807",[669,60.803]],["parent/807",[]],["name/808",[653,57.355]],["parent/808",[669,6.78]],["name/809",[52,43.523]],["parent/809",[670,7.364]],["name/810",[655,57.355]],["parent/810",[671,4.853]],["name/811",[657,57.355]],["parent/811",[671,4.853]],["name/812",[658,57.355]],["parent/812",[671,4.853]],["name/813",[659,57.355]],["parent/813",[671,4.853]],["name/814",[660,57.355]],["parent/814",[671,4.853]],["name/815",[661,57.355]],["parent/815",[671,4.853]],["name/816",[662,57.355]],["parent/816",[671,4.853]],["name/817",[663,57.355]],["parent/817",[671,4.853]],["name/818",[664,57.355]],["parent/818",[671,4.853]],["name/819",[665,57.355]],["parent/819",[671,4.853]],["name/820",[666,57.355]],["parent/820",[671,4.853]],["name/821",[667,57.355]],["parent/821",[671,4.853]],["name/822",[668,57.355]],["parent/822",[671,4.853]],["name/823",[672,60.803]],["parent/823",[]],["name/824",[653,57.355]],["parent/824",[672,6.78]],["name/825",[52,43.523]],["parent/825",[673,7.364]],["name/826",[655,57.355]],["parent/826",[674,4.853]],["name/827",[657,57.355]],["parent/827",[674,4.853]],["name/828",[658,57.355]],["parent/828",[674,4.853]],["name/829",[659,57.355]],["parent/829",[674,4.853]],["name/830",[660,57.355]],["parent/830",[674,4.853]],["name/831",[661,57.355]],["parent/831",[674,4.853]],["name/832",[662,57.355]],["parent/832",[674,4.853]],["name/833",[663,57.355]],["parent/833",[674,4.853]],["name/834",[664,57.355]],["parent/834",[674,4.853]],["name/835",[665,57.355]],["parent/835",[674,4.853]],["name/836",[666,57.355]],["parent/836",[674,4.853]],["name/837",[667,57.355]],["parent/837",[674,4.853]],["name/838",[668,57.355]],["parent/838",[674,4.853]],["name/839",[675,66.037]],["parent/839",[]],["name/840",[676,66.037]],["parent/840",[]],["name/841",[677,66.037]],["parent/841",[]],["name/842",[678,28.514,679,28.514,680,23.919]],["parent/842",[]],["name/843",[681,60.803]],["parent/843",[678,3.448,679,3.448,680,2.892]],["name/844",[2,25.616]],["parent/844",[678,3.448,679,3.448,682,3.703]],["name/845",[683,66.037]],["parent/845",[678,3.448,679,3.448,682,3.703]],["name/846",[684,66.037]],["parent/846",[678,3.448,679,3.448,682,3.703]],["name/847",[685,66.037]],["parent/847",[678,3.448,679,3.448,682,3.703]],["name/848",[686,47.123]],["parent/848",[]],["name/849",[680,19.597,687,23.362,688,23.362,689,23.362]],["parent/849",[]],["name/850",[690,60.803]],["parent/850",[680,2.417,687,2.881,688,2.881,689,2.881]],["name/851",[2,25.616]],["parent/851",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/852",[692,66.037]],["parent/852",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/853",[693,66.037]],["parent/853",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/854",[694,66.037]],["parent/854",[687,2.881,688,2.881,689,2.881,691,3.094]],["name/855",[680,23.919,695,27.694,696,27.694]],["parent/855",[]],["name/856",[697,60.803]],["parent/856",[680,2.892,695,3.349,696,3.349]],["name/857",[2,25.616]],["parent/857",[695,3.349,696,3.349,698,4.464]],["name/858",[699,60.803]],["parent/858",[680,2.892,695,3.349,696,3.349]],["name/859",[2,25.616]],["parent/859",[695,3.349,696,3.349,700,4.464]],["name/860",[701,60.803]],["parent/860",[680,2.892,695,3.349,696,3.349]],["name/861",[2,25.616]],["parent/861",[695,3.349,696,3.349,702,4.464]],["name/862",[680,23.919,703,30.62,704,22.222]],["parent/862",[]],["name/863",[705,60.803]],["parent/863",[680,2.892,703,3.703,704,2.687]],["name/864",[2,25.616]],["parent/864",[703,3.703,704,2.687,706,4.11]],["name/865",[707,66.037]],["parent/865",[703,3.703,704,2.687,706,4.11]],["name/866",[680,23.919,704,22.222,708,28.514]],["parent/866",[]],["name/867",[709,60.803]],["parent/867",[680,2.892,704,2.687,708,3.448]],["name/868",[2,25.616]],["parent/868",[704,2.687,708,3.448,710,3.703]],["name/869",[340,60.803]],["parent/869",[704,2.687,708,3.448,710,3.703]],["name/870",[341,60.803]],["parent/870",[704,2.687,708,3.448,710,3.703]],["name/871",[338,60.803]],["parent/871",[704,2.687,708,3.448,710,3.703]],["name/872",[680,23.919,704,22.222,711,26.341]],["parent/872",[]],["name/873",[712,60.803]],["parent/873",[680,2.892,704,2.687,711,3.185]],["name/874",[2,25.616]],["parent/874",[704,2.687,711,3.185,713,3.349]],["name/875",[714,66.037]],["parent/875",[704,2.687,711,3.185,713,3.349]],["name/876",[353,57.355]],["parent/876",[704,2.687,711,3.185,713,3.349]],["name/877",[715,66.037]],["parent/877",[704,2.687,711,3.185,713,3.349]],["name/878",[716,66.037]],["parent/878",[704,2.687,711,3.185,713,3.349]],["name/879",[365,60.803]],["parent/879",[704,2.687,711,3.185,713,3.349]],["name/880",[366,57.355]],["parent/880",[704,2.687,711,3.185,713,3.349]],["name/881",[1,60.803]],["parent/881",[11,6.396]],["name/882",[14,54.78]],["parent/882",[11,6.396]],["name/883",[20,60.803]],["parent/883",[23,6.396]],["name/884",[25,60.803]],["parent/884",[23,6.396]],["name/885",[29,60.803]],["parent/885",[64,4.624]],["name/886",[32,60.803]],["parent/886",[64,4.624]],["name/887",[41,60.803]],["parent/887",[64,4.624]],["name/888",[37,60.803]],["parent/888",[64,4.624]],["name/889",[47,60.803]],["parent/889",[64,4.624]],["name/890",[50,60.803]],["parent/890",[64,4.624]],["name/891",[51,60.803]],["parent/891",[64,4.624]],["name/892",[55,60.803]],["parent/892",[64,4.624]],["name/893",[63,60.803]],["parent/893",[64,4.624]],["name/894",[67,60.803]],["parent/894",[64,4.624]],["name/895",[70,60.803]],["parent/895",[64,4.624]],["name/896",[77,60.803]],["parent/896",[64,4.624]],["name/897",[80,60.803]],["parent/897",[64,4.624]],["name/898",[81,60.803]],["parent/898",[64,4.624]],["name/899",[83,60.803]],["parent/899",[64,4.624]],["name/900",[85,60.803]],["parent/900",[91,6.108]],["name/901",[89,60.803]],["parent/901",[91,6.108]],["name/902",[93,60.803]],["parent/902",[91,6.108]],["name/903",[96,60.803]],["parent/903",[136,4.695]],["name/904",[123,60.803]],["parent/904",[136,4.695]],["name/905",[128,60.803]],["parent/905",[136,4.695]],["name/906",[127,51.012]],["parent/906",[136,4.695]],["name/907",[135,60.803]],["parent/907",[136,4.695]],["name/908",[138,54.78]],["parent/908",[136,4.695]],["name/909",[144,60.803]],["parent/909",[136,4.695]],["name/910",[148,57.355]],["parent/910",[136,4.695]],["name/911",[152,60.803]],["parent/911",[136,4.695]],["name/912",[159,52.724]],["parent/912",[136,4.695]],["name/913",[173,60.803]],["parent/913",[136,4.695]],["name/914",[181,52.724]],["parent/914",[136,4.695]],["name/915",[180,51.012]],["parent/915",[136,4.695]],["name/916",[194,60.803]],["parent/916",[136,4.695]],["name/917",[200,54.78]],["parent/917",[196,5.525]],["name/918",[227,60.803]],["parent/918",[196,5.525]],["name/919",[230,60.803]],["parent/919",[196,5.525]],["name/920",[240,60.803]],["parent/920",[196,5.525]],["name/921",[127,51.012]],["parent/921",[196,5.525]],["name/922",[229,48.263]],["parent/922",[196,5.525]],["name/923",[245,60.803]],["parent/923",[282,4.941]],["name/924",[332,60.803]],["parent/924",[282,4.941]],["name/925",[347,60.803]],["parent/925",[282,4.941]],["name/926",[318,60.803]],["parent/926",[282,4.941]],["name/927",[266,60.803]],["parent/927",[282,4.941]],["name/928",[288,60.803]],["parent/928",[282,4.941]],["name/929",[234,57.355]],["parent/929",[282,4.941]],["name/930",[277,60.803]],["parent/930",[282,4.941]],["name/931",[381,60.803]],["parent/931",[282,4.941]],["name/932",[284,60.803]],["parent/932",[282,4.941]],["name/933",[310,60.803]],["parent/933",[282,4.941]],["name/934",[180,51.012]],["parent/934",[628,6.78]],["name/935",[681,60.803]],["parent/935",[686,5.255]],["name/936",[690,60.803]],["parent/936",[686,5.255]],["name/937",[697,60.803]],["parent/937",[686,5.255]],["name/938",[699,60.803]],["parent/938",[686,5.255]],["name/939",[701,60.803]],["parent/939",[686,5.255]],["name/940",[712,60.803]],["parent/940",[686,5.255]],["name/941",[705,60.803]],["parent/941",[686,5.255]],["name/942",[709,60.803]],["parent/942",[686,5.255]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":166,"name":{"164":{}},"parent":{}}],["__type",{"_index":52,"name":{"47":{},"64":{},"96":{},"98":{},"104":{},"111":{},"163":{},"165":{},"262":{},"264":{},"793":{},"809":{},"825":{}},"parent":{}}],["_outbuffer",{"_index":640,"name":{"778":{}},"parent":{}}],["_outbuffercursor",{"_index":641,"name":{"779":{}},"parent":{}}],["_signatureset",{"_index":638,"name":{"776":{}},"parent":{}}],["_workbuffer",{"_index":639,"name":{"777":{}},"parent":{}}],["account",{"_index":441,"name":{"496":{}},"parent":{}}],["account.component",{"_index":495,"name":{"569":{}},"parent":{"570":{}}}],["account.component.createaccountcomponent",{"_index":497,"name":{},"parent":{"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["account/create",{"_index":494,"name":{"569":{}},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["accountaddress",{"_index":442,"name":{"497":{}},"parent":{}}],["accountdetails",{"_index":96,"name":{"89":{},"903":{}},"parent":{}}],["accountdetailscomponent",{"_index":426,"name":{"481":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"881":{}},"parent":{}}],["accountinfoform",{"_index":440,"name":{"495":{}},"parent":{}}],["accountinfoformstub",{"_index":456,"name":{"522":{}},"parent":{}}],["accountregistry",{"_index":313,"name":{"357":{}},"parent":{}}],["accounts",{"_index":350,"name":{"403":{},"499":{},"551":{}},"parent":{}}],["accountscomponent",{"_index":480,"name":{"548":{}},"parent":{}}],["accountsearchcomponent",{"_index":464,"name":{"530":{}},"parent":{}}],["accountslist",{"_index":351,"name":{"404":{}},"parent":{}}],["accountsmodule",{"_index":491,"name":{"567":{}},"parent":{}}],["accountsroutingmodule",{"_index":477,"name":{"545":{}},"parent":{}}],["accountssubject",{"_index":352,"name":{"405":{}},"parent":{}}],["accountstatus",{"_index":443,"name":{"498":{}},"parent":{}}],["accountstype",{"_index":444,"name":{"500":{},"555":{}},"parent":{}}],["accounttypes",{"_index":446,"name":{"507":{},"556":{},"577":{}},"parent":{}}],["action",{"_index":138,"name":{"132":{},"133":{},"590":{},"908":{}},"parent":{}}],["actions",{"_index":353,"name":{"406":{},"591":{},"876":{}},"parent":{}}],["actionslist",{"_index":354,"name":{"407":{}},"parent":{}}],["actionssubject",{"_index":355,"name":{"408":{}},"parent":{}}],["activatedroutestub",{"_index":681,"name":{"843":{},"935":{}},"parent":{}}],["add0x",{"_index":627,"name":{"761":{}},"parent":{}}],["addaccount",{"_index":379,"name":{"433":{}},"parent":{}}],["address",{"_index":160,"name":{"157":{},"195":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":469,"name":{"535":{}},"parent":{}}],["addresssearchformstub",{"_index":473,"name":{"541":{}},"parent":{}}],["addresssearchloading",{"_index":471,"name":{"537":{}},"parent":{}}],["addresssearchsubmitted",{"_index":470,"name":{"536":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtoken",{"_index":324,"name":{"372":{}},"parent":{}}],["addtransaction",{"_index":342,"name":{"392":{}},"parent":{}}],["addtrusteduser",{"_index":261,"name":{"302":{}},"parent":{}}],["admincomponent",{"_index":504,"name":{"586":{}},"parent":{}}],["adminmodule",{"_index":510,"name":{"602":{}},"parent":{}}],["adminroutingmodule",{"_index":501,"name":{"583":{}},"parent":{}}],["age",{"_index":97,"name":{"90":{}},"parent":{}}],["algo",{"_index":131,"name":{"125":{},"256":{},"273":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"881":{},"882":{}}}],["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":{"883":{},"884":{}}}],["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":64,"name":{"58":{}},"parent":{"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["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":{},"55":{}}}],["app/_helpers/http",{"_index":61,"name":{"56":{}},"parent":{"57":{}}}],["app/_helpers/mock",{"_index":65,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["app/_helpers/read",{"_index":76,"name":{"68":{}},"parent":{"69":{}}}],["app/_helpers/schema",{"_index":78,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["app/_helpers/sync",{"_index":82,"name":{"73":{}},"parent":{"74":{}}}],["app/_interceptors",{"_index":91,"name":{"83":{}},"parent":{"900":{},"901":{},"902":{}}}],["app/_interceptors/error.interceptor",{"_index":84,"name":{"75":{}},"parent":{"76":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":86,"name":{},"parent":{"77":{},"78":{}}}],["app/_interceptors/http",{"_index":87,"name":{"79":{}},"parent":{"80":{},"81":{},"82":{}}}],["app/_interceptors/logging.interceptor",{"_index":92,"name":{"84":{}},"parent":{"85":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":94,"name":{},"parent":{"86":{},"87":{}}}],["app/_models",{"_index":136,"name":{"130":{}},"parent":{"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{}}}],["app/_models/account",{"_index":95,"name":{"88":{}},"parent":{"89":{},"117":{},"121":{},"124":{},"129":{}}}],["app/_models/account.accountdetails",{"_index":98,"name":{},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"103":{},"104":{},"108":{},"109":{},"110":{},"111":{}}}],["app/_models/account.accountdetails.__type",{"_index":105,"name":{},"parent":{"97":{},"98":{},"101":{},"102":{},"105":{},"106":{},"107":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":107,"name":{},"parent":{"99":{},"100":{}}}],["app/_models/account.meta",{"_index":125,"name":{},"parent":{"118":{},"119":{},"120":{}}}],["app/_models/account.metaresponse",{"_index":129,"name":{},"parent":{"122":{},"123":{}}}],["app/_models/account.signature",{"_index":132,"name":{},"parent":{"125":{},"126":{},"127":{},"128":{}}}],["app/_models/mappings",{"_index":137,"name":{"131":{}},"parent":{"132":{}}}],["app/_models/mappings.action",{"_index":139,"name":{},"parent":{"133":{},"134":{},"135":{},"136":{},"137":{}}}],["app/_models/settings",{"_index":143,"name":{"138":{}},"parent":{"139":{},"145":{}}}],["app/_models/settings.settings",{"_index":145,"name":{},"parent":{"140":{},"141":{},"142":{},"143":{},"144":{}}}],["app/_models/settings.w3",{"_index":149,"name":{},"parent":{"146":{},"147":{}}}],["app/_models/staff",{"_index":151,"name":{"148":{}},"parent":{"149":{}}}],["app/_models/staff.staff",{"_index":154,"name":{},"parent":{"150":{},"151":{},"152":{},"153":{},"154":{}}}],["app/_models/token",{"_index":158,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/token.token",{"_index":161,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"168":{},"169":{}}}],["app/_models/token.token.__type",{"_index":167,"name":{},"parent":{"164":{},"165":{}}}],["app/_models/token.token.__type.__type",{"_index":169,"name":{},"parent":{"166":{},"167":{}}}],["app/_models/transaction",{"_index":172,"name":{"170":{}},"parent":{"171":{},"179":{},"188":{},"194":{}}}],["app/_models/transaction.conversion",{"_index":175,"name":{},"parent":{"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["app/_models/transaction.transaction",{"_index":183,"name":{},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{}}}],["app/_models/transaction.tx",{"_index":189,"name":{},"parent":{"189":{},"190":{},"191":{},"192":{},"193":{}}}],["app/_models/transaction.txtoken",{"_index":195,"name":{},"parent":{"195":{},"196":{},"197":{}}}],["app/_pgp",{"_index":196,"name":{"198":{}},"parent":{"917":{},"918":{},"919":{},"920":{},"921":{},"922":{}}}],["app/_pgp/pgp",{"_index":197,"name":{"199":{},"253":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["app/_services",{"_index":282,"name":{"323":{}},"parent":{"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{},"930":{},"931":{},"932":{},"933":{}}}],["app/_services/auth.service",{"_index":244,"name":{"284":{}},"parent":{"285":{}}}],["app/_services/auth.service.authservice",{"_index":246,"name":{},"parent":{"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{}}}],["app/_services/block",{"_index":264,"name":{"307":{}},"parent":{"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{}}}],["app/_services/error",{"_index":275,"name":{"317":{}},"parent":{"318":{},"319":{},"320":{},"321":{},"322":{}}}],["app/_services/keystore.service",{"_index":283,"name":{"324":{}},"parent":{"325":{}}}],["app/_services/keystore.service.keystoreservice",{"_index":285,"name":{},"parent":{"326":{},"327":{},"328":{}}}],["app/_services/location.service",{"_index":287,"name":{"329":{}},"parent":{"330":{}}}],["app/_services/location.service.locationservice",{"_index":289,"name":{},"parent":{"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{}}}],["app/_services/logging.service",{"_index":300,"name":{"342":{}},"parent":{"343":{}}}],["app/_services/logging.service.loggingservice",{"_index":301,"name":{},"parent":{"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{}}}],["app/_services/registry.service",{"_index":309,"name":{"352":{}},"parent":{"353":{}}}],["app/_services/registry.service.registryservice",{"_index":312,"name":{},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{}}}],["app/_services/token.service",{"_index":317,"name":{"362":{}},"parent":{"363":{}}}],["app/_services/token.service.tokenservice",{"_index":319,"name":{},"parent":{"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{}}}],["app/_services/transaction.service",{"_index":331,"name":{"379":{}},"parent":{"380":{}}}],["app/_services/transaction.service.transactionservice",{"_index":333,"name":{},"parent":{"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{}}}],["app/_services/user.service",{"_index":346,"name":{"396":{}},"parent":{"397":{}}}],["app/_services/user.service.userservice",{"_index":348,"name":{},"parent":{"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":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{}}}],["app/_services/web3.service",{"_index":380,"name":{"434":{}},"parent":{"435":{}}}],["app/_services/web3.service.web3service",{"_index":382,"name":{},"parent":{"436":{},"437":{},"438":{}}}],["app/app",{"_index":384,"name":{"439":{}},"parent":{"440":{},"441":{}}}],["app/app.component",{"_index":388,"name":{"442":{}},"parent":{"443":{}}}],["app/app.component.appcomponent",{"_index":390,"name":{},"parent":{"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{}}}],["app/app.module",{"_index":397,"name":{"451":{}},"parent":{"452":{}}}],["app/app.module.appmodule",{"_index":399,"name":{},"parent":{"453":{}}}],["app/auth/_directives",{"_index":400,"name":{"454":{}},"parent":{}}],["app/auth/_directives/password",{"_index":401,"name":{"455":{}},"parent":{"456":{},"457":{},"458":{},"459":{},"460":{}}}],["app/auth/auth",{"_index":407,"name":{"461":{}},"parent":{"462":{},"463":{}}}],["app/auth/auth.component",{"_index":410,"name":{"464":{}},"parent":{"465":{}}}],["app/auth/auth.component.authcomponent",{"_index":412,"name":{},"parent":{"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{}}}],["app/auth/auth.module",{"_index":420,"name":{"477":{}},"parent":{"478":{}}}],["app/auth/auth.module.authmodule",{"_index":422,"name":{},"parent":{"479":{}}}],["app/pages/accounts/account",{"_index":423,"name":{"480":{},"529":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["app/pages/accounts/accounts",{"_index":476,"name":{"544":{}},"parent":{"545":{},"546":{}}}],["app/pages/accounts/accounts.component",{"_index":479,"name":{"547":{}},"parent":{"548":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":481,"name":{},"parent":{"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{}}}],["app/pages/accounts/accounts.module",{"_index":490,"name":{"566":{}},"parent":{"567":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":492,"name":{},"parent":{"568":{}}}],["app/pages/accounts/create",{"_index":493,"name":{"569":{}},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{}}}],["app/pages/admin/admin",{"_index":500,"name":{"582":{}},"parent":{"583":{},"584":{}}}],["app/pages/admin/admin.component",{"_index":503,"name":{"585":{}},"parent":{"586":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":505,"name":{},"parent":{"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{}}}],["app/pages/admin/admin.module",{"_index":509,"name":{"601":{}},"parent":{"602":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":511,"name":{},"parent":{"603":{}}}],["app/pages/pages",{"_index":512,"name":{"604":{}},"parent":{"605":{},"606":{}}}],["app/pages/pages.component",{"_index":515,"name":{"607":{}},"parent":{"608":{}}}],["app/pages/pages.component.pagescomponent",{"_index":517,"name":{},"parent":{"609":{},"610":{}}}],["app/pages/pages.module",{"_index":519,"name":{"611":{}},"parent":{"612":{}}}],["app/pages/pages.module.pagesmodule",{"_index":521,"name":{},"parent":{"613":{}}}],["app/pages/settings/organization/organization.component",{"_index":522,"name":{"614":{}},"parent":{"615":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":524,"name":{},"parent":{"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{}}}],["app/pages/settings/settings",{"_index":527,"name":{"623":{}},"parent":{"624":{},"625":{}}}],["app/pages/settings/settings.component",{"_index":530,"name":{"626":{}},"parent":{"627":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":532,"name":{},"parent":{"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{}}}],["app/pages/settings/settings.module",{"_index":534,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":536,"name":{},"parent":{"641":{}}}],["app/pages/tokens/token",{"_index":537,"name":{"642":{}},"parent":{"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["app/pages/tokens/tokens",{"_index":543,"name":{"649":{}},"parent":{"650":{},"651":{}}}],["app/pages/tokens/tokens.component",{"_index":546,"name":{"652":{}},"parent":{"653":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":548,"name":{},"parent":{"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{}}}],["app/pages/tokens/tokens.module",{"_index":551,"name":{"665":{}},"parent":{"666":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":553,"name":{},"parent":{"667":{}}}],["app/pages/transactions/transaction",{"_index":554,"name":{"668":{}},"parent":{"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["app/pages/transactions/transactions",{"_index":566,"name":{"685":{}},"parent":{"686":{},"687":{}}}],["app/pages/transactions/transactions.component",{"_index":569,"name":{"688":{}},"parent":{"689":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":571,"name":{},"parent":{"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{}}}],["app/pages/transactions/transactions.module",{"_index":575,"name":{"708":{}},"parent":{"709":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":577,"name":{},"parent":{"710":{}}}],["app/shared/_directives/menu",{"_index":578,"name":{"711":{},"715":{}},"parent":{"712":{},"713":{},"714":{},"716":{},"717":{},"718":{}}}],["app/shared/_pipes/safe.pipe",{"_index":586,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":588,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/_pipes/token",{"_index":590,"name":{"723":{}},"parent":{"724":{},"725":{},"726":{}}}],["app/shared/_pipes/unix",{"_index":594,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{}}}],["app/shared/error",{"_index":598,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{}}}],["app/shared/footer/footer.component",{"_index":603,"name":{"735":{}},"parent":{"736":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":605,"name":{},"parent":{"737":{},"738":{},"739":{}}}],["app/shared/network",{"_index":607,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{},"744":{},"745":{}}}],["app/shared/shared.module",{"_index":614,"name":{"746":{}},"parent":{"747":{}}}],["app/shared/shared.module.sharedmodule",{"_index":616,"name":{},"parent":{"748":{}}}],["app/shared/sidebar/sidebar.component",{"_index":617,"name":{"749":{}},"parent":{"750":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":619,"name":{},"parent":{"751":{},"752":{}}}],["app/shared/topbar/topbar.component",{"_index":620,"name":{"753":{}},"parent":{"754":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":622,"name":{},"parent":{"755":{},"756":{}}}],["appcomponent",{"_index":389,"name":{"443":{}},"parent":{}}],["appmodule",{"_index":398,"name":{"452":{}},"parent":{}}],["approutingmodule",{"_index":386,"name":{"440":{}},"parent":{}}],["approval",{"_index":140,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":506,"name":{"596":{}},"parent":{}}],["approveaction",{"_index":366,"name":{"420":{},"597":{},"880":{}},"parent":{}}],["area",{"_index":112,"name":{"105":{},"515":{}},"parent":{}}],["area_name",{"_index":113,"name":{"106":{}},"parent":{}}],["area_type",{"_index":114,"name":{"107":{}},"parent":{}}],["areanames",{"_index":290,"name":{"332":{},"502":{},"576":{}},"parent":{}}],["areanameslist",{"_index":291,"name":{"333":{}},"parent":{}}],["areanamessubject",{"_index":292,"name":{"334":{}},"parent":{}}],["areatype",{"_index":451,"name":{"516":{}},"parent":{}}],["areatypes",{"_index":293,"name":{"335":{},"503":{}},"parent":{}}],["areatypeslist",{"_index":294,"name":{"336":{}},"parent":{}}],["areatypessubject",{"_index":295,"name":{"337":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"885":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":628,"name":{"762":{}},"parent":{"934":{}}}],["assets/js/ethtx/dist/hex",{"_index":623,"name":{"757":{}},"parent":{"758":{},"759":{},"760":{},"761":{}}}],["assets/js/ethtx/dist/tx",{"_index":629,"name":{"763":{}},"parent":{"764":{},"788":{},"789":{},"790":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":630,"name":{},"parent":{"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{}}}],["authcomponent",{"_index":411,"name":{"465":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"883":{}},"parent":{}}],["authmodule",{"_index":421,"name":{"478":{}},"parent":{}}],["authroutingmodule",{"_index":408,"name":{"462":{}},"parent":{}}],["authservice",{"_index":245,"name":{"285":{},"923":{}},"parent":{}}],["backend",{"_index":66,"name":{"59":{}},"parent":{"60":{},"63":{}}}],["backend.mockbackendinterceptor",{"_index":68,"name":{},"parent":{"61":{},"62":{}}}],["backend.mockbackendprovider",{"_index":71,"name":{},"parent":{"64":{}}}],["backend.mockbackendprovider.__type",{"_index":73,"name":{},"parent":{"65":{},"66":{},"67":{}}}],["balance",{"_index":99,"name":{"91":{},"167":{}},"parent":{}}],["block",{"_index":188,"name":{"189":{}},"parent":{}}],["blocksync",{"_index":270,"name":{"312":{}},"parent":{}}],["blocksyncservice",{"_index":266,"name":{"308":{},"927":{}},"parent":{}}],["bloxberg:8996",{"_index":106,"name":{"99":{}},"parent":{}}],["bloxbergchainid",{"_index":657,"name":{"795":{},"811":{},"827":{}},"parent":{}}],["bloxberglink",{"_index":449,"name":{"512":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["canonicalorder",{"_index":645,"name":{"783":{}},"parent":{}}],["categories",{"_index":356,"name":{"409":{},"501":{},"575":{}},"parent":{}}],["categorieslist",{"_index":357,"name":{"410":{}},"parent":{}}],["categoriessubject",{"_index":358,"name":{"411":{}},"parent":{}}],["category",{"_index":100,"name":{"92":{},"514":{}},"parent":{}}],["chainid",{"_index":637,"name":{"775":{}},"parent":{}}],["changeaccountinfo",{"_index":362,"name":{"416":{}},"parent":{}}],["ciccacheurl",{"_index":663,"name":{"801":{},"817":{},"833":{}},"parent":{}}],["cicconvert",{"_index":396,"name":{"450":{}},"parent":{}}],["cicmetaurl",{"_index":661,"name":{"799":{},"815":{},"831":{}},"parent":{}}],["cictransfer",{"_index":395,"name":{"449":{}},"parent":{}}],["cicussdurl",{"_index":665,"name":{"803":{},"819":{},"835":{}},"parent":{}}],["clearkeysinkeyring",{"_index":201,"name":{"201":{},"228":{}},"parent":{}}],["clearsignature",{"_index":649,"name":{"787":{}},"parent":{}}],["close",{"_index":542,"name":{"648":{},"684":{}},"parent":{}}],["closewindow",{"_index":541,"name":{"646":{},"672":{}},"parent":{}}],["columnstodisplay",{"_index":549,"name":{"656":{}},"parent":{}}],["comment",{"_index":153,"name":{"150":{}},"parent":{}}],["config.interceptor",{"_index":88,"name":{"79":{}},"parent":{"80":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":90,"name":{},"parent":{"81":{},"82":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"48":{},"51":{},"61":{},"77":{},"81":{},"86":{},"140":{},"227":{},"255":{},"286":{},"309":{},"319":{},"328":{},"331":{},"344":{},"361":{},"364":{},"381":{},"398":{},"438":{},"441":{},"444":{},"453":{},"457":{},"463":{},"466":{},"479":{},"482":{},"531":{},"546":{},"549":{},"568":{},"571":{},"584":{},"587":{},"603":{},"606":{},"609":{},"613":{},"616":{},"625":{},"628":{},"641":{},"644":{},"651":{},"654":{},"667":{},"670":{},"687":{},"690":{},"710":{},"713":{},"717":{},"721":{},"725":{},"729":{},"733":{},"737":{},"742":{},"748":{},"751":{},"755":{},"765":{},"844":{},"851":{},"857":{},"859":{},"861":{},"864":{},"868":{},"874":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":173,"name":{"171":{},"913":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":461,"name":{"528":{},"683":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"886":{}},"parent":{}}],["createaccountcomponent",{"_index":496,"name":{"570":{}},"parent":{}}],["createform",{"_index":498,"name":{"572":{}},"parent":{}}],["createformstub",{"_index":499,"name":{"580":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"68":{}},"parent":{"43":{},"69":{}}}],["currentyear",{"_index":606,"name":{"738":{}},"parent":{}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"888":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"887":{}},"parent":{}}],["dashboardurl",{"_index":668,"name":{"806":{},"822":{},"838":{}},"parent":{}}],["data",{"_index":124,"name":{"118":{},"126":{},"274":{},"734":{},"771":{}},"parent":{}}],["datasource",{"_index":482,"name":{"550":{},"588":{},"629":{},"655":{}},"parent":{}}],["date.pipe",{"_index":595,"name":{"727":{}},"parent":{"728":{}}}],["date.pipe.unixdatepipe",{"_index":597,"name":{},"parent":{"729":{},"730":{}}}],["date_registered",{"_index":101,"name":{"93":{}},"parent":{}}],["decimals",{"_index":162,"name":{"158":{}},"parent":{}}],["defaultaccount",{"_index":135,"name":{"129":{},"907":{}},"parent":{}}],["defaultpagesize",{"_index":484,"name":{"553":{},"693":{}},"parent":{}}],["destinationtoken",{"_index":174,"name":{"172":{}},"parent":{}}],["details.component",{"_index":425,"name":{"480":{},"642":{},"668":{}},"parent":{"481":{},"643":{},"669":{}}}],["details.component.accountdetailscomponent",{"_index":427,"name":{},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{}}}],["details.component.tokendetailscomponent",{"_index":540,"name":{},"parent":{"644":{},"645":{},"646":{},"647":{},"648":{}}}],["details.component.transactiondetailscomponent",{"_index":557,"name":{},"parent":{"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["details/account",{"_index":424,"name":{"480":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{}}}],["details/token",{"_index":538,"name":{"642":{}},"parent":{"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["details/transaction",{"_index":555,"name":{"668":{}},"parent":{"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["dgst",{"_index":232,"name":{"257":{}},"parent":{}}],["dialog",{"_index":280,"name":{"321":{}},"parent":{}}],["dialog.component",{"_index":600,"name":{"731":{}},"parent":{"732":{}}}],["dialog.component.errordialogcomponent",{"_index":602,"name":{},"parent":{"733":{},"734":{}}}],["dialog.service",{"_index":276,"name":{"317":{}},"parent":{"318":{}}}],["dialog.service.errordialogservice",{"_index":278,"name":{},"parent":{"319":{},"320":{},"321":{},"322":{}}}],["dialog/error",{"_index":599,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{}}}],["digest",{"_index":133,"name":{"127":{},"271":{},"275":{}},"parent":{}}],["directive",{"_index":689,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["disapproveaction",{"_index":507,"name":{"598":{}},"parent":{}}],["displayedcolumns",{"_index":483,"name":{"552":{},"589":{},"630":{}},"parent":{}}],["dofilter",{"_index":488,"name":{"561":{},"595":{},"636":{},"662":{},"704":{}},"parent":{}}],["dotransactionfilter",{"_index":452,"name":{"518":{}},"parent":{}}],["douserfilter",{"_index":453,"name":{"519":{}},"parent":{}}],["downloadcsv",{"_index":460,"name":{"527":{},"565":{},"600":{},"637":{},"664":{},"707":{}},"parent":{}}],["email",{"_index":118,"name":{"112":{},"151":{}},"parent":{}}],["engine",{"_index":134,"name":{"128":{},"146":{},"258":{},"276":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["environment",{"_index":653,"name":{"792":{},"808":{},"824":{}},"parent":{}}],["environments/environment",{"_index":672,"name":{"823":{}},"parent":{"824":{}}}],["environments/environment.dev",{"_index":652,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev.environment",{"_index":654,"name":{},"parent":{"793":{}}}],["environments/environment.dev.environment.__type",{"_index":656,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{}}}],["environments/environment.environment",{"_index":673,"name":{},"parent":{"825":{}}}],["environments/environment.environment.__type",{"_index":674,"name":{},"parent":{"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{},"838":{}}}],["environments/environment.prod",{"_index":669,"name":{"807":{}},"parent":{"808":{}}}],["environments/environment.prod.environment",{"_index":670,"name":{},"parent":{"809":{}}}],["environments/environment.prod.environment.__type",{"_index":671,"name":{},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["errordialogcomponent",{"_index":601,"name":{"732":{}},"parent":{}}],["errordialogservice",{"_index":277,"name":{"318":{},"930":{}},"parent":{}}],["errorinterceptor",{"_index":85,"name":{"76":{},"900":{}},"parent":{}}],["evm",{"_index":104,"name":{"97":{}},"parent":{}}],["expandcollapse",{"_index":508,"name":{"599":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"889":{}},"parent":{}}],["fetcher",{"_index":274,"name":{"316":{}},"parent":{}}],["filegetter",{"_index":311,"name":{"354":{}},"parent":{}}],["filteraccounts",{"_index":458,"name":{"524":{},"563":{}},"parent":{}}],["filtertransactions",{"_index":459,"name":{"525":{},"705":{}},"parent":{}}],["fingerprint",{"_index":237,"name":{"266":{},"278":{}},"parent":{}}],["fn",{"_index":119,"name":{"113":{}},"parent":{}}],["footercomponent",{"_index":604,"name":{"736":{}},"parent":{}}],["footerstubcomponent",{"_index":701,"name":{"860":{},"939":{}},"parent":{}}],["from",{"_index":182,"name":{"180":{}},"parent":{}}],["fromhex",{"_index":624,"name":{"758":{}},"parent":{}}],["fromvalue",{"_index":176,"name":{"173":{}},"parent":{}}],["gaslimit",{"_index":633,"name":{"768":{}},"parent":{}}],["gasprice",{"_index":632,"name":{"767":{}},"parent":{}}],["gender",{"_index":102,"name":{"94":{}},"parent":{}}],["genders",{"_index":448,"name":{"509":{},"578":{}},"parent":{}}],["getaccountbyaddress",{"_index":371,"name":{"425":{}},"parent":{}}],["getaccountbyphone",{"_index":372,"name":{"426":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":368,"name":{"422":{}},"parent":{}}],["getaccountinfo",{"_index":344,"name":{"394":{}},"parent":{}}],["getaccountregistry",{"_index":316,"name":{"360":{}},"parent":{}}],["getaccountstatus",{"_index":360,"name":{"414":{}},"parent":{}}],["getaccounttypes",{"_index":376,"name":{"430":{}},"parent":{}}],["getactionbyid",{"_index":365,"name":{"419":{},"879":{}},"parent":{}}],["getactions",{"_index":364,"name":{"418":{}},"parent":{}}],["getaddresstransactions",{"_index":339,"name":{"389":{}},"parent":{}}],["getalltransactions",{"_index":338,"name":{"388":{},"871":{}},"parent":{}}],["getareanamebylocation",{"_index":297,"name":{"339":{}},"parent":{}}],["getareanames",{"_index":296,"name":{"338":{}},"parent":{}}],["getareatypebyarea",{"_index":299,"name":{"341":{}},"parent":{}}],["getareatypes",{"_index":298,"name":{"340":{}},"parent":{}}],["getbysymbol",{"_index":707,"name":{"865":{}},"parent":{}}],["getcategories",{"_index":374,"name":{"428":{}},"parent":{}}],["getcategorybyproduct",{"_index":375,"name":{"429":{}},"parent":{}}],["getchallenge",{"_index":256,"name":{"297":{}},"parent":{}}],["getencryptkeys",{"_index":203,"name":{"202":{},"229":{}},"parent":{}}],["getfingerprint",{"_index":204,"name":{"203":{},"230":{}},"parent":{}}],["getgenders",{"_index":378,"name":{"432":{}},"parent":{}}],["getinstance",{"_index":383,"name":{"437":{}},"parent":{}}],["getkeyid",{"_index":205,"name":{"204":{},"231":{}},"parent":{}}],["getkeysforid",{"_index":206,"name":{"205":{},"232":{}},"parent":{}}],["getkeystore",{"_index":286,"name":{"327":{}},"parent":{}}],["getlockedaccounts",{"_index":361,"name":{"415":{}},"parent":{}}],["getprivatekey",{"_index":207,"name":{"206":{},"233":{},"305":{}},"parent":{}}],["getprivatekeyforid",{"_index":208,"name":{"207":{},"234":{}},"parent":{}}],["getprivatekeyid",{"_index":209,"name":{"208":{},"235":{}},"parent":{}}],["getprivatekeyinfo",{"_index":263,"name":{"306":{}},"parent":{}}],["getprivatekeys",{"_index":210,"name":{"209":{},"236":{}},"parent":{}}],["getpublickeyforid",{"_index":211,"name":{"210":{},"237":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":212,"name":{"211":{},"238":{}},"parent":{}}],["getpublickeys",{"_index":213,"name":{"212":{},"239":{},"304":{}},"parent":{}}],["getpublickeysforaddress",{"_index":214,"name":{"213":{},"240":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"358":{}},"parent":{}}],["getsessiontoken",{"_index":251,"name":{"292":{}},"parent":{}}],["getter",{"_index":62,"name":{"56":{}},"parent":{"57":{}}}],["gettokenbalance",{"_index":328,"name":{"376":{}},"parent":{}}],["gettokenbyaddress",{"_index":326,"name":{"374":{}},"parent":{}}],["gettokenbysymbol",{"_index":327,"name":{"375":{}},"parent":{}}],["gettokenname",{"_index":329,"name":{"377":{}},"parent":{}}],["gettokenregistry",{"_index":315,"name":{"359":{}},"parent":{}}],["gettokens",{"_index":325,"name":{"373":{}},"parent":{}}],["gettokensymbol",{"_index":330,"name":{"378":{}},"parent":{}}],["gettransactiontypes",{"_index":377,"name":{"431":{}},"parent":{}}],["gettrustedactivekeys",{"_index":215,"name":{"214":{},"241":{}},"parent":{}}],["gettrustedkeys",{"_index":216,"name":{"215":{},"242":{}},"parent":{}}],["gettrustedusers",{"_index":262,"name":{"303":{}},"parent":{}}],["getuser",{"_index":716,"name":{"878":{}},"parent":{}}],["getuserbyid",{"_index":715,"name":{"877":{}},"parent":{}}],["getwithtoken",{"_index":254,"name":{"295":{}},"parent":{}}],["globalerrorhandler",{"_index":55,"name":{"50":{},"892":{}},"parent":{}}],["handleerror",{"_index":58,"name":{"53":{}},"parent":{}}],["handlenetworkchange",{"_index":613,"name":{"745":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"46":{},"50":{}}}],["handler.globalerrorhandler",{"_index":56,"name":{},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{}}}],["handler.httperror",{"_index":53,"name":{},"parent":{"47":{},"48":{},"49":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":349,"name":{"399":{}},"parent":{}}],["hextovalue",{"_index":651,"name":{"789":{}},"parent":{}}],["httpconfiginterceptor",{"_index":89,"name":{"80":{},"901":{}},"parent":{}}],["httperror",{"_index":51,"name":{"46":{},"891":{}},"parent":{}}],["httpgetter",{"_index":63,"name":{"57":{},"893":{}},"parent":{}}],["iconid",{"_index":405,"name":{"459":{}},"parent":{}}],["id",{"_index":126,"name":{"119":{},"122":{},"135":{},"458":{}},"parent":{}}],["identities",{"_index":103,"name":{"95":{}},"parent":{}}],["importkeypair",{"_index":217,"name":{"216":{},"243":{}},"parent":{}}],["importprivatekey",{"_index":218,"name":{"217":{},"244":{}},"parent":{}}],["importpublickey",{"_index":219,"name":{"218":{},"245":{}},"parent":{}}],["init",{"_index":250,"name":{"291":{},"371":{},"387":{},"412":{}},"parent":{}}],["intercept",{"_index":69,"name":{"62":{},"78":{},"82":{},"87":{}},"parent":{}}],["isdialogopen",{"_index":279,"name":{"320":{}},"parent":{}}],["isencryptedprivatekey",{"_index":220,"name":{"219":{},"246":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":221,"name":{"220":{},"247":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"parent":{}}],["key",{"_index":198,"name":{"199":{}},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{}}}],["keyform",{"_index":413,"name":{"467":{}},"parent":{}}],["keyformstub",{"_index":416,"name":{"472":{}},"parent":{}}],["keystore",{"_index":233,"name":{"259":{},"400":{}},"parent":{}}],["keystoreservice",{"_index":284,"name":{"325":{},"932":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":109,"name":{"101":{}},"parent":{}}],["link",{"_index":688,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["linkparams",{"_index":692,"name":{"852":{}},"parent":{}}],["load",{"_index":323,"name":{"370":{}},"parent":{}}],["loadaccounts",{"_index":370,"name":{"424":{}},"parent":{}}],["loading",{"_index":415,"name":{"469":{}},"parent":{}}],["loadkeyring",{"_index":222,"name":{"221":{},"248":{}},"parent":{}}],["location",{"_index":111,"name":{"103":{}},"parent":{}}],["locationservice",{"_index":288,"name":{"330":{},"928":{}},"parent":{}}],["logerror",{"_index":60,"name":{"55":{}},"parent":{}}],["logginginterceptor",{"_index":93,"name":{"85":{},"902":{}},"parent":{}}],["loggingservice",{"_index":234,"name":{"260":{},"343":{},"929":{}},"parent":{}}],["loggingurl",{"_index":660,"name":{"798":{},"814":{},"830":{}},"parent":{}}],["login",{"_index":257,"name":{"298":{},"474":{}},"parent":{}}],["loginview",{"_index":258,"name":{"299":{}},"parent":{}}],["loglevel",{"_index":658,"name":{"796":{},"812":{},"828":{}},"parent":{}}],["logout",{"_index":260,"name":{"301":{},"638":{}},"parent":{}}],["longitude",{"_index":110,"name":{"102":{}},"parent":{}}],["m",{"_index":130,"name":{"123":{}},"parent":{}}],["main",{"_index":675,"name":{"839":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"470":{},"510":{},"538":{},"573":{},"619":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":392,"name":{"446":{}},"parent":{}}],["menuselectiondirective",{"_index":580,"name":{"712":{}},"parent":{}}],["menutoggledirective",{"_index":583,"name":{"716":{}},"parent":{}}],["message",{"_index":647,"name":{"785":{}},"parent":{}}],["meta",{"_index":123,"name":{"117":{},"904":{}},"parent":{}}],["metaresponse",{"_index":128,"name":{"121":{},"905":{}},"parent":{}}],["mockbackendinterceptor",{"_index":67,"name":{"60":{},"894":{}},"parent":{}}],["mockbackendprovider",{"_index":70,"name":{"63":{},"895":{}},"parent":{}}],["module",{"_index":696,"name":{"855":{}},"parent":{"856":{},"857":{},"858":{},"859":{},"860":{},"861":{}}}],["multi",{"_index":75,"name":{"67":{}},"parent":{}}],["mutablekeystore",{"_index":200,"name":{"200":{},"287":{},"326":{},"917":{}},"parent":{}}],["mutablepgpkeystore",{"_index":227,"name":{"226":{},"918":{}},"parent":{}}],["n",{"_index":120,"name":{"114":{}},"parent":{}}],["name",{"_index":155,"name":{"152":{},"159":{},"196":{}},"parent":{}}],["navigatedto",{"_index":693,"name":{"853":{}},"parent":{}}],["networkstatuscomponent",{"_index":610,"name":{"741":{}},"parent":{}}],["newevent",{"_index":272,"name":{"314":{}},"parent":{}}],["ngafterviewinit",{"_index":574,"name":{"706":{}},"parent":{}}],["ngoninit",{"_index":393,"name":{"447":{},"471":{},"517":{},"539":{},"560":{},"579":{},"594":{},"620":{},"635":{},"647":{},"661":{},"678":{},"702":{},"739":{},"744":{},"752":{},"756":{}},"parent":{}}],["nointernetconnection",{"_index":612,"name":{"743":{}},"parent":{}}],["nonce",{"_index":631,"name":{"766":{}},"parent":{}}],["oldchain:1",{"_index":108,"name":{"100":{}},"parent":{}}],["onaddresssearch",{"_index":475,"name":{"543":{}},"parent":{}}],["onclick",{"_index":694,"name":{"854":{}},"parent":{}}],["onmenuselect",{"_index":582,"name":{"714":{}},"parent":{}}],["onmenutoggle",{"_index":585,"name":{"718":{}},"parent":{}}],["onphonesearch",{"_index":474,"name":{"542":{}},"parent":{}}],["onresize",{"_index":394,"name":{"448":{}},"parent":{}}],["onsign",{"_index":235,"name":{"261":{},"279":{}},"parent":{}}],["onsubmit",{"_index":417,"name":{"473":{},"581":{},"622":{}},"parent":{}}],["onverify",{"_index":236,"name":{"263":{},"280":{}},"parent":{}}],["opendialog",{"_index":281,"name":{"322":{}},"parent":{}}],["organizationcomponent",{"_index":523,"name":{"615":{}},"parent":{}}],["organizationform",{"_index":525,"name":{"617":{}},"parent":{}}],["organizationformstub",{"_index":526,"name":{"621":{}},"parent":{}}],["owner",{"_index":163,"name":{"160":{}},"parent":{}}],["pagescomponent",{"_index":516,"name":{"608":{}},"parent":{}}],["pagesizeoptions",{"_index":485,"name":{"554":{},"694":{}},"parent":{}}],["pagesmodule",{"_index":520,"name":{"612":{}},"parent":{}}],["pagesroutingmodule",{"_index":513,"name":{"605":{}},"parent":{}}],["paginator",{"_index":486,"name":{"558":{},"592":{},"633":{},"657":{},"700":{}},"parent":{}}],["parammap",{"_index":684,"name":{"846":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":403,"name":{"456":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":80,"name":{"71":{},"897":{}},"parent":{}}],["pgpsigner",{"_index":230,"name":{"254":{},"919":{}},"parent":{}}],["phonesearchform",{"_index":466,"name":{"532":{}},"parent":{}}],["phonesearchformstub",{"_index":472,"name":{"540":{}},"parent":{}}],["phonesearchloading",{"_index":468,"name":{"534":{}},"parent":{}}],["phonesearchsubmitted",{"_index":467,"name":{"533":{}},"parent":{}}],["polyfills",{"_index":676,"name":{"840":{}},"parent":{}}],["prepare",{"_index":238,"name":{"267":{},"281":{}},"parent":{}}],["production",{"_index":655,"name":{"794":{},"810":{},"826":{}},"parent":{}}],["products",{"_index":115,"name":{"108":{}},"parent":{}}],["provide",{"_index":72,"name":{"65":{}},"parent":{}}],["provider",{"_index":150,"name":{"147":{}},"parent":{}}],["publickeysurl",{"_index":662,"name":{"800":{},"816":{},"832":{}},"parent":{}}],["r",{"_index":635,"name":{"773":{}},"parent":{}}],["ratio.pipe",{"_index":591,"name":{"723":{}},"parent":{"724":{}}}],["ratio.pipe.tokenratiopipe",{"_index":593,"name":{},"parent":{"725":{},"726":{}}}],["readcsv",{"_index":77,"name":{"69":{},"896":{}},"parent":{}}],["readystate",{"_index":269,"name":{"311":{}},"parent":{}}],["readystateprocessor",{"_index":271,"name":{"313":{}},"parent":{}}],["readystatetarget",{"_index":268,"name":{"310":{}},"parent":{}}],["recipient",{"_index":184,"name":{"181":{}},"parent":{}}],["recipientbloxberglink",{"_index":559,"name":{"674":{}},"parent":{}}],["refreshpaginator",{"_index":489,"name":{"564":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"141":{},"355":{},"365":{},"386":{},"402":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":666,"name":{"804":{},"820":{},"836":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"353":{},"933":{}},"parent":{}}],["rejectbody",{"_index":50,"name":{"45":{},"890":{}},"parent":{}}],["removekeysforid",{"_index":223,"name":{"222":{},"249":{}},"parent":{}}],["removepublickey",{"_index":224,"name":{"223":{},"250":{}},"parent":{}}],["removepublickeyforid",{"_index":225,"name":{"224":{},"251":{}},"parent":{}}],["reserveratio",{"_index":164,"name":{"161":{}},"parent":{}}],["reserves",{"_index":165,"name":{"162":{}},"parent":{}}],["resetaccountslist",{"_index":373,"name":{"427":{}},"parent":{}}],["resetpin",{"_index":359,"name":{"413":{},"526":{}},"parent":{}}],["resettransactionslist",{"_index":343,"name":{"393":{}},"parent":{}}],["reversetransaction",{"_index":565,"name":{"682":{}},"parent":{}}],["revokeaction",{"_index":367,"name":{"421":{}},"parent":{}}],["role",{"_index":141,"name":{"136":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"884":{}},"parent":{}}],["route",{"_index":679,"name":{"842":{}},"parent":{"843":{},"844":{},"845":{},"846":{},"847":{}}}],["routerlinkdirectivestub",{"_index":690,"name":{"850":{},"936":{}},"parent":{}}],["routing.module",{"_index":385,"name":{"439":{},"461":{},"544":{},"582":{},"604":{},"623":{},"649":{},"685":{}},"parent":{"440":{},"462":{},"545":{},"583":{},"605":{},"624":{},"650":{},"686":{}}}],["routing.module.accountsroutingmodule",{"_index":478,"name":{},"parent":{"546":{}}}],["routing.module.adminroutingmodule",{"_index":502,"name":{},"parent":{"584":{}}}],["routing.module.approutingmodule",{"_index":387,"name":{},"parent":{"441":{}}}],["routing.module.authroutingmodule",{"_index":409,"name":{},"parent":{"463":{}}}],["routing.module.pagesroutingmodule",{"_index":514,"name":{},"parent":{"606":{}}}],["routing.module.settingsroutingmodule",{"_index":529,"name":{},"parent":{"625":{}}}],["routing.module.tokensroutingmodule",{"_index":545,"name":{},"parent":{"651":{}}}],["routing.module.transactionsroutingmodule",{"_index":568,"name":{},"parent":{"687":{}}}],["s",{"_index":636,"name":{"774":{}},"parent":{}}],["safepipe",{"_index":587,"name":{"720":{}},"parent":{}}],["saveinfo",{"_index":457,"name":{"523":{}},"parent":{}}],["scan",{"_index":273,"name":{"315":{}},"parent":{}}],["scanfilter",{"_index":146,"name":{"142":{}},"parent":{}}],["search.component",{"_index":463,"name":{"529":{}},"parent":{"530":{}}}],["search.component.accountsearchcomponent",{"_index":465,"name":{},"parent":{"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["search/account",{"_index":462,"name":{"529":{}},"parent":{"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{}}}],["selection.directive",{"_index":579,"name":{"711":{}},"parent":{"712":{}}}],["selection.directive.menuselectiondirective",{"_index":581,"name":{},"parent":{"713":{},"714":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"346":{}},"parent":{}}],["sender",{"_index":185,"name":{"182":{}},"parent":{}}],["senderbloxberglink",{"_index":558,"name":{"673":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"350":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"351":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"347":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"348":{}},"parent":{}}],["sendsignedchallenge",{"_index":255,"name":{"296":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"345":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"349":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":57,"name":{"52":{}},"parent":{}}],["serializebytes",{"_index":644,"name":{"782":{}},"parent":{}}],["serializenumber",{"_index":642,"name":{"780":{}},"parent":{}}],["serializerlp",{"_index":646,"name":{"784":{}},"parent":{}}],["serverloglevel",{"_index":659,"name":{"797":{},"813":{},"829":{}},"parent":{}}],["service",{"_index":704,"name":{"862":{},"866":{},"872":{}},"parent":{"863":{},"864":{},"865":{},"867":{},"868":{},"869":{},"870":{},"871":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["setconversion",{"_index":341,"name":{"391":{},"870":{}},"parent":{}}],["setkey",{"_index":259,"name":{"300":{}},"parent":{}}],["setparammap",{"_index":685,"name":{"847":{}},"parent":{}}],["setsessiontoken",{"_index":252,"name":{"293":{}},"parent":{}}],["setsignature",{"_index":648,"name":{"786":{}},"parent":{}}],["setstate",{"_index":253,"name":{"294":{}},"parent":{}}],["settings",{"_index":144,"name":{"139":{},"909":{}},"parent":{}}],["settingscomponent",{"_index":531,"name":{"627":{}},"parent":{}}],["settingsmodule",{"_index":535,"name":{"640":{}},"parent":{}}],["settingsroutingmodule",{"_index":528,"name":{"624":{}},"parent":{}}],["settransaction",{"_index":340,"name":{"390":{},"869":{}},"parent":{}}],["sharedmodule",{"_index":615,"name":{"747":{}},"parent":{}}],["sidebarcomponent",{"_index":618,"name":{"750":{}},"parent":{}}],["sidebarstubcomponent",{"_index":697,"name":{"856":{},"937":{}},"parent":{}}],["sign",{"_index":226,"name":{"225":{},"252":{},"268":{},"282":{}},"parent":{}}],["signable",{"_index":240,"name":{"270":{},"920":{}},"parent":{}}],["signature",{"_index":127,"name":{"120":{},"124":{},"265":{},"272":{},"906":{},"921":{}},"parent":{}}],["signer",{"_index":229,"name":{"253":{},"277":{},"401":{},"922":{}},"parent":{"254":{},"270":{},"272":{},"277":{}}}],["signer.pgpsigner",{"_index":231,"name":{},"parent":{"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"271":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"273":{},"274":{},"275":{},"276":{}}}],["signer.signer",{"_index":243,"name":{},"parent":{"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":487,"name":{"559":{},"593":{},"634":{},"658":{},"701":{}},"parent":{}}],["sourcetoken",{"_index":177,"name":{"174":{}},"parent":{}}],["staff",{"_index":152,"name":{"149":{},"911":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":54,"name":{"49":{}},"parent":{}}],["status.component",{"_index":609,"name":{"740":{}},"parent":{"741":{}}}],["status.component.networkstatuscomponent",{"_index":611,"name":{},"parent":{"742":{},"743":{},"744":{},"745":{}}}],["status/network",{"_index":608,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{},"744":{},"745":{}}}],["store",{"_index":199,"name":{"199":{}},"parent":{"200":{},"226":{}}}],["store.mutablekeystore",{"_index":202,"name":{},"parent":{"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{}}}],["store.mutablepgpkeystore",{"_index":228,"name":{},"parent":{"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":{}}}],["stringtovalue",{"_index":650,"name":{"788":{}},"parent":{}}],["strip0x",{"_index":626,"name":{"760":{}},"parent":{}}],["stub",{"_index":680,"name":{"842":{},"849":{},"855":{},"862":{},"866":{},"872":{}},"parent":{"843":{},"850":{},"856":{},"858":{},"860":{},"863":{},"867":{},"873":{}}}],["stub.activatedroutestub",{"_index":682,"name":{},"parent":{"844":{},"845":{},"846":{},"847":{}}}],["stub.footerstubcomponent",{"_index":702,"name":{},"parent":{"861":{}}}],["stub.routerlinkdirectivestub",{"_index":691,"name":{},"parent":{"851":{},"852":{},"853":{},"854":{}}}],["stub.sidebarstubcomponent",{"_index":698,"name":{},"parent":{"857":{}}}],["stub.tokenservicestub",{"_index":706,"name":{},"parent":{"864":{},"865":{}}}],["stub.topbarstubcomponent",{"_index":700,"name":{},"parent":{"859":{}}}],["stub.transactionservicestub",{"_index":710,"name":{},"parent":{"868":{},"869":{},"870":{},"871":{}}}],["stub.userservicestub",{"_index":713,"name":{},"parent":{"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["subject",{"_index":683,"name":{"845":{}},"parent":{}}],["submitted",{"_index":414,"name":{"468":{},"511":{},"574":{},"618":{}},"parent":{}}],["success",{"_index":190,"name":{"190":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":170,"name":{"168":{}},"parent":{}}],["switchwindows",{"_index":418,"name":{"475":{}},"parent":{}}],["symbol",{"_index":171,"name":{"169":{},"197":{}},"parent":{}}],["sync.service",{"_index":265,"name":{"307":{}},"parent":{"308":{}}}],["sync.service.blocksyncservice",{"_index":267,"name":{},"parent":{"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{}}}],["tag",{"_index":156,"name":{"153":{}},"parent":{}}],["tel",{"_index":121,"name":{"115":{}},"parent":{}}],["test",{"_index":677,"name":{"841":{}},"parent":{}}],["testing",{"_index":686,"name":{"848":{}},"parent":{"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{}}}],["testing/activated",{"_index":678,"name":{"842":{}},"parent":{"843":{},"844":{},"845":{},"846":{},"847":{}}}],["testing/router",{"_index":687,"name":{"849":{}},"parent":{"850":{},"851":{},"852":{},"853":{},"854":{}}}],["testing/shared",{"_index":695,"name":{"855":{}},"parent":{"856":{},"857":{},"858":{},"859":{},"860":{},"861":{}}}],["testing/token",{"_index":703,"name":{"862":{}},"parent":{"863":{},"864":{},"865":{}}}],["testing/transaction",{"_index":708,"name":{"866":{}},"parent":{"867":{},"868":{},"869":{},"870":{},"871":{}}}],["testing/user",{"_index":711,"name":{"872":{}},"parent":{"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{}}}],["timestamp",{"_index":191,"name":{"191":{}},"parent":{}}],["title",{"_index":391,"name":{"445":{}},"parent":{}}],["to",{"_index":186,"name":{"183":{},"769":{}},"parent":{}}],["toggle.directive",{"_index":402,"name":{"455":{},"715":{}},"parent":{"456":{},"716":{}}}],["toggle.directive.menutoggledirective",{"_index":584,"name":{},"parent":{"717":{},"718":{}}}],["toggle.directive.passwordtoggledirective",{"_index":404,"name":{},"parent":{"457":{},"458":{},"459":{},"460":{}}}],["toggledisplay",{"_index":419,"name":{"476":{}},"parent":{}}],["togglepasswordvisibility",{"_index":406,"name":{"460":{}},"parent":{}}],["tohex",{"_index":625,"name":{"759":{}},"parent":{}}],["token",{"_index":159,"name":{"156":{},"184":{},"645":{},"660":{},"912":{}},"parent":{}}],["tokendetailscomponent",{"_index":539,"name":{"643":{}},"parent":{}}],["tokenname",{"_index":561,"name":{"676":{}},"parent":{}}],["tokenratiopipe",{"_index":592,"name":{"724":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"356":{},"366":{},"882":{}},"parent":{}}],["tokens",{"_index":320,"name":{"367":{},"659":{}},"parent":{}}],["tokenscomponent",{"_index":547,"name":{"653":{}},"parent":{}}],["tokenservice",{"_index":318,"name":{"363":{},"926":{}},"parent":{}}],["tokenservicestub",{"_index":705,"name":{"863":{},"941":{}},"parent":{}}],["tokenslist",{"_index":321,"name":{"368":{}},"parent":{}}],["tokensmodule",{"_index":552,"name":{"666":{}},"parent":{}}],["tokensroutingmodule",{"_index":544,"name":{"650":{}},"parent":{}}],["tokenssubject",{"_index":322,"name":{"369":{}},"parent":{}}],["tokensymbol",{"_index":450,"name":{"513":{},"557":{},"677":{},"699":{}},"parent":{}}],["topbarcomponent",{"_index":621,"name":{"754":{}},"parent":{}}],["topbarstubcomponent",{"_index":699,"name":{"858":{},"938":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":178,"name":{"175":{},"790":{}},"parent":{}}],["trader",{"_index":179,"name":{"176":{}},"parent":{}}],["traderbloxberglink",{"_index":560,"name":{"675":{}},"parent":{}}],["transaction",{"_index":181,"name":{"179":{},"504":{},"671":{},"696":{},"914":{}},"parent":{}}],["transactiondatasource",{"_index":572,"name":{"691":{}},"parent":{}}],["transactiondetailscomponent",{"_index":556,"name":{"669":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":573,"name":{"692":{}},"parent":{}}],["transactionlist",{"_index":335,"name":{"383":{}},"parent":{}}],["transactions",{"_index":334,"name":{"382":{},"505":{},"695":{}},"parent":{}}],["transactionscomponent",{"_index":570,"name":{"689":{}},"parent":{}}],["transactionsdatasource",{"_index":428,"name":{"483":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":430,"name":{"485":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":429,"name":{"484":{}},"parent":{}}],["transactionservice",{"_index":332,"name":{"380":{},"924":{}},"parent":{}}],["transactionservicestub",{"_index":709,"name":{"867":{},"942":{}},"parent":{}}],["transactionsmodule",{"_index":576,"name":{"709":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":431,"name":{"486":{}},"parent":{}}],["transactionsroutingmodule",{"_index":567,"name":{"686":{}},"parent":{}}],["transactionssubject",{"_index":336,"name":{"384":{}},"parent":{}}],["transactionstype",{"_index":445,"name":{"506":{},"697":{}},"parent":{}}],["transactionstypes",{"_index":447,"name":{"508":{},"698":{}},"parent":{}}],["transactiontablepaginator",{"_index":432,"name":{"487":{}},"parent":{}}],["transactiontablesort",{"_index":433,"name":{"488":{}},"parent":{}}],["transferrequest",{"_index":345,"name":{"395":{}},"parent":{}}],["transform",{"_index":589,"name":{"722":{},"726":{},"730":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":667,"name":{"805":{},"821":{},"837":{}},"parent":{}}],["trustedusers",{"_index":247,"name":{"288":{},"631":{}},"parent":{}}],["trusteduserslist",{"_index":248,"name":{"289":{}},"parent":{}}],["trusteduserssubject",{"_index":249,"name":{"290":{}},"parent":{}}],["tx",{"_index":180,"name":{"177":{},"185":{},"188":{},"764":{},"915":{},"934":{}},"parent":{}}],["txhash",{"_index":192,"name":{"192":{}},"parent":{}}],["txhelper",{"_index":147,"name":{"143":{}},"parent":{}}],["txindex",{"_index":193,"name":{"193":{}},"parent":{}}],["txtoken",{"_index":194,"name":{"194":{},"916":{}},"parent":{}}],["type",{"_index":116,"name":{"109":{},"186":{}},"parent":{}}],["unixdatepipe",{"_index":596,"name":{"728":{}},"parent":{}}],["updatemeta",{"_index":363,"name":{"417":{}},"parent":{}}],["updatesyncable",{"_index":83,"name":{"74":{},"899":{}},"parent":{}}],["url",{"_index":518,"name":{"610":{}},"parent":{}}],["useclass",{"_index":74,"name":{"66":{}},"parent":{}}],["user",{"_index":142,"name":{"137":{},"178":{}},"parent":{}}],["userdatasource",{"_index":434,"name":{"489":{}},"parent":{}}],["userdisplayedcolumns",{"_index":435,"name":{"490":{}},"parent":{}}],["userid",{"_index":157,"name":{"154":{}},"parent":{}}],["userinfo",{"_index":533,"name":{"632":{}},"parent":{}}],["users",{"_index":714,"name":{"875":{}},"parent":{}}],["usersdefaultpagesize",{"_index":436,"name":{"491":{}},"parent":{}}],["userservice",{"_index":347,"name":{"397":{},"925":{}},"parent":{}}],["userservicestub",{"_index":712,"name":{"873":{},"940":{}},"parent":{}}],["userspagesizeoptions",{"_index":437,"name":{"492":{}},"parent":{}}],["usertablepaginator",{"_index":438,"name":{"493":{}},"parent":{}}],["usertablesort",{"_index":439,"name":{"494":{}},"parent":{}}],["v",{"_index":634,"name":{"772":{}},"parent":{}}],["validation",{"_index":79,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["value",{"_index":187,"name":{"187":{},"770":{}},"parent":{}}],["vcard",{"_index":117,"name":{"110":{}},"parent":{}}],["vcardvalidation",{"_index":81,"name":{"72":{},"898":{}},"parent":{}}],["verify",{"_index":239,"name":{"269":{},"283":{}},"parent":{}}],["version",{"_index":122,"name":{"116":{}},"parent":{}}],["viewaccount",{"_index":455,"name":{"521":{},"562":{}},"parent":{}}],["viewrecipient",{"_index":563,"name":{"680":{}},"parent":{}}],["viewsender",{"_index":562,"name":{"679":{}},"parent":{}}],["viewtoken",{"_index":550,"name":{"663":{}},"parent":{}}],["viewtrader",{"_index":564,"name":{"681":{}},"parent":{}}],["viewtransaction",{"_index":454,"name":{"520":{},"703":{}},"parent":{}}],["w3",{"_index":148,"name":{"144":{},"145":{},"910":{}},"parent":{}}],["web3",{"_index":337,"name":{"385":{},"436":{}},"parent":{}}],["web3provider",{"_index":664,"name":{"802":{},"818":{},"834":{}},"parent":{}}],["web3service",{"_index":381,"name":{"435":{},"931":{}},"parent":{}}],["weight",{"_index":168,"name":{"166":{}},"parent":{}}],["wrap",{"_index":369,"name":{"423":{}},"parent":{}}],["write",{"_index":643,"name":{"781":{}},"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","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":64,"name":"rejectBody","url":"modules/app__helpers_global_error_handler.html#rejectbody","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"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":47,"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":48,"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":49,"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":50,"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":51,"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":52,"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":53,"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":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":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":56,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":57,"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":58,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":59,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":60,"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":61,"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":62,"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":63,"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":64,"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":65,"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":66,"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":67,"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":68,"kind":1,"name":"app/_helpers/online-status","url":"modules/app__helpers_online_status.html","classes":"tsd-kind-module"},{"id":69,"kind":64,"name":"checkOnlineStatus","url":"modules/app__helpers_online_status.html#checkonlinestatus","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/online-status"},{"id":70,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":71,"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":72,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":73,"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":74,"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":75,"kind":1,"name":"app/_helpers/sync","url":"modules/app__helpers_sync.html","classes":"tsd-kind-module"},{"id":76,"kind":64,"name":"updateSyncable","url":"modules/app__helpers_sync.html#updatesyncable","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/sync"},{"id":77,"kind":1,"name":"app/_interceptors/connection.interceptor","url":"modules/app__interceptors_connection_interceptor.html","classes":"tsd-kind-module"},{"id":78,"kind":128,"name":"ConnectionInterceptor","url":"classes/app__interceptors_connection_interceptor.connectioninterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/connection.interceptor"},{"id":79,"kind":512,"name":"constructor","url":"classes/app__interceptors_connection_interceptor.connectioninterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/connection.interceptor.ConnectionInterceptor"},{"id":80,"kind":2048,"name":"intercept","url":"classes/app__interceptors_connection_interceptor.connectioninterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/connection.interceptor.ConnectionInterceptor"},{"id":81,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":82,"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":83,"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":84,"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":85,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":86,"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":87,"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":88,"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":89,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":90,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":91,"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":92,"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":93,"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":94,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":95,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":96,"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":97,"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":98,"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":99,"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":100,"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":101,"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":102,"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":103,"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":104,"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":105,"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":106,"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":107,"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":108,"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":109,"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":110,"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":111,"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":112,"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":113,"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":114,"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":115,"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":116,"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":117,"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":118,"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":119,"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":120,"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":121,"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":122,"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":123,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":124,"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":125,"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":126,"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":127,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":128,"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":129,"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":130,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":131,"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":132,"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":133,"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":134,"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":135,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":136,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":137,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":138,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":139,"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":140,"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":141,"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":142,"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":143,"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":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":"registry","url":"classes/app__models_settings.settings.html#registry","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":"txHelper","url":"classes/app__models_settings.settings.html#txhelper","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":150,"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":151,"kind":256,"name":"W3","url":"interfaces/app__models_settings.w3.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/settings"},{"id":152,"kind":1024,"name":"engine","url":"interfaces/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":153,"kind":1024,"name":"provider","url":"interfaces/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":154,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":155,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":156,"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":157,"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":158,"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":159,"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":160,"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":161,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":162,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":163,"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":164,"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":165,"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":166,"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":167,"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":168,"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":169,"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":170,"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":171,"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":172,"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":173,"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":174,"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":175,"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":176,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":177,"kind":256,"name":"Conversion","url":"interfaces/app__models_transaction.conversion.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":178,"kind":1024,"name":"destinationToken","url":"interfaces/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":179,"kind":1024,"name":"fromValue","url":"interfaces/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":180,"kind":1024,"name":"sourceToken","url":"interfaces/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":181,"kind":1024,"name":"toValue","url":"interfaces/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":182,"kind":1024,"name":"trader","url":"interfaces/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":183,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":184,"kind":1024,"name":"user","url":"interfaces/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":185,"kind":256,"name":"Transaction","url":"interfaces/app__models_transaction.transaction.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":186,"kind":1024,"name":"from","url":"interfaces/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":187,"kind":1024,"name":"recipient","url":"interfaces/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":188,"kind":1024,"name":"sender","url":"interfaces/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":189,"kind":1024,"name":"to","url":"interfaces/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":190,"kind":1024,"name":"token","url":"interfaces/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":191,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":192,"kind":1024,"name":"type","url":"interfaces/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":193,"kind":1024,"name":"value","url":"interfaces/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":194,"kind":256,"name":"Tx","url":"interfaces/app__models_transaction.tx.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":195,"kind":1024,"name":"block","url":"interfaces/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":196,"kind":1024,"name":"success","url":"interfaces/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":197,"kind":1024,"name":"timestamp","url":"interfaces/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":198,"kind":1024,"name":"txHash","url":"interfaces/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":199,"kind":1024,"name":"txIndex","url":"interfaces/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":200,"kind":256,"name":"TxToken","url":"interfaces/app__models_transaction.txtoken.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":201,"kind":1024,"name":"address","url":"interfaces/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":202,"kind":1024,"name":"name","url":"interfaces/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":203,"kind":1024,"name":"symbol","url":"interfaces/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":204,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":205,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":206,"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":207,"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":208,"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":209,"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":210,"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":211,"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":212,"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":213,"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":214,"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":215,"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":216,"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":217,"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":218,"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":219,"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":220,"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":221,"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":222,"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":223,"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":224,"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":225,"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":226,"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":227,"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":228,"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":229,"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":230,"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":231,"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":232,"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":233,"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":234,"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":235,"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":236,"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":237,"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":238,"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":239,"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":240,"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":241,"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":242,"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":243,"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":244,"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":245,"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":246,"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":247,"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":248,"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":249,"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":250,"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":251,"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":252,"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":253,"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":254,"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":255,"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":256,"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":257,"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":258,"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":259,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":260,"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":261,"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":262,"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":263,"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":264,"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":265,"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":266,"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":267,"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":268,"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":269,"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":270,"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":271,"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":272,"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":273,"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":274,"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":275,"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":276,"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":277,"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":278,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":279,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":280,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":281,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":282,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":283,"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":284,"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":285,"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":286,"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":287,"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":288,"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":289,"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":290,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":291,"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":292,"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":293,"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":294,"kind":1024,"name":"trustedUsers","url":"classes/app__services_auth_service.authservice.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":295,"kind":1024,"name":"trustedUsersList","url":"classes/app__services_auth_service.authservice.html#trusteduserslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/auth.service.AuthService"},{"id":296,"kind":1024,"name":"trustedUsersSubject","url":"classes/app__services_auth_service.authservice.html#trusteduserssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":297,"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":298,"kind":2048,"name":"getSessionToken","url":"classes/app__services_auth_service.authservice.html#getsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":299,"kind":2048,"name":"setSessionToken","url":"classes/app__services_auth_service.authservice.html#setsessiontoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":300,"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":301,"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":302,"kind":2048,"name":"sendSignedChallenge","url":"classes/app__services_auth_service.authservice.html#sendsignedchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":303,"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":304,"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":305,"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":306,"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":307,"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":308,"kind":2048,"name":"addTrustedUser","url":"classes/app__services_auth_service.authservice.html#addtrusteduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":309,"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":310,"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":311,"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":312,"kind":2048,"name":"getPrivateKeyInfo","url":"classes/app__services_auth_service.authservice.html#getprivatekeyinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":313,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":314,"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":315,"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":316,"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":317,"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":318,"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":319,"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":320,"kind":2048,"name":"newEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":321,"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":322,"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":323,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":324,"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":325,"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":326,"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":327,"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":328,"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":329,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":330,"kind":1,"name":"app/_services/keystore.service","url":"modules/app__services_keystore_service.html","classes":"tsd-kind-module"},{"id":331,"kind":128,"name":"KeystoreService","url":"classes/app__services_keystore_service.keystoreservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/keystore.service"},{"id":332,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_keystore_service.keystoreservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":333,"kind":2048,"name":"getKeystore","url":"classes/app__services_keystore_service.keystoreservice.html#getkeystore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/keystore.service.KeystoreService"},{"id":334,"kind":512,"name":"constructor","url":"classes/app__services_keystore_service.keystoreservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/keystore.service.KeystoreService"},{"id":335,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":336,"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":337,"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":338,"kind":1024,"name":"areaNames","url":"classes/app__services_location_service.locationservice.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":339,"kind":1024,"name":"areaNamesList","url":"classes/app__services_location_service.locationservice.html#areanameslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":340,"kind":1024,"name":"areaNamesSubject","url":"classes/app__services_location_service.locationservice.html#areanamessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":341,"kind":1024,"name":"areaTypes","url":"classes/app__services_location_service.locationservice.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":342,"kind":1024,"name":"areaTypesList","url":"classes/app__services_location_service.locationservice.html#areatypeslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/location.service.LocationService"},{"id":343,"kind":1024,"name":"areaTypesSubject","url":"classes/app__services_location_service.locationservice.html#areatypessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":344,"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":345,"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":346,"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":347,"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":348,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":349,"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":350,"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":351,"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":352,"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":353,"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":354,"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":355,"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":356,"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":357,"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":358,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":359,"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":360,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":361,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":362,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_registry_service.registryservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":363,"kind":1024,"name":"accountRegistry","url":"classes/app__services_registry_service.registryservice.html#accountregistry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":364,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":365,"kind":2048,"name":"getTokenRegistry","url":"classes/app__services_registry_service.registryservice.html#gettokenregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":366,"kind":2048,"name":"getAccountRegistry","url":"classes/app__services_registry_service.registryservice.html#getaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/registry.service.RegistryService"},{"id":367,"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":368,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":369,"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":370,"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":371,"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":372,"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":373,"kind":1024,"name":"tokens","url":"classes/app__services_token_service.tokenservice.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":374,"kind":1024,"name":"tokensList","url":"classes/app__services_token_service.tokenservice.html#tokenslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/token.service.TokenService"},{"id":375,"kind":1024,"name":"tokensSubject","url":"classes/app__services_token_service.tokenservice.html#tokenssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":376,"kind":1024,"name":"load","url":"classes/app__services_token_service.tokenservice.html#load","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":377,"kind":2048,"name":"init","url":"classes/app__services_token_service.tokenservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":378,"kind":2048,"name":"addToken","url":"classes/app__services_token_service.tokenservice.html#addtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":379,"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":380,"kind":2048,"name":"getTokenByAddress","url":"classes/app__services_token_service.tokenservice.html#gettokenbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":381,"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":382,"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":383,"kind":2048,"name":"getTokenName","url":"classes/app__services_token_service.tokenservice.html#gettokenname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":384,"kind":2048,"name":"getTokenSymbol","url":"classes/app__services_token_service.tokenservice.html#gettokensymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":385,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":386,"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":387,"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":388,"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":389,"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":390,"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":391,"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":392,"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":393,"kind":2048,"name":"init","url":"classes/app__services_transaction_service.transactionservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":394,"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":395,"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":396,"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":397,"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":398,"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":399,"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":400,"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":401,"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":402,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"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":410,"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":411,"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":412,"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":413,"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":414,"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":415,"kind":1024,"name":"categories","url":"classes/app__services_user_service.userservice.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":416,"kind":1024,"name":"categoriesList","url":"classes/app__services_user_service.userservice.html#categorieslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":417,"kind":1024,"name":"categoriesSubject","url":"classes/app__services_user_service.userservice.html#categoriessubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":418,"kind":2048,"name":"init","url":"classes/app__services_user_service.userservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"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":428,"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":429,"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":430,"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":431,"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":432,"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":433,"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":434,"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":435,"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":436,"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":437,"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":438,"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":439,"kind":2048,"name":"addAccount","url":"classes/app__services_user_service.userservice.html#addaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":440,"kind":1,"name":"app/_services/web3.service","url":"modules/app__services_web3_service.html","classes":"tsd-kind-module"},{"id":441,"kind":128,"name":"Web3Service","url":"classes/app__services_web3_service.web3service.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/web3.service"},{"id":442,"kind":1024,"name":"web3","url":"classes/app__services_web3_service.web3service.html#web3","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":443,"kind":2048,"name":"getInstance","url":"classes/app__services_web3_service.web3service.html#getinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_services/web3.service.Web3Service"},{"id":444,"kind":512,"name":"constructor","url":"classes/app__services_web3_service.web3service.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/web3.service.Web3Service"},{"id":445,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":446,"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":447,"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":448,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":449,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":450,"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":451,"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":452,"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":453,"kind":1024,"name":"url","url":"classes/app_app_component.appcomponent.html#url","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":454,"kind":1024,"name":"accountDetailsRegex","url":"classes/app_app_component.appcomponent.html#accountdetailsregex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":455,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":456,"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":457,"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":458,"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":459,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":460,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":461,"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":462,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":463,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":464,"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":465,"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":466,"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":467,"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":468,"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":469,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":470,"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":471,"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":472,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":473,"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":474,"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":475,"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":476,"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":477,"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":478,"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":479,"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":480,"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":481,"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":482,"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":483,"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":484,"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":485,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":486,"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":487,"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":488,"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":489,"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":490,"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":491,"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":492,"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":493,"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":494,"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":495,"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":496,"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":497,"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":498,"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":499,"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":500,"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":501,"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":502,"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":503,"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":504,"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":505,"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":506,"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":507,"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":508,"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":509,"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":510,"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":511,"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":512,"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":513,"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":514,"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":515,"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":516,"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":517,"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":518,"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":519,"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":520,"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":521,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":522,"kind":1024,"name":"category","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":523,"kind":1024,"name":"area","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":524,"kind":1024,"name":"areaType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":525,"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":526,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":527,"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":528,"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":529,"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":530,"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":531,"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":532,"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":533,"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":534,"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":535,"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":536,"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":537,"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":538,"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":539,"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":540,"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":541,"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":542,"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":543,"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":544,"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":545,"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":546,"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":547,"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":548,"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":549,"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":550,"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":551,"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":552,"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":553,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":554,"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":555,"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":556,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":557,"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":558,"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":559,"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":560,"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":561,"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":562,"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":563,"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":564,"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":565,"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":566,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":567,"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":568,"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":569,"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":570,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":571,"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":572,"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":573,"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":574,"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":575,"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":576,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":577,"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":578,"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":579,"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":580,"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":581,"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":582,"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":583,"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":584,"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":585,"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":586,"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":587,"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":588,"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":589,"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":590,"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":591,"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":592,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":593,"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":594,"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":595,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":596,"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":597,"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":598,"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":599,"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":600,"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":601,"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":602,"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":603,"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":604,"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":605,"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":606,"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":607,"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":608,"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":609,"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":610,"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":611,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":612,"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":613,"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":614,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":615,"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":616,"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":617,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":618,"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":619,"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":620,"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":621,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":622,"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":623,"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":624,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":625,"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":626,"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":627,"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":628,"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":629,"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":630,"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":631,"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":632,"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":633,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":634,"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":635,"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":636,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":637,"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":638,"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":639,"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":640,"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":641,"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":642,"kind":1024,"name":"userInfo","url":"classes/app_pages_settings_settings_component.settingscomponent.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":643,"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":644,"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":645,"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":646,"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":647,"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":648,"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":649,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":650,"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":651,"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":652,"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":653,"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":654,"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":655,"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":656,"kind":1024,"name":"closeWindow","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":657,"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":658,"kind":2048,"name":"close","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":659,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":660,"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":661,"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":662,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":663,"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":664,"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":665,"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":666,"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":667,"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":668,"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":669,"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":670,"kind":1024,"name":"token","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":671,"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":672,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":673,"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":674,"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":675,"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":676,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":677,"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":678,"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":679,"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":680,"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":681,"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":682,"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":683,"kind":1024,"name":"closeWindow","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#closewindow","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":684,"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":685,"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":686,"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":687,"kind":1024,"name":"tokenName","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokenname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":688,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":689,"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":690,"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":691,"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":692,"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":693,"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":694,"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":695,"kind":2048,"name":"close","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":696,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":697,"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":698,"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":699,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":700,"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":701,"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":702,"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":703,"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":704,"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":705,"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":706,"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":707,"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":708,"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":709,"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":710,"kind":1024,"name":"tokenSymbol","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#tokensymbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":711,"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":712,"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":713,"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":714,"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":715,"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":716,"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":717,"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":718,"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":719,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":720,"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":721,"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":722,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":723,"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":724,"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":725,"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":726,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":727,"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":728,"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":729,"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":730,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":731,"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":732,"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":733,"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":734,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":735,"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":736,"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":737,"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":738,"kind":1,"name":"app/shared/_pipes/unix-date.pipe","url":"modules/app_shared__pipes_unix_date_pipe.html","classes":"tsd-kind-module"},{"id":739,"kind":128,"name":"UnixDatePipe","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/unix-date.pipe"},{"id":740,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":741,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_unix_date_pipe.unixdatepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/unix-date.pipe.UnixDatePipe"},{"id":742,"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":743,"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":744,"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":745,"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":746,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":747,"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":748,"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":749,"kind":1024,"name":"currentYear","url":"classes/app_shared_footer_footer_component.footercomponent.html#currentyear","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":750,"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":751,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":752,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":753,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":754,"kind":1024,"name":"online","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#online","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":755,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":756,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":757,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":758,"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":759,"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":760,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":761,"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":762,"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":763,"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":764,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":765,"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":766,"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":767,"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":768,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":769,"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":770,"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":771,"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":772,"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":773,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":774,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":775,"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":776,"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":777,"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":778,"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":779,"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":780,"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":781,"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":782,"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":783,"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":784,"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":785,"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":786,"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":787,"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":788,"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":789,"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":790,"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":791,"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":792,"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":793,"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":794,"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":795,"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":796,"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":797,"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":798,"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":799,"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":800,"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":801,"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":802,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":803,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":804,"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":805,"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":806,"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":807,"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":808,"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":809,"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":810,"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":811,"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":812,"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":813,"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":814,"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":815,"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":816,"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":817,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_dev.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":818,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":819,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":820,"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":821,"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":822,"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":823,"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":824,"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":825,"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":826,"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":827,"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":828,"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":829,"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":830,"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":831,"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":832,"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":833,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment_prod.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":834,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":835,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":836,"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":837,"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":838,"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":839,"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":840,"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":841,"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":842,"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":843,"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":844,"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":845,"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":846,"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":847,"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":848,"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":849,"kind":1024,"name":"dashboardUrl","url":"modules/environments_environment.html#environment.__type.dashboardurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":850,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":851,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":852,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":853,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":854,"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":855,"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":856,"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":857,"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":858,"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":859,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":860,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":861,"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":862,"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":863,"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":864,"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":865,"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":866,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":867,"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":868,"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":869,"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":870,"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":871,"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":872,"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":873,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":874,"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":875,"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":876,"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":877,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":878,"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":879,"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":880,"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":881,"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":882,"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":883,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":884,"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":885,"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":886,"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":887,"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":888,"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":889,"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":890,"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":891,"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":892,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":893,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":894,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":895,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":896,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":897,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":898,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":899,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":900,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":901,"kind":16777216,"name":"rejectBody","url":"modules/app__helpers.html#rejectbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":902,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":903,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":904,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":905,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":906,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":907,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":908,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":909,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":910,"kind":16777216,"name":"updateSyncable","url":"modules/app__helpers.html#updatesyncable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":911,"kind":16777216,"name":"checkOnlineStatus","url":"modules/app__helpers.html#checkonlinestatus","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":912,"kind":16777216,"name":"ConnectionInterceptor","url":"modules/app__interceptors.html#connectioninterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":913,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":914,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":915,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":916,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":917,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":918,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":919,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":920,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":921,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":922,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":923,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":924,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":925,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":926,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":927,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":928,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":929,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":930,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":931,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":932,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":933,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":934,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":935,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":936,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":937,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":938,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":939,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":940,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":941,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":942,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":943,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":944,"kind":16777216,"name":"Web3Service","url":"modules/app__services.html#web3service","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":945,"kind":16777216,"name":"KeystoreService","url":"modules/app__services.html#keystoreservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":946,"kind":16777216,"name":"RegistryService","url":"modules/app__services.html#registryservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":947,"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":948,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":949,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":950,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":951,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":952,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":953,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":954,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":955,"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.948]],["parent/0",[]],["name/1",[1,60.948]],["parent/1",[0,6.788]],["name/2",[2,25.626]],["parent/2",[3,5.391]],["name/3",[4,60.948]],["parent/3",[3,5.391]],["name/4",[5,60.948]],["parent/4",[3,5.391]],["name/5",[6,60.948]],["parent/5",[3,5.391]],["name/6",[7,66.182]],["parent/6",[3,5.391]],["name/7",[8,66.182]],["parent/7",[3,5.391]],["name/8",[9,66.182]],["parent/8",[3,5.391]],["name/9",[10,66.182]],["parent/9",[3,5.391]],["name/10",[11,57.5]],["parent/10",[]],["name/11",[12,33.896,13,35.633]],["parent/11",[]],["name/12",[14,54.924]],["parent/12",[12,3.971,13,4.175]],["name/13",[2,25.626]],["parent/13",[12,3.971,15,4.175]],["name/14",[4,60.948]],["parent/14",[12,3.971,15,4.175]],["name/15",[5,60.948]],["parent/15",[12,3.971,15,4.175]],["name/16",[6,60.948]],["parent/16",[12,3.971,15,4.175]],["name/17",[16,66.182]],["parent/17",[12,3.971,15,4.175]],["name/18",[17,66.182]],["parent/18",[12,3.971,15,4.175]],["name/19",[18,66.182]],["parent/19",[12,3.971,15,4.175]],["name/20",[19,60.948]],["parent/20",[]],["name/21",[20,60.948]],["parent/21",[19,6.788]],["name/22",[2,25.626]],["parent/22",[21,6.788]],["name/23",[22,60.948]],["parent/23",[21,6.788]],["name/24",[23,57.5]],["parent/24",[]],["name/25",[24,60.948]],["parent/25",[]],["name/26",[25,60.948]],["parent/26",[24,6.788]],["name/27",[2,25.626]],["parent/27",[26,6.788]],["name/28",[22,60.948]],["parent/28",[26,6.788]],["name/29",[27,43.707,28,43.707]],["parent/29",[]],["name/30",[29,60.948]],["parent/30",[27,5.121,28,5.121]],["name/31",[30,43.707,31,43.707]],["parent/31",[]],["name/32",[32,60.948]],["parent/32",[30,5.121,31,5.121]],["name/33",[33,25.156,34,19.057,35,25.156,36,22.758]],["parent/33",[]],["name/34",[37,60.948]],["parent/34",[33,3.095,34,2.344,35,3.095,36,2.8]],["name/35",[2,25.626]],["parent/35",[33,3.095,34,2.344,35,3.095,38,3.434]],["name/36",[39,66.182]],["parent/36",[33,3.095,34,2.344,35,3.095,38,3.434]],["name/37",[40,60.948]],["parent/37",[]],["name/38",[41,60.948]],["parent/38",[40,6.788]],["name/39",[42,66.182]],["parent/39",[43,6.404]],["name/40",[44,66.182]],["parent/40",[43,6.404]],["name/41",[2,25.626]],["parent/41",[43,6.404]],["name/42",[45,43.707,46,39.387]],["parent/42",[]],["name/43",[47,60.948]],["parent/43",[45,5.121,46,4.615]],["name/44",[34,23.26,48,24.85,49,30.702]],["parent/44",[]],["name/45",[50,60.948]],["parent/45",[34,2.807,48,2.999,49,3.705]],["name/46",[51,60.948]],["parent/46",[34,2.807,48,2.999,49,3.705]],["name/47",[52,43.666]],["parent/47",[34,2.807,48,2.999,53,3.879]],["name/48",[2,25.626]],["parent/48",[34,2.807,48,2.999,53,3.879]],["name/49",[54,57.5]],["parent/49",[34,2.807,48,2.999,53,3.879]],["name/50",[55,60.948]],["parent/50",[34,2.807,48,2.999,49,3.705]],["name/51",[2,25.626]],["parent/51",[34,2.807,48,2.999,56,3.566]],["name/52",[57,66.182]],["parent/52",[34,2.807,48,2.999,56,3.566]],["name/53",[58,66.182]],["parent/53",[34,2.807,48,2.999,56,3.566]],["name/54",[59,66.182]],["parent/54",[34,2.807,48,2.999,56,3.566]],["name/55",[60,66.182]],["parent/55",[34,2.807,48,2.999,56,3.566]],["name/56",[61,43.707,62,43.707]],["parent/56",[]],["name/57",[63,60.948]],["parent/57",[61,5.121,62,5.121]],["name/58",[64,41.007]],["parent/58",[]],["name/59",[65,33.896,66,41.234]],["parent/59",[]],["name/60",[67,60.948]],["parent/60",[65,3.971,66,4.831]],["name/61",[2,25.626]],["parent/61",[65,3.971,68,5.121]],["name/62",[69,52.868]],["parent/62",[65,3.971,68,5.121]],["name/63",[70,60.948]],["parent/63",[65,3.971,66,4.831]],["name/64",[52,43.666]],["parent/64",[65,3.971,71,5.561]],["name/65",[72,66.182]],["parent/65",[65,3.971,73,4.831]],["name/66",[74,66.182]],["parent/66",[65,3.971,73,4.831]],["name/67",[75,66.182]],["parent/67",[65,3.971,73,4.831]],["name/68",[54,41.234,76,43.707]],["parent/68",[]],["name/69",[77,60.948]],["parent/69",[54,4.831,76,5.121]],["name/70",[46,39.387,78,43.707]],["parent/70",[]],["name/71",[79,60.948]],["parent/71",[46,4.615,78,5.121]],["name/72",[80,41.234,81,41.234]],["parent/72",[]],["name/73",[82,60.948]],["parent/73",[80,4.831,81,4.831]],["name/74",[83,60.948]],["parent/74",[80,4.831,81,4.831]],["name/75",[84,60.948]],["parent/75",[]],["name/76",[85,60.948]],["parent/76",[84,6.788]],["name/77",[86,60.948]],["parent/77",[]],["name/78",[87,60.948]],["parent/78",[86,6.788]],["name/79",[2,25.626]],["parent/79",[88,6.788]],["name/80",[69,52.868]],["parent/80",[88,6.788]],["name/81",[89,60.948]],["parent/81",[]],["name/82",[90,60.948]],["parent/82",[89,6.788]],["name/83",[2,25.626]],["parent/83",[91,6.788]],["name/84",[69,52.868]],["parent/84",[91,6.788]],["name/85",[92,39.387,93,43.707]],["parent/85",[]],["name/86",[94,60.948]],["parent/86",[92,4.615,93,5.121]],["name/87",[2,25.626]],["parent/87",[92,4.615,95,5.121]],["name/88",[69,52.868]],["parent/88",[92,4.615,95,5.121]],["name/89",[96,52.868]],["parent/89",[]],["name/90",[97,60.948]],["parent/90",[]],["name/91",[98,60.948]],["parent/91",[97,6.788]],["name/92",[2,25.626]],["parent/92",[99,6.788]],["name/93",[69,52.868]],["parent/93",[99,6.788]],["name/94",[100,51.156]],["parent/94",[]],["name/95",[101,60.948]],["parent/95",[100,5.698]],["name/96",[102,66.182]],["parent/96",[103,4.863]],["name/97",[104,60.948]],["parent/97",[103,4.863]],["name/98",[105,60.948]],["parent/98",[103,4.863]],["name/99",[106,66.182]],["parent/99",[103,4.863]],["name/100",[107,66.182]],["parent/100",[103,4.863]],["name/101",[108,66.182]],["parent/101",[103,4.863]],["name/102",[52,43.666]],["parent/102",[103,4.863]],["name/103",[109,66.182]],["parent/103",[110,4.951]],["name/104",[52,43.666]],["parent/104",[110,4.951]],["name/105",[111,66.182]],["parent/105",[112,6.788]],["name/106",[113,66.182]],["parent/106",[112,6.788]],["name/107",[114,66.182]],["parent/107",[110,4.951]],["name/108",[115,66.182]],["parent/108",[110,4.951]],["name/109",[116,66.182]],["parent/109",[103,4.863]],["name/110",[52,43.666]],["parent/110",[103,4.863]],["name/111",[117,60.948]],["parent/111",[110,4.951]],["name/112",[118,66.182]],["parent/112",[110,4.951]],["name/113",[119,66.182]],["parent/113",[110,4.951]],["name/114",[120,66.182]],["parent/114",[103,4.863]],["name/115",[121,60.948]],["parent/115",[103,4.863]],["name/116",[122,66.182]],["parent/116",[103,4.863]],["name/117",[52,43.666]],["parent/117",[103,4.863]],["name/118",[123,60.948]],["parent/118",[110,4.951]],["name/119",[124,66.182]],["parent/119",[110,4.951]],["name/120",[125,66.182]],["parent/120",[110,4.951]],["name/121",[126,66.182]],["parent/121",[110,4.951]],["name/122",[127,66.182]],["parent/122",[110,4.951]],["name/123",[128,60.948]],["parent/123",[100,5.698]],["name/124",[129,52.868]],["parent/124",[130,6.404]],["name/125",[131,54.924]],["parent/125",[130,6.404]],["name/126",[132,51.156]],["parent/126",[130,6.404]],["name/127",[133,60.948]],["parent/127",[100,5.698]],["name/128",[131,54.924]],["parent/128",[134,6.788]],["name/129",[135,66.182]],["parent/129",[134,6.788]],["name/130",[132,51.156]],["parent/130",[100,5.698]],["name/131",[136,57.5]],["parent/131",[137,6.117]],["name/132",[129,52.868]],["parent/132",[137,6.117]],["name/133",[138,57.5]],["parent/133",[137,6.117]],["name/134",[139,54.924]],["parent/134",[137,6.117]],["name/135",[140,60.948]],["parent/135",[100,5.698]],["name/136",[141,42.25]],["parent/136",[]],["name/137",[142,60.948]],["parent/137",[]],["name/138",[143,54.924]],["parent/138",[142,6.788]],["name/139",[143,54.924]],["parent/139",[144,5.888]],["name/140",[145,66.182]],["parent/140",[144,5.888]],["name/141",[131,54.924]],["parent/141",[144,5.888]],["name/142",[146,66.182]],["parent/142",[144,5.888]],["name/143",[147,60.948]],["parent/143",[144,5.888]],["name/144",[148,57.5]],["parent/144",[]],["name/145",[149,60.948]],["parent/145",[148,6.404]],["name/146",[2,25.626]],["parent/146",[150,5.888]],["name/147",[13,49.689]],["parent/147",[150,5.888]],["name/148",[151,66.182]],["parent/148",[150,5.888]],["name/149",[152,66.182]],["parent/149",[150,5.888]],["name/150",[153,57.5]],["parent/150",[150,5.888]],["name/151",[153,57.5]],["parent/151",[148,6.404]],["name/152",[139,54.924]],["parent/152",[154,6.788]],["name/153",[155,66.182]],["parent/153",[154,6.788]],["name/154",[156,60.948]],["parent/154",[]],["name/155",[157,60.948]],["parent/155",[156,6.788]],["name/156",[158,66.182]],["parent/156",[159,5.888]],["name/157",[123,60.948]],["parent/157",[159,5.888]],["name/158",[160,57.5]],["parent/158",[159,5.888]],["name/159",[161,66.182]],["parent/159",[159,5.888]],["name/160",[162,66.182]],["parent/160",[159,5.888]],["name/161",[163,60.948]],["parent/161",[]],["name/162",[164,52.868]],["parent/162",[163,6.788]],["name/163",[165,60.948]],["parent/163",[166,5.264]],["name/164",[167,66.182]],["parent/164",[166,5.264]],["name/165",[160,57.5]],["parent/165",[166,5.264]],["name/166",[168,66.182]],["parent/166",[166,5.264]],["name/167",[169,66.182]],["parent/167",[166,5.264]],["name/168",[170,66.182]],["parent/168",[166,5.264]],["name/169",[52,43.666]],["parent/169",[166,5.264]],["name/170",[171,66.182]],["parent/170",[172,6.788]],["name/171",[52,43.666]],["parent/171",[172,6.788]],["name/172",[173,66.182]],["parent/172",[174,6.788]],["name/173",[104,60.948]],["parent/173",[174,6.788]],["name/174",[175,66.182]],["parent/174",[166,5.264]],["name/175",[176,60.948]],["parent/175",[166,5.264]],["name/176",[177,52.868]],["parent/176",[]],["name/177",[178,60.948]],["parent/177",[177,5.888]],["name/178",[179,66.182]],["parent/178",[180,5.534]],["name/179",[181,66.182]],["parent/179",[180,5.534]],["name/180",[182,66.182]],["parent/180",[180,5.534]],["name/181",[183,60.948]],["parent/181",[180,5.534]],["name/182",[184,66.182]],["parent/182",[180,5.534]],["name/183",[185,51.156]],["parent/183",[180,5.534]],["name/184",[147,60.948]],["parent/184",[180,5.534]],["name/185",[186,52.868]],["parent/185",[177,5.888]],["name/186",[187,66.182]],["parent/186",[188,5.391]],["name/187",[189,66.182]],["parent/187",[188,5.391]],["name/188",[190,66.182]],["parent/188",[188,5.391]],["name/189",[191,60.948]],["parent/189",[188,5.391]],["name/190",[164,52.868]],["parent/190",[188,5.391]],["name/191",[185,51.156]],["parent/191",[188,5.391]],["name/192",[121,60.948]],["parent/192",[188,5.391]],["name/193",[192,60.948]],["parent/193",[188,5.391]],["name/194",[185,51.156]],["parent/194",[177,5.888]],["name/195",[193,66.182]],["parent/195",[194,5.888]],["name/196",[195,66.182]],["parent/196",[194,5.888]],["name/197",[196,66.182]],["parent/197",[194,5.888]],["name/198",[197,66.182]],["parent/198",[194,5.888]],["name/199",[198,66.182]],["parent/199",[194,5.888]],["name/200",[199,60.948]],["parent/200",[177,5.888]],["name/201",[165,60.948]],["parent/201",[200,6.404]],["name/202",[160,57.5]],["parent/202",[200,6.404]],["name/203",[176,60.948]],["parent/203",[200,6.404]],["name/204",[201,49.689]],["parent/204",[]],["name/205",[202,13.836,203,16.415,204,32.142]],["parent/205",[]],["name/206",[205,54.924]],["parent/206",[202,1.67,203,1.981,204,3.879]],["name/207",[206,60.948]],["parent/207",[202,1.67,203,1.981,207,2.506]],["name/208",[208,60.948]],["parent/208",[202,1.67,203,1.981,207,2.506]],["name/209",[209,60.948]],["parent/209",[202,1.67,203,1.981,207,2.506]],["name/210",[210,60.948]],["parent/210",[202,1.67,203,1.981,207,2.506]],["name/211",[211,60.948]],["parent/211",[202,1.67,203,1.981,207,2.506]],["name/212",[212,57.5]],["parent/212",[202,1.67,203,1.981,207,2.506]],["name/213",[213,60.948]],["parent/213",[202,1.67,203,1.981,207,2.506]],["name/214",[214,60.948]],["parent/214",[202,1.67,203,1.981,207,2.506]],["name/215",[215,60.948]],["parent/215",[202,1.67,203,1.981,207,2.506]],["name/216",[216,60.948]],["parent/216",[202,1.67,203,1.981,207,2.506]],["name/217",[217,60.948]],["parent/217",[202,1.67,203,1.981,207,2.506]],["name/218",[218,57.5]],["parent/218",[202,1.67,203,1.981,207,2.506]],["name/219",[219,60.948]],["parent/219",[202,1.67,203,1.981,207,2.506]],["name/220",[220,60.948]],["parent/220",[202,1.67,203,1.981,207,2.506]],["name/221",[221,60.948]],["parent/221",[202,1.67,203,1.981,207,2.506]],["name/222",[222,60.948]],["parent/222",[202,1.67,203,1.981,207,2.506]],["name/223",[223,60.948]],["parent/223",[202,1.67,203,1.981,207,2.506]],["name/224",[224,60.948]],["parent/224",[202,1.67,203,1.981,207,2.506]],["name/225",[225,60.948]],["parent/225",[202,1.67,203,1.981,207,2.506]],["name/226",[226,60.948]],["parent/226",[202,1.67,203,1.981,207,2.506]],["name/227",[227,60.948]],["parent/227",[202,1.67,203,1.981,207,2.506]],["name/228",[228,60.948]],["parent/228",[202,1.67,203,1.981,207,2.506]],["name/229",[229,60.948]],["parent/229",[202,1.67,203,1.981,207,2.506]],["name/230",[230,60.948]],["parent/230",[202,1.67,203,1.981,207,2.506]],["name/231",[231,54.924]],["parent/231",[202,1.67,203,1.981,207,2.506]],["name/232",[232,60.948]],["parent/232",[202,1.67,203,1.981,204,3.879]],["name/233",[2,25.626]],["parent/233",[202,1.67,203,1.981,233,2.479]],["name/234",[206,60.948]],["parent/234",[202,1.67,203,1.981,233,2.479]],["name/235",[208,60.948]],["parent/235",[202,1.67,203,1.981,233,2.479]],["name/236",[209,60.948]],["parent/236",[202,1.67,203,1.981,233,2.479]],["name/237",[210,60.948]],["parent/237",[202,1.67,203,1.981,233,2.479]],["name/238",[211,60.948]],["parent/238",[202,1.67,203,1.981,233,2.479]],["name/239",[212,57.5]],["parent/239",[202,1.67,203,1.981,233,2.479]],["name/240",[213,60.948]],["parent/240",[202,1.67,203,1.981,233,2.479]],["name/241",[214,60.948]],["parent/241",[202,1.67,203,1.981,233,2.479]],["name/242",[215,60.948]],["parent/242",[202,1.67,203,1.981,233,2.479]],["name/243",[216,60.948]],["parent/243",[202,1.67,203,1.981,233,2.479]],["name/244",[217,60.948]],["parent/244",[202,1.67,203,1.981,233,2.479]],["name/245",[218,57.5]],["parent/245",[202,1.67,203,1.981,233,2.479]],["name/246",[219,60.948]],["parent/246",[202,1.67,203,1.981,233,2.479]],["name/247",[220,60.948]],["parent/247",[202,1.67,203,1.981,233,2.479]],["name/248",[221,60.948]],["parent/248",[202,1.67,203,1.981,233,2.479]],["name/249",[222,60.948]],["parent/249",[202,1.67,203,1.981,233,2.479]],["name/250",[223,60.948]],["parent/250",[202,1.67,203,1.981,233,2.479]],["name/251",[224,60.948]],["parent/251",[202,1.67,203,1.981,233,2.479]],["name/252",[225,60.948]],["parent/252",[202,1.67,203,1.981,233,2.479]],["name/253",[226,60.948]],["parent/253",[202,1.67,203,1.981,233,2.479]],["name/254",[227,60.948]],["parent/254",[202,1.67,203,1.981,233,2.479]],["name/255",[228,60.948]],["parent/255",[202,1.67,203,1.981,233,2.479]],["name/256",[229,60.948]],["parent/256",[202,1.67,203,1.981,233,2.479]],["name/257",[230,60.948]],["parent/257",[202,1.67,203,1.981,233,2.479]],["name/258",[231,54.924]],["parent/258",[202,1.67,203,1.981,233,2.479]],["name/259",[202,17.749,234,34.714]],["parent/259",[]],["name/260",[235,60.948]],["parent/260",[202,2.08,234,4.067]],["name/261",[2,25.626]],["parent/261",[202,2.08,236,3.55]],["name/262",[136,57.5]],["parent/262",[202,2.08,236,3.55]],["name/263",[237,66.182]],["parent/263",[202,2.08,236,3.55]],["name/264",[139,54.924]],["parent/264",[202,2.08,236,3.55]],["name/265",[238,60.948]],["parent/265",[202,2.08,236,3.55]],["name/266",[239,57.5]],["parent/266",[202,2.08,236,3.55]],["name/267",[240,60.948]],["parent/267",[202,2.08,236,3.55]],["name/268",[52,43.666]],["parent/268",[202,2.08,236,3.55]],["name/269",[241,60.948]],["parent/269",[202,2.08,236,3.55]],["name/270",[52,43.666]],["parent/270",[202,2.08,236,3.55]],["name/271",[132,51.156]],["parent/271",[202,2.08,236,3.55]],["name/272",[242,60.948]],["parent/272",[202,2.08,236,3.55]],["name/273",[243,60.948]],["parent/273",[202,2.08,236,3.55]],["name/274",[231,54.924]],["parent/274",[202,2.08,236,3.55]],["name/275",[244,60.948]],["parent/275",[202,2.08,236,3.55]],["name/276",[245,60.948]],["parent/276",[202,2.08,234,4.067]],["name/277",[138,57.5]],["parent/277",[202,2.08,246,5.561]],["name/278",[132,51.156]],["parent/278",[202,2.08,234,4.067]],["name/279",[136,57.5]],["parent/279",[202,2.08,247,4.615]],["name/280",[129,52.868]],["parent/280",[202,2.08,247,4.615]],["name/281",[138,57.5]],["parent/281",[202,2.08,247,4.615]],["name/282",[139,54.924]],["parent/282",[202,2.08,247,4.615]],["name/283",[234,48.407]],["parent/283",[202,2.08,234,4.067]],["name/284",[242,60.948]],["parent/284",[202,2.08,248,4.298]],["name/285",[240,60.948]],["parent/285",[202,2.08,248,4.298]],["name/286",[241,60.948]],["parent/286",[202,2.08,248,4.298]],["name/287",[243,60.948]],["parent/287",[202,2.08,248,4.298]],["name/288",[231,54.924]],["parent/288",[202,2.08,248,4.298]],["name/289",[244,60.948]],["parent/289",[202,2.08,248,4.298]],["name/290",[249,60.948]],["parent/290",[]],["name/291",[250,60.948]],["parent/291",[249,6.788]],["name/292",[2,25.626]],["parent/292",[251,4.332]],["name/293",[205,54.924]],["parent/293",[251,4.332]],["name/294",[252,60.948]],["parent/294",[251,4.332]],["name/295",[253,66.182]],["parent/295",[251,4.332]],["name/296",[254,66.182]],["parent/296",[251,4.332]],["name/297",[255,54.924]],["parent/297",[251,4.332]],["name/298",[256,66.182]],["parent/298",[251,4.332]],["name/299",[257,66.182]],["parent/299",[251,4.332]],["name/300",[258,66.182]],["parent/300",[251,4.332]],["name/301",[259,66.182]],["parent/301",[251,4.332]],["name/302",[260,66.182]],["parent/302",[251,4.332]],["name/303",[261,66.182]],["parent/303",[251,4.332]],["name/304",[262,60.948]],["parent/304",[251,4.332]],["name/305",[263,66.182]],["parent/305",[251,4.332]],["name/306",[264,66.182]],["parent/306",[251,4.332]],["name/307",[265,60.948]],["parent/307",[251,4.332]],["name/308",[266,66.182]],["parent/308",[251,4.332]],["name/309",[267,66.182]],["parent/309",[251,4.332]],["name/310",[218,57.5]],["parent/310",[251,4.332]],["name/311",[212,57.5]],["parent/311",[251,4.332]],["name/312",[268,66.182]],["parent/312",[251,4.332]],["name/313",[269,33.161,270,43.707]],["parent/313",[]],["name/314",[271,60.948]],["parent/314",[269,3.885,270,5.121]],["name/315",[2,25.626]],["parent/315",[269,3.885,272,4.067]],["name/316",[273,66.182]],["parent/316",[269,3.885,272,4.067]],["name/317",[274,66.182]],["parent/317",[269,3.885,272,4.067]],["name/318",[275,66.182]],["parent/318",[269,3.885,272,4.067]],["name/319",[276,66.182]],["parent/319",[269,3.885,272,4.067]],["name/320",[277,66.182]],["parent/320",[269,3.885,272,4.067]],["name/321",[278,66.182]],["parent/321",[269,3.885,272,4.067]],["name/322",[279,66.182]],["parent/322",[269,3.885,272,4.067]],["name/323",[280,36.685,281,43.707]],["parent/323",[]],["name/324",[282,60.948]],["parent/324",[280,4.298,281,5.121]],["name/325",[2,25.626]],["parent/325",[280,4.298,283,4.615]],["name/326",[284,66.182]],["parent/326",[280,4.298,283,4.615]],["name/327",[285,66.182]],["parent/327",[280,4.298,283,4.615]],["name/328",[286,66.182]],["parent/328",[280,4.298,283,4.615]],["name/329",[287,44.455]],["parent/329",[]],["name/330",[288,60.948]],["parent/330",[]],["name/331",[289,60.948]],["parent/331",[288,6.788]],["name/332",[205,54.924]],["parent/332",[290,6.404]],["name/333",[291,66.182]],["parent/333",[290,6.404]],["name/334",[2,25.626]],["parent/334",[290,6.404]],["name/335",[292,60.948]],["parent/335",[]],["name/336",[293,60.948]],["parent/336",[292,6.788]],["name/337",[2,25.626]],["parent/337",[294,5.046]],["name/338",[295,57.5]],["parent/338",[294,5.046]],["name/339",[296,66.182]],["parent/339",[294,5.046]],["name/340",[297,66.182]],["parent/340",[294,5.046]],["name/341",[298,60.948]],["parent/341",[294,5.046]],["name/342",[299,66.182]],["parent/342",[294,5.046]],["name/343",[300,66.182]],["parent/343",[294,5.046]],["name/344",[301,66.182]],["parent/344",[294,5.046]],["name/345",[302,66.182]],["parent/345",[294,5.046]],["name/346",[303,66.182]],["parent/346",[294,5.046]],["name/347",[304,66.182]],["parent/347",[294,5.046]],["name/348",[305,60.948]],["parent/348",[]],["name/349",[239,57.5]],["parent/349",[305,6.788]],["name/350",[2,25.626]],["parent/350",[306,5.391]],["name/351",[307,66.182]],["parent/351",[306,5.391]],["name/352",[308,66.182]],["parent/352",[306,5.391]],["name/353",[309,66.182]],["parent/353",[306,5.391]],["name/354",[310,66.182]],["parent/354",[306,5.391]],["name/355",[311,66.182]],["parent/355",[306,5.391]],["name/356",[312,66.182]],["parent/356",[306,5.391]],["name/357",[313,66.182]],["parent/357",[306,5.391]],["name/358",[314,60.948]],["parent/358",[]],["name/359",[315,60.948]],["parent/359",[314,6.788]],["name/360",[316,66.182]],["parent/360",[317,5.391]],["name/361",[13,49.689]],["parent/361",[317,5.391]],["name/362",[14,54.924]],["parent/362",[317,5.391]],["name/363",[318,66.182]],["parent/363",[317,5.391]],["name/364",[319,66.182]],["parent/364",[317,5.391]],["name/365",[320,66.182]],["parent/365",[317,5.391]],["name/366",[321,66.182]],["parent/366",[317,5.391]],["name/367",[2,25.626]],["parent/367",[317,5.391]],["name/368",[322,60.948]],["parent/368",[]],["name/369",[323,60.948]],["parent/369",[322,6.788]],["name/370",[2,25.626]],["parent/370",[324,4.706]],["name/371",[13,49.689]],["parent/371",[324,4.706]],["name/372",[14,54.924]],["parent/372",[324,4.706]],["name/373",[325,60.948]],["parent/373",[324,4.706]],["name/374",[326,66.182]],["parent/374",[324,4.706]],["name/375",[327,66.182]],["parent/375",[324,4.706]],["name/376",[328,66.182]],["parent/376",[324,4.706]],["name/377",[255,54.924]],["parent/377",[324,4.706]],["name/378",[329,66.182]],["parent/378",[324,4.706]],["name/379",[330,66.182]],["parent/379",[324,4.706]],["name/380",[331,66.182]],["parent/380",[324,4.706]],["name/381",[332,66.182]],["parent/381",[324,4.706]],["name/382",[333,66.182]],["parent/382",[324,4.706]],["name/383",[334,66.182]],["parent/383",[324,4.706]],["name/384",[335,66.182]],["parent/384",[324,4.706]],["name/385",[336,60.948]],["parent/385",[]],["name/386",[337,60.948]],["parent/386",[336,6.788]],["name/387",[2,25.626]],["parent/387",[338,4.706]],["name/388",[339,57.5]],["parent/388",[338,4.706]],["name/389",[340,66.182]],["parent/389",[338,4.706]],["name/390",[341,66.182]],["parent/390",[338,4.706]],["name/391",[342,60.948]],["parent/391",[338,4.706]],["name/392",[13,49.689]],["parent/392",[338,4.706]],["name/393",[255,54.924]],["parent/393",[338,4.706]],["name/394",[343,60.948]],["parent/394",[338,4.706]],["name/395",[344,66.182]],["parent/395",[338,4.706]],["name/396",[345,60.948]],["parent/396",[338,4.706]],["name/397",[346,60.948]],["parent/397",[338,4.706]],["name/398",[347,66.182]],["parent/398",[338,4.706]],["name/399",[348,66.182]],["parent/399",[338,4.706]],["name/400",[349,66.182]],["parent/400",[338,4.706]],["name/401",[350,66.182]],["parent/401",[338,4.706]],["name/402",[351,60.948]],["parent/402",[]],["name/403",[352,60.948]],["parent/403",[351,6.788]],["name/404",[2,25.626]],["parent/404",[353,3.728]],["name/405",[354,66.182]],["parent/405",[353,3.728]],["name/406",[238,60.948]],["parent/406",[353,3.728]],["name/407",[234,48.407]],["parent/407",[353,3.728]],["name/408",[13,49.689]],["parent/408",[353,3.728]],["name/409",[355,57.5]],["parent/409",[353,3.728]],["name/410",[356,66.182]],["parent/410",[353,3.728]],["name/411",[357,66.182]],["parent/411",[353,3.728]],["name/412",[358,57.5]],["parent/412",[353,3.728]],["name/413",[359,66.182]],["parent/413",[353,3.728]],["name/414",[360,66.182]],["parent/414",[353,3.728]],["name/415",[361,57.5]],["parent/415",[353,3.728]],["name/416",[362,66.182]],["parent/416",[353,3.728]],["name/417",[363,66.182]],["parent/417",[353,3.728]],["name/418",[255,54.924]],["parent/418",[353,3.728]],["name/419",[364,60.948]],["parent/419",[353,3.728]],["name/420",[365,66.182]],["parent/420",[353,3.728]],["name/421",[366,66.182]],["parent/421",[353,3.728]],["name/422",[367,66.182]],["parent/422",[353,3.728]],["name/423",[368,66.182]],["parent/423",[353,3.728]],["name/424",[369,66.182]],["parent/424",[353,3.728]],["name/425",[370,60.948]],["parent/425",[353,3.728]],["name/426",[371,57.5]],["parent/426",[353,3.728]],["name/427",[372,66.182]],["parent/427",[353,3.728]],["name/428",[373,66.182]],["parent/428",[353,3.728]],["name/429",[374,66.182]],["parent/429",[353,3.728]],["name/430",[375,66.182]],["parent/430",[353,3.728]],["name/431",[376,66.182]],["parent/431",[353,3.728]],["name/432",[377,66.182]],["parent/432",[353,3.728]],["name/433",[378,66.182]],["parent/433",[353,3.728]],["name/434",[379,66.182]],["parent/434",[353,3.728]],["name/435",[380,66.182]],["parent/435",[353,3.728]],["name/436",[381,66.182]],["parent/436",[353,3.728]],["name/437",[382,66.182]],["parent/437",[353,3.728]],["name/438",[383,66.182]],["parent/438",[353,3.728]],["name/439",[384,66.182]],["parent/439",[353,3.728]],["name/440",[385,60.948]],["parent/440",[]],["name/441",[386,60.948]],["parent/441",[385,6.788]],["name/442",[342,60.948]],["parent/442",[387,6.404]],["name/443",[388,66.182]],["parent/443",[387,6.404]],["name/444",[2,25.626]],["parent/444",[387,6.404]],["name/445",[389,41.234,390,29.839]],["parent/445",[]],["name/446",[391,66.182]],["parent/446",[389,4.831,390,3.496]],["name/447",[2,25.626]],["parent/447",[389,4.831,392,5.561]],["name/448",[393,60.948]],["parent/448",[]],["name/449",[394,66.182]],["parent/449",[393,6.788]],["name/450",[2,25.626]],["parent/450",[395,5.264]],["name/451",[396,66.182]],["parent/451",[395,5.264]],["name/452",[397,66.182]],["parent/452",[395,5.264]],["name/453",[398,60.948]],["parent/453",[395,5.264]],["name/454",[399,66.182]],["parent/454",[395,5.264]],["name/455",[400,41.007]],["parent/455",[395,5.264]],["name/456",[401,66.182]],["parent/456",[395,5.264]],["name/457",[402,66.182]],["parent/457",[395,5.264]],["name/458",[403,66.182]],["parent/458",[395,5.264]],["name/459",[404,60.948]],["parent/459",[]],["name/460",[405,66.182]],["parent/460",[404,6.788]],["name/461",[2,25.626]],["parent/461",[406,7.371]],["name/462",[407,66.182]],["parent/462",[]],["name/463",[408,36.685,409,39.387]],["parent/463",[]],["name/464",[410,66.182]],["parent/464",[408,4.298,409,4.615]],["name/465",[2,25.626]],["parent/465",[408,4.298,411,4.615]],["name/466",[131,54.924]],["parent/466",[408,4.298,411,4.615]],["name/467",[412,66.182]],["parent/467",[408,4.298,411,4.615]],["name/468",[413,66.182]],["parent/468",[408,4.298,411,4.615]],["name/469",[390,29.839,414,41.234]],["parent/469",[]],["name/470",[415,66.182]],["parent/470",[390,3.496,414,4.831]],["name/471",[2,25.626]],["parent/471",[414,4.831,416,5.561]],["name/472",[417,60.948]],["parent/472",[]],["name/473",[418,66.182]],["parent/473",[417,6.788]],["name/474",[2,25.626]],["parent/474",[419,5.046]],["name/475",[420,66.182]],["parent/475",[419,5.046]],["name/476",[421,54.924]],["parent/476",[419,5.046]],["name/477",[422,66.182]],["parent/477",[419,5.046]],["name/478",[36,49.689]],["parent/478",[419,5.046]],["name/479",[400,41.007]],["parent/479",[419,5.046]],["name/480",[423,66.182]],["parent/480",[419,5.046]],["name/481",[424,57.5]],["parent/481",[419,5.046]],["name/482",[262,60.948]],["parent/482",[419,5.046]],["name/483",[425,66.182]],["parent/483",[419,5.046]],["name/484",[426,66.182]],["parent/484",[419,5.046]],["name/485",[427,60.948]],["parent/485",[]],["name/486",[428,66.182]],["parent/486",[427,6.788]],["name/487",[2,25.626]],["parent/487",[429,7.371]],["name/488",[430,15.362,431,16.852,432,28.596]],["parent/488",[]],["name/489",[433,66.182]],["parent/489",[430,1.854,431,2.033,432,3.451]],["name/490",[2,25.626]],["parent/490",[430,1.854,431,2.033,434,2.061]],["name/491",[435,66.182]],["parent/491",[430,1.854,431,2.033,434,2.061]],["name/492",[436,66.182]],["parent/492",[430,1.854,431,2.033,434,2.061]],["name/493",[437,66.182]],["parent/493",[430,1.854,431,2.033,434,2.061]],["name/494",[438,66.182]],["parent/494",[430,1.854,431,2.033,434,2.061]],["name/495",[439,66.182]],["parent/495",[430,1.854,431,2.033,434,2.061]],["name/496",[440,66.182]],["parent/496",[430,1.854,431,2.033,434,2.061]],["name/497",[441,66.182]],["parent/497",[430,1.854,431,2.033,434,2.061]],["name/498",[442,66.182]],["parent/498",[430,1.854,431,2.033,434,2.061]],["name/499",[443,66.182]],["parent/499",[430,1.854,431,2.033,434,2.061]],["name/500",[444,66.182]],["parent/500",[430,1.854,431,2.033,434,2.061]],["name/501",[445,66.182]],["parent/501",[430,1.854,431,2.033,434,2.061]],["name/502",[446,66.182]],["parent/502",[430,1.854,431,2.033,434,2.061]],["name/503",[447,66.182]],["parent/503",[430,1.854,431,2.033,434,2.061]],["name/504",[448,66.182]],["parent/504",[430,1.854,431,2.033,434,2.061]],["name/505",[449,66.182]],["parent/505",[430,1.854,431,2.033,434,2.061]],["name/506",[450,66.182]],["parent/506",[430,1.854,431,2.033,434,2.061]],["name/507",[355,57.5]],["parent/507",[430,1.854,431,2.033,434,2.061]],["name/508",[451,60.948]],["parent/508",[430,1.854,431,2.033,434,2.061]],["name/509",[361,57.5]],["parent/509",[430,1.854,431,2.033,434,2.061]],["name/510",[295,57.5]],["parent/510",[430,1.854,431,2.033,434,2.061]],["name/511",[298,60.948]],["parent/511",[430,1.854,431,2.033,434,2.061]],["name/512",[186,52.868]],["parent/512",[430,1.854,431,2.033,434,2.061]],["name/513",[339,57.5]],["parent/513",[430,1.854,431,2.033,434,2.061]],["name/514",[452,60.948]],["parent/514",[430,1.854,431,2.033,434,2.061]],["name/515",[453,57.5]],["parent/515",[430,1.854,431,2.033,434,2.061]],["name/516",[454,60.948]],["parent/516",[430,1.854,431,2.033,434,2.061]],["name/517",[455,60.948]],["parent/517",[430,1.854,431,2.033,434,2.061]],["name/518",[36,49.689]],["parent/518",[430,1.854,431,2.033,434,2.061]],["name/519",[421,54.924]],["parent/519",[430,1.854,431,2.033,434,2.061]],["name/520",[456,66.182]],["parent/520",[430,1.854,431,2.033,434,2.061]],["name/521",[457,54.924]],["parent/521",[430,1.854,431,2.033,434,2.061]],["name/522",[105,60.948]],["parent/522",[430,1.854,431,2.033,434,2.061]],["name/523",[117,60.948]],["parent/523",[430,1.854,431,2.033,434,2.061]],["name/524",[458,66.182]],["parent/524",[430,1.854,431,2.033,434,2.061]],["name/525",[400,41.007]],["parent/525",[430,1.854,431,2.033,434,2.061]],["name/526",[459,54.924]],["parent/526",[430,1.854,431,2.033,434,2.061]],["name/527",[460,66.182]],["parent/527",[430,1.854,431,2.033,434,2.061]],["name/528",[461,66.182]],["parent/528",[430,1.854,431,2.033,434,2.061]],["name/529",[462,60.948]],["parent/529",[430,1.854,431,2.033,434,2.061]],["name/530",[463,60.948]],["parent/530",[430,1.854,431,2.033,434,2.061]],["name/531",[464,66.182]],["parent/531",[430,1.854,431,2.033,434,2.061]],["name/532",[465,66.182]],["parent/532",[430,1.854,431,2.033,434,2.061]],["name/533",[466,60.948]],["parent/533",[430,1.854,431,2.033,434,2.061]],["name/534",[467,60.948]],["parent/534",[430,1.854,431,2.033,434,2.061]],["name/535",[364,60.948]],["parent/535",[430,1.854,431,2.033,434,2.061]],["name/536",[468,51.156]],["parent/536",[430,1.854,431,2.033,434,2.061]],["name/537",[469,60.948]],["parent/537",[430,1.854,431,2.033,434,2.061]],["name/538",[430,15.362,470,23.618,471,34.069]],["parent/538",[]],["name/539",[472,66.182]],["parent/539",[430,1.854,470,2.85,471,4.111]],["name/540",[2,25.626]],["parent/540",[430,1.854,470,2.85,473,2.945]],["name/541",[474,66.182]],["parent/541",[430,1.854,470,2.85,473,2.945]],["name/542",[475,66.182]],["parent/542",[430,1.854,470,2.85,473,2.945]],["name/543",[476,66.182]],["parent/543",[430,1.854,470,2.85,473,2.945]],["name/544",[477,66.182]],["parent/544",[430,1.854,470,2.85,473,2.945]],["name/545",[478,66.182]],["parent/545",[430,1.854,470,2.85,473,2.945]],["name/546",[479,66.182]],["parent/546",[430,1.854,470,2.85,473,2.945]],["name/547",[36,49.689]],["parent/547",[430,1.854,470,2.85,473,2.945]],["name/548",[400,41.007]],["parent/548",[430,1.854,470,2.85,473,2.945]],["name/549",[480,66.182]],["parent/549",[430,1.854,470,2.85,473,2.945]],["name/550",[481,66.182]],["parent/550",[430,1.854,470,2.85,473,2.945]],["name/551",[482,66.182]],["parent/551",[430,1.854,470,2.85,473,2.945]],["name/552",[483,66.182]],["parent/552",[430,1.854,470,2.85,473,2.945]],["name/553",[390,29.839,484,41.234]],["parent/553",[]],["name/554",[485,66.182]],["parent/554",[390,3.496,484,4.831]],["name/555",[2,25.626]],["parent/555",[484,4.831,486,5.561]],["name/556",[487,60.948]],["parent/556",[]],["name/557",[488,66.182]],["parent/557",[487,6.788]],["name/558",[2,25.626]],["parent/558",[489,4.504]],["name/559",[490,54.924]],["parent/559",[489,4.504]],["name/560",[355,57.5]],["parent/560",[489,4.504]],["name/561",[491,57.5]],["parent/561",[489,4.504]],["name/562",[492,60.948]],["parent/562",[489,4.504]],["name/563",[493,60.948]],["parent/563",[489,4.504]],["name/564",[451,60.948]],["parent/564",[489,4.504]],["name/565",[453,57.5]],["parent/565",[489,4.504]],["name/566",[457,54.924]],["parent/566",[489,4.504]],["name/567",[494,52.868]],["parent/567",[489,4.504]],["name/568",[495,52.868]],["parent/568",[489,4.504]],["name/569",[400,41.007]],["parent/569",[489,4.504]],["name/570",[459,54.924]],["parent/570",[489,4.504]],["name/571",[496,52.868]],["parent/571",[489,4.504]],["name/572",[463,60.948]],["parent/572",[489,4.504]],["name/573",[466,60.948]],["parent/573",[489,4.504]],["name/574",[497,66.182]],["parent/574",[489,4.504]],["name/575",[468,51.156]],["parent/575",[489,4.504]],["name/576",[498,60.948]],["parent/576",[]],["name/577",[499,66.182]],["parent/577",[498,6.788]],["name/578",[2,25.626]],["parent/578",[500,7.371]],["name/579",[501,24.409,502,24.409,503,34.069]],["parent/579",[]],["name/580",[504,66.182]],["parent/580",[501,2.945,502,2.945,503,4.111]],["name/581",[2,25.626]],["parent/581",[501,2.945,502,2.945,505,3.056]],["name/582",[506,66.182]],["parent/582",[501,2.945,502,2.945,505,3.056]],["name/583",[36,49.689]],["parent/583",[501,2.945,502,2.945,505,3.056]],["name/584",[421,54.924]],["parent/584",[501,2.945,502,2.945,505,3.056]],["name/585",[361,57.5]],["parent/585",[501,2.945,502,2.945,505,3.056]],["name/586",[295,57.5]],["parent/586",[501,2.945,502,2.945,505,3.056]],["name/587",[453,57.5]],["parent/587",[501,2.945,502,2.945,505,3.056]],["name/588",[455,60.948]],["parent/588",[501,2.945,502,2.945,505,3.056]],["name/589",[400,41.007]],["parent/589",[501,2.945,502,2.945,505,3.056]],["name/590",[507,66.182]],["parent/590",[501,2.945,502,2.945,505,3.056]],["name/591",[424,57.5]],["parent/591",[501,2.945,502,2.945,505,3.056]],["name/592",[390,29.839,508,41.234]],["parent/592",[]],["name/593",[509,66.182]],["parent/593",[390,3.496,508,4.831]],["name/594",[2,25.626]],["parent/594",[508,4.831,510,5.561]],["name/595",[511,60.948]],["parent/595",[]],["name/596",[512,66.182]],["parent/596",[511,6.788]],["name/597",[2,25.626]],["parent/597",[513,4.782]],["name/598",[490,54.924]],["parent/598",[513,4.782]],["name/599",[491,57.5]],["parent/599",[513,4.782]],["name/600",[143,54.924]],["parent/600",[513,4.782]],["name/601",[358,57.5]],["parent/601",[513,4.782]],["name/602",[494,52.868]],["parent/602",[513,4.782]],["name/603",[495,52.868]],["parent/603",[513,4.782]],["name/604",[400,41.007]],["parent/604",[513,4.782]],["name/605",[496,52.868]],["parent/605",[513,4.782]],["name/606",[514,66.182]],["parent/606",[513,4.782]],["name/607",[371,57.5]],["parent/607",[513,4.782]],["name/608",[515,66.182]],["parent/608",[513,4.782]],["name/609",[516,66.182]],["parent/609",[513,4.782]],["name/610",[468,51.156]],["parent/610",[513,4.782]],["name/611",[517,60.948]],["parent/611",[]],["name/612",[518,66.182]],["parent/612",[517,6.788]],["name/613",[2,25.626]],["parent/613",[519,7.371]],["name/614",[390,29.839,520,41.234]],["parent/614",[]],["name/615",[521,66.182]],["parent/615",[390,3.496,520,4.831]],["name/616",[2,25.626]],["parent/616",[520,4.831,522,5.561]],["name/617",[523,60.948]],["parent/617",[]],["name/618",[524,66.182]],["parent/618",[523,6.788]],["name/619",[2,25.626]],["parent/619",[525,6.788]],["name/620",[398,60.948]],["parent/620",[525,6.788]],["name/621",[526,60.948]],["parent/621",[]],["name/622",[527,66.182]],["parent/622",[526,6.788]],["name/623",[2,25.626]],["parent/623",[528,7.371]],["name/624",[529,60.948]],["parent/624",[]],["name/625",[530,66.182]],["parent/625",[529,6.788]],["name/626",[2,25.626]],["parent/626",[531,5.534]],["name/627",[532,66.182]],["parent/627",[531,5.534]],["name/628",[421,54.924]],["parent/628",[531,5.534]],["name/629",[36,49.689]],["parent/629",[531,5.534]],["name/630",[400,41.007]],["parent/630",[531,5.534]],["name/631",[533,66.182]],["parent/631",[531,5.534]],["name/632",[424,57.5]],["parent/632",[531,5.534]],["name/633",[390,29.839,534,41.234]],["parent/633",[]],["name/634",[535,66.182]],["parent/634",[390,3.496,534,4.831]],["name/635",[2,25.626]],["parent/635",[534,4.831,536,5.561]],["name/636",[537,60.948]],["parent/636",[]],["name/637",[538,66.182]],["parent/637",[537,6.788]],["name/638",[2,25.626]],["parent/638",[539,5.046]],["name/639",[490,54.924]],["parent/639",[539,5.046]],["name/640",[491,57.5]],["parent/640",[539,5.046]],["name/641",[252,60.948]],["parent/641",[539,5.046]],["name/642",[540,66.182]],["parent/642",[539,5.046]],["name/643",[494,52.868]],["parent/643",[539,5.046]],["name/644",[495,52.868]],["parent/644",[539,5.046]],["name/645",[400,41.007]],["parent/645",[539,5.046]],["name/646",[496,52.868]],["parent/646",[539,5.046]],["name/647",[468,51.156]],["parent/647",[539,5.046]],["name/648",[265,60.948]],["parent/648",[539,5.046]],["name/649",[541,60.948]],["parent/649",[]],["name/650",[542,66.182]],["parent/650",[541,6.788]],["name/651",[2,25.626]],["parent/651",[543,7.371]],["name/652",[432,28.596,544,27.776,545,27.776]],["parent/652",[]],["name/653",[546,66.182]],["parent/653",[432,3.451,544,3.352,545,3.352]],["name/654",[2,25.626]],["parent/654",[544,3.352,545,3.352,547,3.566]],["name/655",[164,52.868]],["parent/655",[544,3.352,545,3.352,547,3.566]],["name/656",[548,60.948]],["parent/656",[544,3.352,545,3.352,547,3.566]],["name/657",[400,41.007]],["parent/657",[544,3.352,545,3.352,547,3.566]],["name/658",[549,60.948]],["parent/658",[544,3.352,545,3.352,547,3.566]],["name/659",[390,29.839,550,41.234]],["parent/659",[]],["name/660",[551,66.182]],["parent/660",[390,3.496,550,4.831]],["name/661",[2,25.626]],["parent/661",[550,4.831,552,5.561]],["name/662",[553,60.948]],["parent/662",[]],["name/663",[554,66.182]],["parent/663",[553,6.788]],["name/664",[2,25.626]],["parent/664",[555,4.951]],["name/665",[490,54.924]],["parent/665",[555,4.951]],["name/666",[556,66.182]],["parent/666",[555,4.951]],["name/667",[494,52.868]],["parent/667",[555,4.951]],["name/668",[495,52.868]],["parent/668",[555,4.951]],["name/669",[325,60.948]],["parent/669",[555,4.951]],["name/670",[164,52.868]],["parent/670",[555,4.951]],["name/671",[400,41.007]],["parent/671",[555,4.951]],["name/672",[459,54.924]],["parent/672",[555,4.951]],["name/673",[496,52.868]],["parent/673",[555,4.951]],["name/674",[557,66.182]],["parent/674",[555,4.951]],["name/675",[468,51.156]],["parent/675",[555,4.951]],["name/676",[558,60.948]],["parent/676",[]],["name/677",[559,66.182]],["parent/677",[558,6.788]],["name/678",[2,25.626]],["parent/678",[560,7.371]],["name/679",[432,28.596,561,22.923,562,22.923]],["parent/679",[]],["name/680",[563,66.182]],["parent/680",[432,3.451,561,2.766,562,2.766]],["name/681",[2,25.626]],["parent/681",[561,2.766,562,2.766,564,2.85]],["name/682",[186,52.868]],["parent/682",[561,2.766,562,2.766,564,2.85]],["name/683",[548,60.948]],["parent/683",[561,2.766,562,2.766,564,2.85]],["name/684",[565,66.182]],["parent/684",[561,2.766,562,2.766,564,2.85]],["name/685",[566,66.182]],["parent/685",[561,2.766,562,2.766,564,2.85]],["name/686",[567,66.182]],["parent/686",[561,2.766,562,2.766,564,2.85]],["name/687",[568,66.182]],["parent/687",[561,2.766,562,2.766,564,2.85]],["name/688",[457,54.924]],["parent/688",[561,2.766,562,2.766,564,2.85]],["name/689",[400,41.007]],["parent/689",[561,2.766,562,2.766,564,2.85]],["name/690",[569,66.182]],["parent/690",[561,2.766,562,2.766,564,2.85]],["name/691",[570,66.182]],["parent/691",[561,2.766,562,2.766,564,2.85]],["name/692",[571,66.182]],["parent/692",[561,2.766,562,2.766,564,2.85]],["name/693",[572,66.182]],["parent/693",[561,2.766,562,2.766,564,2.85]],["name/694",[469,60.948]],["parent/694",[561,2.766,562,2.766,564,2.85]],["name/695",[549,60.948]],["parent/695",[561,2.766,562,2.766,564,2.85]],["name/696",[390,29.839,573,41.234]],["parent/696",[]],["name/697",[574,66.182]],["parent/697",[390,3.496,573,4.831]],["name/698",[2,25.626]],["parent/698",[573,4.831,575,5.561]],["name/699",[576,60.948]],["parent/699",[]],["name/700",[577,66.182]],["parent/700",[576,6.788]],["name/701",[2,25.626]],["parent/701",[578,4.504]],["name/702",[579,66.182]],["parent/702",[578,4.504]],["name/703",[580,66.182]],["parent/703",[578,4.504]],["name/704",[492,60.948]],["parent/704",[578,4.504]],["name/705",[493,60.948]],["parent/705",[578,4.504]],["name/706",[339,57.5]],["parent/706",[578,4.504]],["name/707",[186,52.868]],["parent/707",[578,4.504]],["name/708",[452,60.948]],["parent/708",[578,4.504]],["name/709",[454,60.948]],["parent/709",[578,4.504]],["name/710",[457,54.924]],["parent/710",[578,4.504]],["name/711",[494,52.868]],["parent/711",[578,4.504]],["name/712",[495,52.868]],["parent/712",[578,4.504]],["name/713",[400,41.007]],["parent/713",[578,4.504]],["name/714",[462,60.948]],["parent/714",[578,4.504]],["name/715",[496,52.868]],["parent/715",[578,4.504]],["name/716",[467,60.948]],["parent/716",[578,4.504]],["name/717",[459,54.924]],["parent/717",[578,4.504]],["name/718",[468,51.156]],["parent/718",[578,4.504]],["name/719",[581,60.948]],["parent/719",[]],["name/720",[582,66.182]],["parent/720",[581,6.788]],["name/721",[2,25.626]],["parent/721",[583,7.371]],["name/722",[584,34.714,585,43.707]],["parent/722",[]],["name/723",[586,66.182]],["parent/723",[584,4.067,585,5.121]],["name/724",[2,25.626]],["parent/724",[584,4.067,587,5.121]],["name/725",[588,66.182]],["parent/725",[584,4.067,587,5.121]],["name/726",[409,39.387,584,34.714]],["parent/726",[]],["name/727",[589,66.182]],["parent/727",[409,4.615,584,4.067]],["name/728",[2,25.626]],["parent/728",[584,4.067,590,5.121]],["name/729",[591,66.182]],["parent/729",[584,4.067,590,5.121]],["name/730",[592,60.948]],["parent/730",[]],["name/731",[593,66.182]],["parent/731",[592,6.788]],["name/732",[2,25.626]],["parent/732",[594,6.788]],["name/733",[595,57.5]],["parent/733",[594,6.788]],["name/734",[596,39.387,597,43.707]],["parent/734",[]],["name/735",[598,66.182]],["parent/735",[596,4.615,597,5.121]],["name/736",[2,25.626]],["parent/736",[596,4.615,599,5.121]],["name/737",[595,57.5]],["parent/737",[596,4.615,599,5.121]],["name/738",[600,39.387,601,43.707]],["parent/738",[]],["name/739",[602,66.182]],["parent/739",[600,4.615,601,5.121]],["name/740",[2,25.626]],["parent/740",[600,4.615,603,5.121]],["name/741",[595,57.5]],["parent/741",[600,4.615,603,5.121]],["name/742",[604,30.702,605,30.702,606,34.069]],["parent/742",[]],["name/743",[607,66.182]],["parent/743",[604,3.705,605,3.705,606,4.111]],["name/744",[2,25.626]],["parent/744",[604,3.705,605,3.705,608,4.111]],["name/745",[129,52.868]],["parent/745",[604,3.705,605,3.705,608,4.111]],["name/746",[609,60.948]],["parent/746",[]],["name/747",[610,66.182]],["parent/747",[609,6.788]],["name/748",[2,25.626]],["parent/748",[611,6.404]],["name/749",[612,66.182]],["parent/749",[611,6.404]],["name/750",[400,41.007]],["parent/750",[611,6.404]],["name/751",[613,28.596,614,28.596,615,34.069]],["parent/751",[]],["name/752",[616,66.182]],["parent/752",[613,3.451,614,3.451,615,4.111]],["name/753",[2,25.626]],["parent/753",[613,3.451,614,3.451,617,3.705]],["name/754",[618,66.182]],["parent/754",[613,3.451,614,3.451,617,3.705]],["name/755",[400,41.007]],["parent/755",[613,3.451,614,3.451,617,3.705]],["name/756",[619,66.182]],["parent/756",[613,3.451,614,3.451,617,3.705]],["name/757",[620,60.948]],["parent/757",[]],["name/758",[621,66.182]],["parent/758",[620,6.788]],["name/759",[2,25.626]],["parent/759",[622,7.371]],["name/760",[623,60.948]],["parent/760",[]],["name/761",[624,66.182]],["parent/761",[623,6.788]],["name/762",[2,25.626]],["parent/762",[625,6.788]],["name/763",[400,41.007]],["parent/763",[625,6.788]],["name/764",[626,60.948]],["parent/764",[]],["name/765",[627,66.182]],["parent/765",[626,6.788]],["name/766",[2,25.626]],["parent/766",[628,6.788]],["name/767",[400,41.007]],["parent/767",[628,6.788]],["name/768",[629,52.868]],["parent/768",[]],["name/769",[630,66.182]],["parent/769",[629,5.888]],["name/770",[631,66.182]],["parent/770",[629,5.888]],["name/771",[632,66.182]],["parent/771",[629,5.888]],["name/772",[633,66.182]],["parent/772",[629,5.888]],["name/773",[634,60.948]],["parent/773",[]],["name/774",[635,52.868]],["parent/774",[]],["name/775",[185,51.156]],["parent/775",[635,5.888]],["name/776",[2,25.626]],["parent/776",[636,4.231]],["name/777",[637,66.182]],["parent/777",[636,4.231]],["name/778",[638,66.182]],["parent/778",[636,4.231]],["name/779",[639,66.182]],["parent/779",[636,4.231]],["name/780",[191,60.948]],["parent/780",[636,4.231]],["name/781",[192,60.948]],["parent/781",[636,4.231]],["name/782",[129,52.868]],["parent/782",[636,4.231]],["name/783",[640,66.182]],["parent/783",[636,4.231]],["name/784",[641,66.182]],["parent/784",[636,4.231]],["name/785",[642,66.182]],["parent/785",[636,4.231]],["name/786",[643,66.182]],["parent/786",[636,4.231]],["name/787",[644,66.182]],["parent/787",[636,4.231]],["name/788",[645,66.182]],["parent/788",[636,4.231]],["name/789",[646,66.182]],["parent/789",[636,4.231]],["name/790",[647,66.182]],["parent/790",[636,4.231]],["name/791",[648,66.182]],["parent/791",[636,4.231]],["name/792",[649,66.182]],["parent/792",[636,4.231]],["name/793",[650,66.182]],["parent/793",[636,4.231]],["name/794",[651,66.182]],["parent/794",[636,4.231]],["name/795",[652,66.182]],["parent/795",[636,4.231]],["name/796",[653,66.182]],["parent/796",[636,4.231]],["name/797",[654,66.182]],["parent/797",[636,4.231]],["name/798",[655,66.182]],["parent/798",[636,4.231]],["name/799",[656,66.182]],["parent/799",[635,5.888]],["name/800",[657,66.182]],["parent/800",[635,5.888]],["name/801",[183,60.948]],["parent/801",[635,5.888]],["name/802",[658,60.948]],["parent/802",[]],["name/803",[659,57.5]],["parent/803",[658,6.788]],["name/804",[52,43.666]],["parent/804",[660,7.371]],["name/805",[661,57.5]],["parent/805",[662,4.863]],["name/806",[663,57.5]],["parent/806",[662,4.863]],["name/807",[664,57.5]],["parent/807",[662,4.863]],["name/808",[665,57.5]],["parent/808",[662,4.863]],["name/809",[666,57.5]],["parent/809",[662,4.863]],["name/810",[667,57.5]],["parent/810",[662,4.863]],["name/811",[668,57.5]],["parent/811",[662,4.863]],["name/812",[669,57.5]],["parent/812",[662,4.863]],["name/813",[670,57.5]],["parent/813",[662,4.863]],["name/814",[671,57.5]],["parent/814",[662,4.863]],["name/815",[672,57.5]],["parent/815",[662,4.863]],["name/816",[673,57.5]],["parent/816",[662,4.863]],["name/817",[674,57.5]],["parent/817",[662,4.863]],["name/818",[675,60.948]],["parent/818",[]],["name/819",[659,57.5]],["parent/819",[675,6.788]],["name/820",[52,43.666]],["parent/820",[676,7.371]],["name/821",[661,57.5]],["parent/821",[677,4.863]],["name/822",[663,57.5]],["parent/822",[677,4.863]],["name/823",[664,57.5]],["parent/823",[677,4.863]],["name/824",[665,57.5]],["parent/824",[677,4.863]],["name/825",[666,57.5]],["parent/825",[677,4.863]],["name/826",[667,57.5]],["parent/826",[677,4.863]],["name/827",[668,57.5]],["parent/827",[677,4.863]],["name/828",[669,57.5]],["parent/828",[677,4.863]],["name/829",[670,57.5]],["parent/829",[677,4.863]],["name/830",[671,57.5]],["parent/830",[677,4.863]],["name/831",[672,57.5]],["parent/831",[677,4.863]],["name/832",[673,57.5]],["parent/832",[677,4.863]],["name/833",[674,57.5]],["parent/833",[677,4.863]],["name/834",[678,60.948]],["parent/834",[]],["name/835",[659,57.5]],["parent/835",[678,6.788]],["name/836",[52,43.666]],["parent/836",[679,7.371]],["name/837",[661,57.5]],["parent/837",[680,4.863]],["name/838",[663,57.5]],["parent/838",[680,4.863]],["name/839",[664,57.5]],["parent/839",[680,4.863]],["name/840",[665,57.5]],["parent/840",[680,4.863]],["name/841",[666,57.5]],["parent/841",[680,4.863]],["name/842",[667,57.5]],["parent/842",[680,4.863]],["name/843",[668,57.5]],["parent/843",[680,4.863]],["name/844",[669,57.5]],["parent/844",[680,4.863]],["name/845",[670,57.5]],["parent/845",[680,4.863]],["name/846",[671,57.5]],["parent/846",[680,4.863]],["name/847",[672,57.5]],["parent/847",[680,4.863]],["name/848",[673,57.5]],["parent/848",[680,4.863]],["name/849",[674,57.5]],["parent/849",[680,4.863]],["name/850",[681,66.182]],["parent/850",[]],["name/851",[682,66.182]],["parent/851",[]],["name/852",[683,66.182]],["parent/852",[]],["name/853",[684,28.596,685,28.596,686,24]],["parent/853",[]],["name/854",[687,60.948]],["parent/854",[684,3.451,685,3.451,686,2.896]],["name/855",[2,25.626]],["parent/855",[684,3.451,685,3.451,688,3.705]],["name/856",[689,66.182]],["parent/856",[684,3.451,685,3.451,688,3.705]],["name/857",[690,66.182]],["parent/857",[684,3.451,685,3.451,688,3.705]],["name/858",[691,66.182]],["parent/858",[684,3.451,685,3.451,688,3.705]],["name/859",[692,47.267]],["parent/859",[]],["name/860",[686,19.664,693,23.43,694,23.43,695,23.43]],["parent/860",[]],["name/861",[696,60.948]],["parent/861",[686,2.419,693,2.882,694,2.882,695,2.882]],["name/862",[2,25.626]],["parent/862",[693,2.882,694,2.882,695,2.882,697,3.095]],["name/863",[698,66.182]],["parent/863",[693,2.882,694,2.882,695,2.882,697,3.095]],["name/864",[699,66.182]],["parent/864",[693,2.882,694,2.882,695,2.882,697,3.095]],["name/865",[700,66.182]],["parent/865",[693,2.882,694,2.882,695,2.882,697,3.095]],["name/866",[686,24,701,27.776,702,27.776]],["parent/866",[]],["name/867",[703,60.948]],["parent/867",[686,2.896,701,3.352,702,3.352]],["name/868",[2,25.626]],["parent/868",[701,3.352,702,3.352,704,4.464]],["name/869",[705,60.948]],["parent/869",[686,2.896,701,3.352,702,3.352]],["name/870",[2,25.626]],["parent/870",[701,3.352,702,3.352,706,4.464]],["name/871",[707,60.948]],["parent/871",[686,2.896,701,3.352,702,3.352]],["name/872",[2,25.626]],["parent/872",[701,3.352,702,3.352,708,4.464]],["name/873",[686,24,709,30.702,710,22.303]],["parent/873",[]],["name/874",[711,60.948]],["parent/874",[686,2.896,709,3.705,710,2.691]],["name/875",[2,25.626]],["parent/875",[709,3.705,710,2.691,712,4.111]],["name/876",[713,66.182]],["parent/876",[709,3.705,710,2.691,712,4.111]],["name/877",[686,24,710,22.303,714,28.596]],["parent/877",[]],["name/878",[715,60.948]],["parent/878",[686,2.896,710,2.691,714,3.451]],["name/879",[2,25.626]],["parent/879",[710,2.691,714,3.451,716,3.705]],["name/880",[345,60.948]],["parent/880",[710,2.691,714,3.451,716,3.705]],["name/881",[346,60.948]],["parent/881",[710,2.691,714,3.451,716,3.705]],["name/882",[343,60.948]],["parent/882",[710,2.691,714,3.451,716,3.705]],["name/883",[686,24,710,22.303,717,26.422]],["parent/883",[]],["name/884",[718,60.948]],["parent/884",[686,2.896,710,2.691,717,3.188]],["name/885",[2,25.626]],["parent/885",[710,2.691,717,3.188,719,3.352]],["name/886",[720,66.182]],["parent/886",[710,2.691,717,3.188,719,3.352]],["name/887",[358,57.5]],["parent/887",[710,2.691,717,3.188,719,3.352]],["name/888",[721,66.182]],["parent/888",[710,2.691,717,3.188,719,3.352]],["name/889",[722,66.182]],["parent/889",[710,2.691,717,3.188,719,3.352]],["name/890",[370,60.948]],["parent/890",[710,2.691,717,3.188,719,3.352]],["name/891",[371,57.5]],["parent/891",[710,2.691,717,3.188,719,3.352]],["name/892",[1,60.948]],["parent/892",[11,6.404]],["name/893",[14,54.924]],["parent/893",[11,6.404]],["name/894",[20,60.948]],["parent/894",[23,6.404]],["name/895",[25,60.948]],["parent/895",[23,6.404]],["name/896",[29,60.948]],["parent/896",[64,4.567]],["name/897",[32,60.948]],["parent/897",[64,4.567]],["name/898",[41,60.948]],["parent/898",[64,4.567]],["name/899",[37,60.948]],["parent/899",[64,4.567]],["name/900",[47,60.948]],["parent/900",[64,4.567]],["name/901",[50,60.948]],["parent/901",[64,4.567]],["name/902",[51,60.948]],["parent/902",[64,4.567]],["name/903",[55,60.948]],["parent/903",[64,4.567]],["name/904",[63,60.948]],["parent/904",[64,4.567]],["name/905",[67,60.948]],["parent/905",[64,4.567]],["name/906",[70,60.948]],["parent/906",[64,4.567]],["name/907",[79,60.948]],["parent/907",[64,4.567]],["name/908",[82,60.948]],["parent/908",[64,4.567]],["name/909",[83,60.948]],["parent/909",[64,4.567]],["name/910",[85,60.948]],["parent/910",[64,4.567]],["name/911",[77,60.948]],["parent/911",[64,4.567]],["name/912",[87,60.948]],["parent/912",[96,5.888]],["name/913",[90,60.948]],["parent/913",[96,5.888]],["name/914",[94,60.948]],["parent/914",[96,5.888]],["name/915",[98,60.948]],["parent/915",[96,5.888]],["name/916",[101,60.948]],["parent/916",[141,4.706]],["name/917",[128,60.948]],["parent/917",[141,4.706]],["name/918",[133,60.948]],["parent/918",[141,4.706]],["name/919",[132,51.156]],["parent/919",[141,4.706]],["name/920",[140,60.948]],["parent/920",[141,4.706]],["name/921",[143,54.924]],["parent/921",[141,4.706]],["name/922",[149,60.948]],["parent/922",[141,4.706]],["name/923",[153,57.5]],["parent/923",[141,4.706]],["name/924",[157,60.948]],["parent/924",[141,4.706]],["name/925",[164,52.868]],["parent/925",[141,4.706]],["name/926",[178,60.948]],["parent/926",[141,4.706]],["name/927",[186,52.868]],["parent/927",[141,4.706]],["name/928",[185,51.156]],["parent/928",[141,4.706]],["name/929",[199,60.948]],["parent/929",[141,4.706]],["name/930",[205,54.924]],["parent/930",[201,5.534]],["name/931",[232,60.948]],["parent/931",[201,5.534]],["name/932",[235,60.948]],["parent/932",[201,5.534]],["name/933",[245,60.948]],["parent/933",[201,5.534]],["name/934",[132,51.156]],["parent/934",[201,5.534]],["name/935",[234,48.407]],["parent/935",[201,5.534]],["name/936",[250,60.948]],["parent/936",[287,4.951]],["name/937",[337,60.948]],["parent/937",[287,4.951]],["name/938",[352,60.948]],["parent/938",[287,4.951]],["name/939",[323,60.948]],["parent/939",[287,4.951]],["name/940",[271,60.948]],["parent/940",[287,4.951]],["name/941",[293,60.948]],["parent/941",[287,4.951]],["name/942",[239,57.5]],["parent/942",[287,4.951]],["name/943",[282,60.948]],["parent/943",[287,4.951]],["name/944",[386,60.948]],["parent/944",[287,4.951]],["name/945",[289,60.948]],["parent/945",[287,4.951]],["name/946",[315,60.948]],["parent/946",[287,4.951]],["name/947",[185,51.156]],["parent/947",[634,6.788]],["name/948",[687,60.948]],["parent/948",[692,5.264]],["name/949",[696,60.948]],["parent/949",[692,5.264]],["name/950",[703,60.948]],["parent/950",[692,5.264]],["name/951",[705,60.948]],["parent/951",[692,5.264]],["name/952",[707,60.948]],["parent/952",[692,5.264]],["name/953",[718,60.948]],["parent/953",[692,5.264]],["name/954",[711,60.948]],["parent/954",[692,5.264]],["name/955",[715,60.948]],["parent/955",[692,5.264]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":171,"name":{"170":{}},"parent":{}}],["__type",{"_index":52,"name":{"47":{},"64":{},"102":{},"104":{},"110":{},"117":{},"169":{},"171":{},"268":{},"270":{},"804":{},"820":{},"836":{}},"parent":{}}],["_outbuffer",{"_index":646,"name":{"789":{}},"parent":{}}],["_outbuffercursor",{"_index":647,"name":{"790":{}},"parent":{}}],["_signatureset",{"_index":644,"name":{"787":{}},"parent":{}}],["_workbuffer",{"_index":645,"name":{"788":{}},"parent":{}}],["account",{"_index":448,"name":{"504":{}},"parent":{}}],["account.component",{"_index":503,"name":{"579":{}},"parent":{"580":{}}}],["account.component.createaccountcomponent",{"_index":505,"name":{},"parent":{"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{}}}],["account/create",{"_index":502,"name":{"579":{}},"parent":{"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{}}}],["accountaddress",{"_index":449,"name":{"505":{}},"parent":{}}],["accountdetails",{"_index":101,"name":{"95":{},"916":{}},"parent":{}}],["accountdetailscomponent",{"_index":433,"name":{"489":{}},"parent":{}}],["accountdetailsregex",{"_index":399,"name":{"454":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"892":{}},"parent":{}}],["accountinfoform",{"_index":447,"name":{"503":{}},"parent":{}}],["accountinfoformstub",{"_index":464,"name":{"531":{}},"parent":{}}],["accountregistry",{"_index":318,"name":{"363":{}},"parent":{}}],["accounts",{"_index":355,"name":{"409":{},"507":{},"560":{}},"parent":{}}],["accountscomponent",{"_index":488,"name":{"557":{}},"parent":{}}],["accountsearchcomponent",{"_index":472,"name":{"539":{}},"parent":{}}],["accountslist",{"_index":356,"name":{"410":{}},"parent":{}}],["accountsmodule",{"_index":499,"name":{"577":{}},"parent":{}}],["accountsroutingmodule",{"_index":485,"name":{"554":{}},"parent":{}}],["accountssubject",{"_index":357,"name":{"411":{}},"parent":{}}],["accountstatus",{"_index":450,"name":{"506":{}},"parent":{}}],["accountstype",{"_index":451,"name":{"508":{},"564":{}},"parent":{}}],["accounttypes",{"_index":453,"name":{"515":{},"565":{},"587":{}},"parent":{}}],["action",{"_index":143,"name":{"138":{},"139":{},"600":{},"921":{}},"parent":{}}],["actions",{"_index":358,"name":{"412":{},"601":{},"887":{}},"parent":{}}],["actionslist",{"_index":359,"name":{"413":{}},"parent":{}}],["actionssubject",{"_index":360,"name":{"414":{}},"parent":{}}],["activatedroutestub",{"_index":687,"name":{"854":{},"948":{}},"parent":{}}],["add0x",{"_index":633,"name":{"772":{}},"parent":{}}],["addaccount",{"_index":384,"name":{"439":{}},"parent":{}}],["address",{"_index":165,"name":{"163":{},"201":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":477,"name":{"544":{}},"parent":{}}],["addresssearchformstub",{"_index":481,"name":{"550":{}},"parent":{}}],["addresssearchloading",{"_index":479,"name":{"546":{}},"parent":{}}],["addresssearchsubmitted",{"_index":478,"name":{"545":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtoken",{"_index":329,"name":{"378":{}},"parent":{}}],["addtransaction",{"_index":347,"name":{"398":{}},"parent":{}}],["addtrusteduser",{"_index":266,"name":{"308":{}},"parent":{}}],["admincomponent",{"_index":512,"name":{"596":{}},"parent":{}}],["adminmodule",{"_index":518,"name":{"612":{}},"parent":{}}],["adminroutingmodule",{"_index":509,"name":{"593":{}},"parent":{}}],["age",{"_index":102,"name":{"96":{}},"parent":{}}],["algo",{"_index":136,"name":{"131":{},"262":{},"279":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"892":{},"893":{}}}],["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":{"894":{},"895":{}}}],["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":64,"name":{"58":{}},"parent":{"896":{},"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{}}}],["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":{},"55":{}}}],["app/_helpers/http",{"_index":61,"name":{"56":{}},"parent":{"57":{}}}],["app/_helpers/mock",{"_index":65,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["app/_helpers/online",{"_index":76,"name":{"68":{}},"parent":{"69":{}}}],["app/_helpers/read",{"_index":78,"name":{"70":{}},"parent":{"71":{}}}],["app/_helpers/schema",{"_index":80,"name":{"72":{}},"parent":{"73":{},"74":{}}}],["app/_helpers/sync",{"_index":84,"name":{"75":{}},"parent":{"76":{}}}],["app/_interceptors",{"_index":96,"name":{"89":{}},"parent":{"912":{},"913":{},"914":{},"915":{}}}],["app/_interceptors/connection.interceptor",{"_index":86,"name":{"77":{}},"parent":{"78":{}}}],["app/_interceptors/connection.interceptor.connectioninterceptor",{"_index":88,"name":{},"parent":{"79":{},"80":{}}}],["app/_interceptors/error.interceptor",{"_index":89,"name":{"81":{}},"parent":{"82":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":91,"name":{},"parent":{"83":{},"84":{}}}],["app/_interceptors/http",{"_index":92,"name":{"85":{}},"parent":{"86":{},"87":{},"88":{}}}],["app/_interceptors/logging.interceptor",{"_index":97,"name":{"90":{}},"parent":{"91":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":99,"name":{},"parent":{"92":{},"93":{}}}],["app/_models",{"_index":141,"name":{"136":{}},"parent":{"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{}}}],["app/_models/account",{"_index":100,"name":{"94":{}},"parent":{"95":{},"123":{},"127":{},"130":{},"135":{}}}],["app/_models/account.accountdetails",{"_index":103,"name":{},"parent":{"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"109":{},"110":{},"114":{},"115":{},"116":{},"117":{}}}],["app/_models/account.accountdetails.__type",{"_index":110,"name":{},"parent":{"103":{},"104":{},"107":{},"108":{},"111":{},"112":{},"113":{},"118":{},"119":{},"120":{},"121":{},"122":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":112,"name":{},"parent":{"105":{},"106":{}}}],["app/_models/account.meta",{"_index":130,"name":{},"parent":{"124":{},"125":{},"126":{}}}],["app/_models/account.metaresponse",{"_index":134,"name":{},"parent":{"128":{},"129":{}}}],["app/_models/account.signature",{"_index":137,"name":{},"parent":{"131":{},"132":{},"133":{},"134":{}}}],["app/_models/mappings",{"_index":142,"name":{"137":{}},"parent":{"138":{}}}],["app/_models/mappings.action",{"_index":144,"name":{},"parent":{"139":{},"140":{},"141":{},"142":{},"143":{}}}],["app/_models/settings",{"_index":148,"name":{"144":{}},"parent":{"145":{},"151":{}}}],["app/_models/settings.settings",{"_index":150,"name":{},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["app/_models/settings.w3",{"_index":154,"name":{},"parent":{"152":{},"153":{}}}],["app/_models/staff",{"_index":156,"name":{"154":{}},"parent":{"155":{}}}],["app/_models/staff.staff",{"_index":159,"name":{},"parent":{"156":{},"157":{},"158":{},"159":{},"160":{}}}],["app/_models/token",{"_index":163,"name":{"161":{}},"parent":{"162":{}}}],["app/_models/token.token",{"_index":166,"name":{},"parent":{"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"174":{},"175":{}}}],["app/_models/token.token.__type",{"_index":172,"name":{},"parent":{"170":{},"171":{}}}],["app/_models/token.token.__type.__type",{"_index":174,"name":{},"parent":{"172":{},"173":{}}}],["app/_models/transaction",{"_index":177,"name":{"176":{}},"parent":{"177":{},"185":{},"194":{},"200":{}}}],["app/_models/transaction.conversion",{"_index":180,"name":{},"parent":{"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{}}}],["app/_models/transaction.transaction",{"_index":188,"name":{},"parent":{"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{}}}],["app/_models/transaction.tx",{"_index":194,"name":{},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{}}}],["app/_models/transaction.txtoken",{"_index":200,"name":{},"parent":{"201":{},"202":{},"203":{}}}],["app/_pgp",{"_index":201,"name":{"204":{}},"parent":{"930":{},"931":{},"932":{},"933":{},"934":{},"935":{}}}],["app/_pgp/pgp",{"_index":202,"name":{"205":{},"259":{}},"parent":{"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{}}}],["app/_services",{"_index":287,"name":{"329":{}},"parent":{"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{},"946":{}}}],["app/_services/auth.service",{"_index":249,"name":{"290":{}},"parent":{"291":{}}}],["app/_services/auth.service.authservice",{"_index":251,"name":{},"parent":{"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{}}}],["app/_services/block",{"_index":269,"name":{"313":{}},"parent":{"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{}}}],["app/_services/error",{"_index":280,"name":{"323":{}},"parent":{"324":{},"325":{},"326":{},"327":{},"328":{}}}],["app/_services/keystore.service",{"_index":288,"name":{"330":{}},"parent":{"331":{}}}],["app/_services/keystore.service.keystoreservice",{"_index":290,"name":{},"parent":{"332":{},"333":{},"334":{}}}],["app/_services/location.service",{"_index":292,"name":{"335":{}},"parent":{"336":{}}}],["app/_services/location.service.locationservice",{"_index":294,"name":{},"parent":{"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{}}}],["app/_services/logging.service",{"_index":305,"name":{"348":{}},"parent":{"349":{}}}],["app/_services/logging.service.loggingservice",{"_index":306,"name":{},"parent":{"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{}}}],["app/_services/registry.service",{"_index":314,"name":{"358":{}},"parent":{"359":{}}}],["app/_services/registry.service.registryservice",{"_index":317,"name":{},"parent":{"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{}}}],["app/_services/token.service",{"_index":322,"name":{"368":{}},"parent":{"369":{}}}],["app/_services/token.service.tokenservice",{"_index":324,"name":{},"parent":{"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{}}}],["app/_services/transaction.service",{"_index":336,"name":{"385":{}},"parent":{"386":{}}}],["app/_services/transaction.service.transactionservice",{"_index":338,"name":{},"parent":{"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["app/_services/user.service",{"_index":351,"name":{"402":{}},"parent":{"403":{}}}],["app/_services/user.service.userservice",{"_index":353,"name":{},"parent":{"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{}}}],["app/_services/web3.service",{"_index":385,"name":{"440":{}},"parent":{"441":{}}}],["app/_services/web3.service.web3service",{"_index":387,"name":{},"parent":{"442":{},"443":{},"444":{}}}],["app/app",{"_index":389,"name":{"445":{}},"parent":{"446":{},"447":{}}}],["app/app.component",{"_index":393,"name":{"448":{}},"parent":{"449":{}}}],["app/app.component.appcomponent",{"_index":395,"name":{},"parent":{"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{}}}],["app/app.module",{"_index":404,"name":{"459":{}},"parent":{"460":{}}}],["app/app.module.appmodule",{"_index":406,"name":{},"parent":{"461":{}}}],["app/auth/_directives",{"_index":407,"name":{"462":{}},"parent":{}}],["app/auth/_directives/password",{"_index":408,"name":{"463":{}},"parent":{"464":{},"465":{},"466":{},"467":{},"468":{}}}],["app/auth/auth",{"_index":414,"name":{"469":{}},"parent":{"470":{},"471":{}}}],["app/auth/auth.component",{"_index":417,"name":{"472":{}},"parent":{"473":{}}}],["app/auth/auth.component.authcomponent",{"_index":419,"name":{},"parent":{"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{}}}],["app/auth/auth.module",{"_index":427,"name":{"485":{}},"parent":{"486":{}}}],["app/auth/auth.module.authmodule",{"_index":429,"name":{},"parent":{"487":{}}}],["app/pages/accounts/account",{"_index":430,"name":{"488":{},"538":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{}}}],["app/pages/accounts/accounts",{"_index":484,"name":{"553":{}},"parent":{"554":{},"555":{}}}],["app/pages/accounts/accounts.component",{"_index":487,"name":{"556":{}},"parent":{"557":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":489,"name":{},"parent":{"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{}}}],["app/pages/accounts/accounts.module",{"_index":498,"name":{"576":{}},"parent":{"577":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":500,"name":{},"parent":{"578":{}}}],["app/pages/accounts/create",{"_index":501,"name":{"579":{}},"parent":{"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{}}}],["app/pages/admin/admin",{"_index":508,"name":{"592":{}},"parent":{"593":{},"594":{}}}],["app/pages/admin/admin.component",{"_index":511,"name":{"595":{}},"parent":{"596":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":513,"name":{},"parent":{"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{}}}],["app/pages/admin/admin.module",{"_index":517,"name":{"611":{}},"parent":{"612":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":519,"name":{},"parent":{"613":{}}}],["app/pages/pages",{"_index":520,"name":{"614":{}},"parent":{"615":{},"616":{}}}],["app/pages/pages.component",{"_index":523,"name":{"617":{}},"parent":{"618":{}}}],["app/pages/pages.component.pagescomponent",{"_index":525,"name":{},"parent":{"619":{},"620":{}}}],["app/pages/pages.module",{"_index":526,"name":{"621":{}},"parent":{"622":{}}}],["app/pages/pages.module.pagesmodule",{"_index":528,"name":{},"parent":{"623":{}}}],["app/pages/settings/organization/organization.component",{"_index":529,"name":{"624":{}},"parent":{"625":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":531,"name":{},"parent":{"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{}}}],["app/pages/settings/settings",{"_index":534,"name":{"633":{}},"parent":{"634":{},"635":{}}}],["app/pages/settings/settings.component",{"_index":537,"name":{"636":{}},"parent":{"637":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":539,"name":{},"parent":{"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["app/pages/settings/settings.module",{"_index":541,"name":{"649":{}},"parent":{"650":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":543,"name":{},"parent":{"651":{}}}],["app/pages/tokens/token",{"_index":544,"name":{"652":{}},"parent":{"653":{},"654":{},"655":{},"656":{},"657":{},"658":{}}}],["app/pages/tokens/tokens",{"_index":550,"name":{"659":{}},"parent":{"660":{},"661":{}}}],["app/pages/tokens/tokens.component",{"_index":553,"name":{"662":{}},"parent":{"663":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":555,"name":{},"parent":{"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{}}}],["app/pages/tokens/tokens.module",{"_index":558,"name":{"676":{}},"parent":{"677":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":560,"name":{},"parent":{"678":{}}}],["app/pages/transactions/transaction",{"_index":561,"name":{"679":{}},"parent":{"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{}}}],["app/pages/transactions/transactions",{"_index":573,"name":{"696":{}},"parent":{"697":{},"698":{}}}],["app/pages/transactions/transactions.component",{"_index":576,"name":{"699":{}},"parent":{"700":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":578,"name":{},"parent":{"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{}}}],["app/pages/transactions/transactions.module",{"_index":581,"name":{"719":{}},"parent":{"720":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":583,"name":{},"parent":{"721":{}}}],["app/shared/_directives/menu",{"_index":584,"name":{"722":{},"726":{}},"parent":{"723":{},"724":{},"725":{},"727":{},"728":{},"729":{}}}],["app/shared/_pipes/safe.pipe",{"_index":592,"name":{"730":{}},"parent":{"731":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":594,"name":{},"parent":{"732":{},"733":{}}}],["app/shared/_pipes/token",{"_index":596,"name":{"734":{}},"parent":{"735":{},"736":{},"737":{}}}],["app/shared/_pipes/unix",{"_index":600,"name":{"738":{}},"parent":{"739":{},"740":{},"741":{}}}],["app/shared/error",{"_index":604,"name":{"742":{}},"parent":{"743":{},"744":{},"745":{}}}],["app/shared/footer/footer.component",{"_index":609,"name":{"746":{}},"parent":{"747":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":611,"name":{},"parent":{"748":{},"749":{},"750":{}}}],["app/shared/network",{"_index":613,"name":{"751":{}},"parent":{"752":{},"753":{},"754":{},"755":{},"756":{}}}],["app/shared/shared.module",{"_index":620,"name":{"757":{}},"parent":{"758":{}}}],["app/shared/shared.module.sharedmodule",{"_index":622,"name":{},"parent":{"759":{}}}],["app/shared/sidebar/sidebar.component",{"_index":623,"name":{"760":{}},"parent":{"761":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":625,"name":{},"parent":{"762":{},"763":{}}}],["app/shared/topbar/topbar.component",{"_index":626,"name":{"764":{}},"parent":{"765":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":628,"name":{},"parent":{"766":{},"767":{}}}],["appcomponent",{"_index":394,"name":{"449":{}},"parent":{}}],["appmodule",{"_index":405,"name":{"460":{}},"parent":{}}],["approutingmodule",{"_index":391,"name":{"446":{}},"parent":{}}],["approval",{"_index":145,"name":{"140":{}},"parent":{}}],["approvalstatus",{"_index":514,"name":{"606":{}},"parent":{}}],["approveaction",{"_index":371,"name":{"426":{},"607":{},"891":{}},"parent":{}}],["area",{"_index":117,"name":{"111":{},"523":{}},"parent":{}}],["area_name",{"_index":118,"name":{"112":{}},"parent":{}}],["area_type",{"_index":119,"name":{"113":{}},"parent":{}}],["areanames",{"_index":295,"name":{"338":{},"510":{},"586":{}},"parent":{}}],["areanameslist",{"_index":296,"name":{"339":{}},"parent":{}}],["areanamessubject",{"_index":297,"name":{"340":{}},"parent":{}}],["areatype",{"_index":458,"name":{"524":{}},"parent":{}}],["areatypes",{"_index":298,"name":{"341":{},"511":{}},"parent":{}}],["areatypeslist",{"_index":299,"name":{"342":{}},"parent":{}}],["areatypessubject",{"_index":300,"name":{"343":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"896":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":634,"name":{"773":{}},"parent":{"947":{}}}],["assets/js/ethtx/dist/hex",{"_index":629,"name":{"768":{}},"parent":{"769":{},"770":{},"771":{},"772":{}}}],["assets/js/ethtx/dist/tx",{"_index":635,"name":{"774":{}},"parent":{"775":{},"799":{},"800":{},"801":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":636,"name":{},"parent":{"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{}}}],["authcomponent",{"_index":418,"name":{"473":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"894":{}},"parent":{}}],["authmodule",{"_index":428,"name":{"486":{}},"parent":{}}],["authroutingmodule",{"_index":415,"name":{"470":{}},"parent":{}}],["authservice",{"_index":250,"name":{"291":{},"936":{}},"parent":{}}],["backend",{"_index":66,"name":{"59":{}},"parent":{"60":{},"63":{}}}],["backend.mockbackendinterceptor",{"_index":68,"name":{},"parent":{"61":{},"62":{}}}],["backend.mockbackendprovider",{"_index":71,"name":{},"parent":{"64":{}}}],["backend.mockbackendprovider.__type",{"_index":73,"name":{},"parent":{"65":{},"66":{},"67":{}}}],["balance",{"_index":104,"name":{"97":{},"173":{}},"parent":{}}],["block",{"_index":193,"name":{"195":{}},"parent":{}}],["blocksync",{"_index":275,"name":{"318":{}},"parent":{}}],["blocksyncservice",{"_index":271,"name":{"314":{},"940":{}},"parent":{}}],["bloxberg:8996",{"_index":111,"name":{"105":{}},"parent":{}}],["bloxbergchainid",{"_index":663,"name":{"806":{},"822":{},"838":{}},"parent":{}}],["bloxberglink",{"_index":456,"name":{"520":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["canonicalorder",{"_index":651,"name":{"794":{}},"parent":{}}],["categories",{"_index":361,"name":{"415":{},"509":{},"585":{}},"parent":{}}],["categorieslist",{"_index":362,"name":{"416":{}},"parent":{}}],["categoriessubject",{"_index":363,"name":{"417":{}},"parent":{}}],["category",{"_index":105,"name":{"98":{},"522":{}},"parent":{}}],["chainid",{"_index":643,"name":{"786":{}},"parent":{}}],["changeaccountinfo",{"_index":367,"name":{"422":{}},"parent":{}}],["checkonlinestatus",{"_index":77,"name":{"69":{},"911":{}},"parent":{}}],["ciccacheurl",{"_index":669,"name":{"812":{},"828":{},"844":{}},"parent":{}}],["cicconvert",{"_index":403,"name":{"458":{}},"parent":{}}],["cicmetaurl",{"_index":667,"name":{"810":{},"826":{},"842":{}},"parent":{}}],["cictransfer",{"_index":402,"name":{"457":{}},"parent":{}}],["cicussdurl",{"_index":671,"name":{"814":{},"830":{},"846":{}},"parent":{}}],["clearkeysinkeyring",{"_index":206,"name":{"207":{},"234":{}},"parent":{}}],["clearsignature",{"_index":655,"name":{"798":{}},"parent":{}}],["close",{"_index":549,"name":{"658":{},"695":{}},"parent":{}}],["closewindow",{"_index":548,"name":{"656":{},"683":{}},"parent":{}}],["columnstodisplay",{"_index":556,"name":{"666":{}},"parent":{}}],["comment",{"_index":158,"name":{"156":{}},"parent":{}}],["config.interceptor",{"_index":93,"name":{"85":{}},"parent":{"86":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":95,"name":{},"parent":{"87":{},"88":{}}}],["connectioninterceptor",{"_index":87,"name":{"78":{},"912":{}},"parent":{}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"48":{},"51":{},"61":{},"79":{},"83":{},"87":{},"92":{},"146":{},"233":{},"261":{},"292":{},"315":{},"325":{},"334":{},"337":{},"350":{},"367":{},"370":{},"387":{},"404":{},"444":{},"447":{},"450":{},"461":{},"465":{},"471":{},"474":{},"487":{},"490":{},"540":{},"555":{},"558":{},"578":{},"581":{},"594":{},"597":{},"613":{},"616":{},"619":{},"623":{},"626":{},"635":{},"638":{},"651":{},"654":{},"661":{},"664":{},"678":{},"681":{},"698":{},"701":{},"721":{},"724":{},"728":{},"732":{},"736":{},"740":{},"744":{},"748":{},"753":{},"759":{},"762":{},"766":{},"776":{},"855":{},"862":{},"868":{},"870":{},"872":{},"875":{},"879":{},"885":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":178,"name":{"177":{},"926":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":469,"name":{"537":{},"694":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"897":{}},"parent":{}}],["createaccountcomponent",{"_index":504,"name":{"580":{}},"parent":{}}],["createform",{"_index":506,"name":{"582":{}},"parent":{}}],["createformstub",{"_index":507,"name":{"590":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"70":{}},"parent":{"43":{},"71":{}}}],["currentyear",{"_index":612,"name":{"749":{}},"parent":{}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"899":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"898":{}},"parent":{}}],["dashboardurl",{"_index":674,"name":{"817":{},"833":{},"849":{}},"parent":{}}],["data",{"_index":129,"name":{"124":{},"132":{},"280":{},"745":{},"782":{}},"parent":{}}],["datasource",{"_index":490,"name":{"559":{},"598":{},"639":{},"665":{}},"parent":{}}],["date.pipe",{"_index":601,"name":{"738":{}},"parent":{"739":{}}}],["date.pipe.unixdatepipe",{"_index":603,"name":{},"parent":{"740":{},"741":{}}}],["date_registered",{"_index":106,"name":{"99":{}},"parent":{}}],["decimals",{"_index":167,"name":{"164":{}},"parent":{}}],["defaultaccount",{"_index":140,"name":{"135":{},"920":{}},"parent":{}}],["defaultpagesize",{"_index":492,"name":{"562":{},"704":{}},"parent":{}}],["destinationtoken",{"_index":179,"name":{"178":{}},"parent":{}}],["details.component",{"_index":432,"name":{"488":{},"652":{},"679":{}},"parent":{"489":{},"653":{},"680":{}}}],["details.component.accountdetailscomponent",{"_index":434,"name":{},"parent":{"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{}}}],["details.component.tokendetailscomponent",{"_index":547,"name":{},"parent":{"654":{},"655":{},"656":{},"657":{},"658":{}}}],["details.component.transactiondetailscomponent",{"_index":564,"name":{},"parent":{"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{}}}],["details/account",{"_index":431,"name":{"488":{}},"parent":{"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":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{}}}],["details/token",{"_index":545,"name":{"652":{}},"parent":{"653":{},"654":{},"655":{},"656":{},"657":{},"658":{}}}],["details/transaction",{"_index":562,"name":{"679":{}},"parent":{"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{}}}],["dgst",{"_index":237,"name":{"263":{}},"parent":{}}],["dialog",{"_index":285,"name":{"327":{}},"parent":{}}],["dialog.component",{"_index":606,"name":{"742":{}},"parent":{"743":{}}}],["dialog.component.errordialogcomponent",{"_index":608,"name":{},"parent":{"744":{},"745":{}}}],["dialog.service",{"_index":281,"name":{"323":{}},"parent":{"324":{}}}],["dialog.service.errordialogservice",{"_index":283,"name":{},"parent":{"325":{},"326":{},"327":{},"328":{}}}],["dialog/error",{"_index":605,"name":{"742":{}},"parent":{"743":{},"744":{},"745":{}}}],["digest",{"_index":138,"name":{"133":{},"277":{},"281":{}},"parent":{}}],["directive",{"_index":695,"name":{"860":{}},"parent":{"861":{},"862":{},"863":{},"864":{},"865":{}}}],["disapproveaction",{"_index":515,"name":{"608":{}},"parent":{}}],["displayedcolumns",{"_index":491,"name":{"561":{},"599":{},"640":{}},"parent":{}}],["dofilter",{"_index":496,"name":{"571":{},"605":{},"646":{},"673":{},"715":{}},"parent":{}}],["dotransactionfilter",{"_index":460,"name":{"527":{}},"parent":{}}],["douserfilter",{"_index":461,"name":{"528":{}},"parent":{}}],["downloadcsv",{"_index":468,"name":{"536":{},"575":{},"610":{},"647":{},"675":{},"718":{}},"parent":{}}],["email",{"_index":123,"name":{"118":{},"157":{}},"parent":{}}],["engine",{"_index":139,"name":{"134":{},"152":{},"264":{},"282":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["environment",{"_index":659,"name":{"803":{},"819":{},"835":{}},"parent":{}}],["environments/environment",{"_index":678,"name":{"834":{}},"parent":{"835":{}}}],["environments/environment.dev",{"_index":658,"name":{"802":{}},"parent":{"803":{}}}],["environments/environment.dev.environment",{"_index":660,"name":{},"parent":{"804":{}}}],["environments/environment.dev.environment.__type",{"_index":662,"name":{},"parent":{"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{}}}],["environments/environment.environment",{"_index":679,"name":{},"parent":{"836":{}}}],["environments/environment.environment.__type",{"_index":680,"name":{},"parent":{"837":{},"838":{},"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{},"848":{},"849":{}}}],["environments/environment.prod",{"_index":675,"name":{"818":{}},"parent":{"819":{}}}],["environments/environment.prod.environment",{"_index":676,"name":{},"parent":{"820":{}}}],["environments/environment.prod.environment.__type",{"_index":677,"name":{},"parent":{"821":{},"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["errordialogcomponent",{"_index":607,"name":{"743":{}},"parent":{}}],["errordialogservice",{"_index":282,"name":{"324":{},"943":{}},"parent":{}}],["errorinterceptor",{"_index":90,"name":{"82":{},"913":{}},"parent":{}}],["evm",{"_index":109,"name":{"103":{}},"parent":{}}],["expandcollapse",{"_index":516,"name":{"609":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"900":{}},"parent":{}}],["fetcher",{"_index":279,"name":{"322":{}},"parent":{}}],["filegetter",{"_index":316,"name":{"360":{}},"parent":{}}],["filteraccounts",{"_index":466,"name":{"533":{},"573":{}},"parent":{}}],["filtertransactions",{"_index":467,"name":{"534":{},"716":{}},"parent":{}}],["fingerprint",{"_index":242,"name":{"272":{},"284":{}},"parent":{}}],["fn",{"_index":124,"name":{"119":{}},"parent":{}}],["footercomponent",{"_index":610,"name":{"747":{}},"parent":{}}],["footerstubcomponent",{"_index":707,"name":{"871":{},"952":{}},"parent":{}}],["from",{"_index":187,"name":{"186":{}},"parent":{}}],["fromhex",{"_index":630,"name":{"769":{}},"parent":{}}],["fromvalue",{"_index":181,"name":{"179":{}},"parent":{}}],["gaslimit",{"_index":639,"name":{"779":{}},"parent":{}}],["gasprice",{"_index":638,"name":{"778":{}},"parent":{}}],["gender",{"_index":107,"name":{"100":{}},"parent":{}}],["genders",{"_index":455,"name":{"517":{},"588":{}},"parent":{}}],["getaccountbyaddress",{"_index":376,"name":{"431":{}},"parent":{}}],["getaccountbyphone",{"_index":377,"name":{"432":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":373,"name":{"428":{}},"parent":{}}],["getaccountinfo",{"_index":349,"name":{"400":{}},"parent":{}}],["getaccountregistry",{"_index":321,"name":{"366":{}},"parent":{}}],["getaccountstatus",{"_index":365,"name":{"420":{}},"parent":{}}],["getaccounttypes",{"_index":381,"name":{"436":{}},"parent":{}}],["getactionbyid",{"_index":370,"name":{"425":{},"890":{}},"parent":{}}],["getactions",{"_index":369,"name":{"424":{}},"parent":{}}],["getaddresstransactions",{"_index":344,"name":{"395":{}},"parent":{}}],["getalltransactions",{"_index":343,"name":{"394":{},"882":{}},"parent":{}}],["getareanamebylocation",{"_index":302,"name":{"345":{}},"parent":{}}],["getareanames",{"_index":301,"name":{"344":{}},"parent":{}}],["getareatypebyarea",{"_index":304,"name":{"347":{}},"parent":{}}],["getareatypes",{"_index":303,"name":{"346":{}},"parent":{}}],["getbysymbol",{"_index":713,"name":{"876":{}},"parent":{}}],["getcategories",{"_index":379,"name":{"434":{}},"parent":{}}],["getcategorybyproduct",{"_index":380,"name":{"435":{}},"parent":{}}],["getchallenge",{"_index":261,"name":{"303":{}},"parent":{}}],["getencryptkeys",{"_index":208,"name":{"208":{},"235":{}},"parent":{}}],["getfingerprint",{"_index":209,"name":{"209":{},"236":{}},"parent":{}}],["getgenders",{"_index":383,"name":{"438":{}},"parent":{}}],["getinstance",{"_index":388,"name":{"443":{}},"parent":{}}],["getkeyid",{"_index":210,"name":{"210":{},"237":{}},"parent":{}}],["getkeysforid",{"_index":211,"name":{"211":{},"238":{}},"parent":{}}],["getkeystore",{"_index":291,"name":{"333":{}},"parent":{}}],["getlockedaccounts",{"_index":366,"name":{"421":{}},"parent":{}}],["getprivatekey",{"_index":212,"name":{"212":{},"239":{},"311":{}},"parent":{}}],["getprivatekeyforid",{"_index":213,"name":{"213":{},"240":{}},"parent":{}}],["getprivatekeyid",{"_index":214,"name":{"214":{},"241":{}},"parent":{}}],["getprivatekeyinfo",{"_index":268,"name":{"312":{}},"parent":{}}],["getprivatekeys",{"_index":215,"name":{"215":{},"242":{}},"parent":{}}],["getpublickeyforid",{"_index":216,"name":{"216":{},"243":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":217,"name":{"217":{},"244":{}},"parent":{}}],["getpublickeys",{"_index":218,"name":{"218":{},"245":{},"310":{}},"parent":{}}],["getpublickeysforaddress",{"_index":219,"name":{"219":{},"246":{}},"parent":{}}],["getregistry",{"_index":319,"name":{"364":{}},"parent":{}}],["getsessiontoken",{"_index":256,"name":{"298":{}},"parent":{}}],["getter",{"_index":62,"name":{"56":{}},"parent":{"57":{}}}],["gettokenbalance",{"_index":333,"name":{"382":{}},"parent":{}}],["gettokenbyaddress",{"_index":331,"name":{"380":{}},"parent":{}}],["gettokenbysymbol",{"_index":332,"name":{"381":{}},"parent":{}}],["gettokenname",{"_index":334,"name":{"383":{}},"parent":{}}],["gettokenregistry",{"_index":320,"name":{"365":{}},"parent":{}}],["gettokens",{"_index":330,"name":{"379":{}},"parent":{}}],["gettokensymbol",{"_index":335,"name":{"384":{}},"parent":{}}],["gettransactiontypes",{"_index":382,"name":{"437":{}},"parent":{}}],["gettrustedactivekeys",{"_index":220,"name":{"220":{},"247":{}},"parent":{}}],["gettrustedkeys",{"_index":221,"name":{"221":{},"248":{}},"parent":{}}],["gettrustedusers",{"_index":267,"name":{"309":{}},"parent":{}}],["getuser",{"_index":722,"name":{"889":{}},"parent":{}}],["getuserbyid",{"_index":721,"name":{"888":{}},"parent":{}}],["getwithtoken",{"_index":259,"name":{"301":{}},"parent":{}}],["globalerrorhandler",{"_index":55,"name":{"50":{},"903":{}},"parent":{}}],["handleerror",{"_index":58,"name":{"53":{}},"parent":{}}],["handlenetworkchange",{"_index":619,"name":{"756":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"46":{},"50":{}}}],["handler.globalerrorhandler",{"_index":56,"name":{},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{}}}],["handler.httperror",{"_index":53,"name":{},"parent":{"47":{},"48":{},"49":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":354,"name":{"405":{}},"parent":{}}],["hextovalue",{"_index":657,"name":{"800":{}},"parent":{}}],["httpconfiginterceptor",{"_index":94,"name":{"86":{},"914":{}},"parent":{}}],["httperror",{"_index":51,"name":{"46":{},"902":{}},"parent":{}}],["httpgetter",{"_index":63,"name":{"57":{},"904":{}},"parent":{}}],["iconid",{"_index":412,"name":{"467":{}},"parent":{}}],["id",{"_index":131,"name":{"125":{},"128":{},"141":{},"466":{}},"parent":{}}],["identities",{"_index":108,"name":{"101":{}},"parent":{}}],["importkeypair",{"_index":222,"name":{"222":{},"249":{}},"parent":{}}],["importprivatekey",{"_index":223,"name":{"223":{},"250":{}},"parent":{}}],["importpublickey",{"_index":224,"name":{"224":{},"251":{}},"parent":{}}],["init",{"_index":255,"name":{"297":{},"377":{},"393":{},"418":{}},"parent":{}}],["intercept",{"_index":69,"name":{"62":{},"80":{},"84":{},"88":{},"93":{}},"parent":{}}],["isdialogopen",{"_index":284,"name":{"326":{}},"parent":{}}],["isencryptedprivatekey",{"_index":225,"name":{"225":{},"252":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":226,"name":{"226":{},"253":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"parent":{}}],["key",{"_index":203,"name":{"205":{}},"parent":{"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"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":{}}}],["keyform",{"_index":420,"name":{"475":{}},"parent":{}}],["keyformstub",{"_index":423,"name":{"480":{}},"parent":{}}],["keystore",{"_index":238,"name":{"265":{},"406":{}},"parent":{}}],["keystoreservice",{"_index":289,"name":{"331":{},"945":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":114,"name":{"107":{}},"parent":{}}],["link",{"_index":694,"name":{"860":{}},"parent":{"861":{},"862":{},"863":{},"864":{},"865":{}}}],["linkparams",{"_index":698,"name":{"863":{}},"parent":{}}],["load",{"_index":328,"name":{"376":{}},"parent":{}}],["loadaccounts",{"_index":375,"name":{"430":{}},"parent":{}}],["loading",{"_index":422,"name":{"477":{}},"parent":{}}],["loadkeyring",{"_index":227,"name":{"227":{},"254":{}},"parent":{}}],["location",{"_index":116,"name":{"109":{}},"parent":{}}],["locationservice",{"_index":293,"name":{"336":{},"941":{}},"parent":{}}],["logerror",{"_index":60,"name":{"55":{}},"parent":{}}],["logginginterceptor",{"_index":98,"name":{"91":{},"915":{}},"parent":{}}],["loggingservice",{"_index":239,"name":{"266":{},"349":{},"942":{}},"parent":{}}],["loggingurl",{"_index":666,"name":{"809":{},"825":{},"841":{}},"parent":{}}],["login",{"_index":262,"name":{"304":{},"482":{}},"parent":{}}],["loginview",{"_index":263,"name":{"305":{}},"parent":{}}],["loglevel",{"_index":664,"name":{"807":{},"823":{},"839":{}},"parent":{}}],["logout",{"_index":265,"name":{"307":{},"648":{}},"parent":{}}],["longitude",{"_index":115,"name":{"108":{}},"parent":{}}],["m",{"_index":135,"name":{"129":{}},"parent":{}}],["main",{"_index":681,"name":{"850":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"478":{},"518":{},"547":{},"583":{},"629":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":397,"name":{"452":{}},"parent":{}}],["menuselectiondirective",{"_index":586,"name":{"723":{}},"parent":{}}],["menutoggledirective",{"_index":589,"name":{"727":{}},"parent":{}}],["message",{"_index":653,"name":{"796":{}},"parent":{}}],["meta",{"_index":128,"name":{"123":{},"917":{}},"parent":{}}],["metaresponse",{"_index":133,"name":{"127":{},"918":{}},"parent":{}}],["mockbackendinterceptor",{"_index":67,"name":{"60":{},"905":{}},"parent":{}}],["mockbackendprovider",{"_index":70,"name":{"63":{},"906":{}},"parent":{}}],["module",{"_index":702,"name":{"866":{}},"parent":{"867":{},"868":{},"869":{},"870":{},"871":{},"872":{}}}],["multi",{"_index":75,"name":{"67":{}},"parent":{}}],["mutablekeystore",{"_index":205,"name":{"206":{},"293":{},"332":{},"930":{}},"parent":{}}],["mutablepgpkeystore",{"_index":232,"name":{"232":{},"931":{}},"parent":{}}],["n",{"_index":125,"name":{"120":{}},"parent":{}}],["name",{"_index":160,"name":{"158":{},"165":{},"202":{}},"parent":{}}],["navigatedto",{"_index":699,"name":{"864":{}},"parent":{}}],["networkstatuscomponent",{"_index":616,"name":{"752":{}},"parent":{}}],["newevent",{"_index":277,"name":{"320":{}},"parent":{}}],["ngafterviewinit",{"_index":459,"name":{"526":{},"570":{},"672":{},"717":{}},"parent":{}}],["ngoninit",{"_index":400,"name":{"455":{},"479":{},"525":{},"548":{},"569":{},"589":{},"604":{},"630":{},"645":{},"657":{},"671":{},"689":{},"713":{},"750":{},"755":{},"763":{},"767":{}},"parent":{}}],["nonce",{"_index":637,"name":{"777":{}},"parent":{}}],["oldchain:1",{"_index":113,"name":{"106":{}},"parent":{}}],["onaddresssearch",{"_index":483,"name":{"552":{}},"parent":{}}],["onclick",{"_index":700,"name":{"865":{}},"parent":{}}],["online",{"_index":618,"name":{"754":{}},"parent":{}}],["onmenuselect",{"_index":588,"name":{"725":{}},"parent":{}}],["onmenutoggle",{"_index":591,"name":{"729":{}},"parent":{}}],["onphonesearch",{"_index":482,"name":{"551":{}},"parent":{}}],["onresize",{"_index":401,"name":{"456":{}},"parent":{}}],["onsign",{"_index":240,"name":{"267":{},"285":{}},"parent":{}}],["onsubmit",{"_index":424,"name":{"481":{},"591":{},"632":{}},"parent":{}}],["onverify",{"_index":241,"name":{"269":{},"286":{}},"parent":{}}],["opendialog",{"_index":286,"name":{"328":{}},"parent":{}}],["organizationcomponent",{"_index":530,"name":{"625":{}},"parent":{}}],["organizationform",{"_index":532,"name":{"627":{}},"parent":{}}],["organizationformstub",{"_index":533,"name":{"631":{}},"parent":{}}],["owner",{"_index":168,"name":{"166":{}},"parent":{}}],["pagescomponent",{"_index":524,"name":{"618":{}},"parent":{}}],["pagesizeoptions",{"_index":493,"name":{"563":{},"705":{}},"parent":{}}],["pagesmodule",{"_index":527,"name":{"622":{}},"parent":{}}],["pagesroutingmodule",{"_index":521,"name":{"615":{}},"parent":{}}],["paginator",{"_index":494,"name":{"567":{},"602":{},"643":{},"667":{},"711":{}},"parent":{}}],["parammap",{"_index":690,"name":{"857":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":410,"name":{"464":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":82,"name":{"73":{},"908":{}},"parent":{}}],["pgpsigner",{"_index":235,"name":{"260":{},"932":{}},"parent":{}}],["phonesearchform",{"_index":474,"name":{"541":{}},"parent":{}}],["phonesearchformstub",{"_index":480,"name":{"549":{}},"parent":{}}],["phonesearchloading",{"_index":476,"name":{"543":{}},"parent":{}}],["phonesearchsubmitted",{"_index":475,"name":{"542":{}},"parent":{}}],["polyfills",{"_index":682,"name":{"851":{}},"parent":{}}],["prepare",{"_index":243,"name":{"273":{},"287":{}},"parent":{}}],["production",{"_index":661,"name":{"805":{},"821":{},"837":{}},"parent":{}}],["products",{"_index":120,"name":{"114":{}},"parent":{}}],["provide",{"_index":72,"name":{"65":{}},"parent":{}}],["provider",{"_index":155,"name":{"153":{}},"parent":{}}],["publickeysurl",{"_index":668,"name":{"811":{},"827":{},"843":{}},"parent":{}}],["r",{"_index":641,"name":{"784":{}},"parent":{}}],["ratio.pipe",{"_index":597,"name":{"734":{}},"parent":{"735":{}}}],["ratio.pipe.tokenratiopipe",{"_index":599,"name":{},"parent":{"736":{},"737":{}}}],["readcsv",{"_index":79,"name":{"71":{},"907":{}},"parent":{}}],["readystate",{"_index":274,"name":{"317":{}},"parent":{}}],["readystateprocessor",{"_index":276,"name":{"319":{}},"parent":{}}],["readystatetarget",{"_index":273,"name":{"316":{}},"parent":{}}],["recipient",{"_index":189,"name":{"187":{}},"parent":{}}],["recipientbloxberglink",{"_index":566,"name":{"685":{}},"parent":{}}],["refreshpaginator",{"_index":497,"name":{"574":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"147":{},"361":{},"371":{},"392":{},"408":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":672,"name":{"815":{},"831":{},"847":{}},"parent":{}}],["registryservice",{"_index":315,"name":{"359":{},"946":{}},"parent":{}}],["rejectbody",{"_index":50,"name":{"45":{},"901":{}},"parent":{}}],["removekeysforid",{"_index":228,"name":{"228":{},"255":{}},"parent":{}}],["removepublickey",{"_index":229,"name":{"229":{},"256":{}},"parent":{}}],["removepublickeyforid",{"_index":230,"name":{"230":{},"257":{}},"parent":{}}],["reserveratio",{"_index":169,"name":{"167":{}},"parent":{}}],["reserves",{"_index":170,"name":{"168":{}},"parent":{}}],["resetaccountslist",{"_index":378,"name":{"433":{}},"parent":{}}],["resetpin",{"_index":364,"name":{"419":{},"535":{}},"parent":{}}],["resettransactionslist",{"_index":348,"name":{"399":{}},"parent":{}}],["reversetransaction",{"_index":572,"name":{"693":{}},"parent":{}}],["revokeaction",{"_index":372,"name":{"427":{}},"parent":{}}],["role",{"_index":146,"name":{"142":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"895":{}},"parent":{}}],["route",{"_index":685,"name":{"853":{}},"parent":{"854":{},"855":{},"856":{},"857":{},"858":{}}}],["routerlinkdirectivestub",{"_index":696,"name":{"861":{},"949":{}},"parent":{}}],["routing.module",{"_index":390,"name":{"445":{},"469":{},"553":{},"592":{},"614":{},"633":{},"659":{},"696":{}},"parent":{"446":{},"470":{},"554":{},"593":{},"615":{},"634":{},"660":{},"697":{}}}],["routing.module.accountsroutingmodule",{"_index":486,"name":{},"parent":{"555":{}}}],["routing.module.adminroutingmodule",{"_index":510,"name":{},"parent":{"594":{}}}],["routing.module.approutingmodule",{"_index":392,"name":{},"parent":{"447":{}}}],["routing.module.authroutingmodule",{"_index":416,"name":{},"parent":{"471":{}}}],["routing.module.pagesroutingmodule",{"_index":522,"name":{},"parent":{"616":{}}}],["routing.module.settingsroutingmodule",{"_index":536,"name":{},"parent":{"635":{}}}],["routing.module.tokensroutingmodule",{"_index":552,"name":{},"parent":{"661":{}}}],["routing.module.transactionsroutingmodule",{"_index":575,"name":{},"parent":{"698":{}}}],["s",{"_index":642,"name":{"785":{}},"parent":{}}],["safepipe",{"_index":593,"name":{"731":{}},"parent":{}}],["saveinfo",{"_index":465,"name":{"532":{}},"parent":{}}],["scan",{"_index":278,"name":{"321":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":471,"name":{"538":{}},"parent":{"539":{}}}],["search.component.accountsearchcomponent",{"_index":473,"name":{},"parent":{"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{}}}],["search/account",{"_index":470,"name":{"538":{}},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{}}}],["selection.directive",{"_index":585,"name":{"722":{}},"parent":{"723":{}}}],["selection.directive.menuselectiondirective",{"_index":587,"name":{},"parent":{"724":{},"725":{}}}],["senddebuglevelmessage",{"_index":308,"name":{"352":{}},"parent":{}}],["sender",{"_index":190,"name":{"188":{}},"parent":{}}],["senderbloxberglink",{"_index":565,"name":{"684":{}},"parent":{}}],["senderrorlevelmessage",{"_index":312,"name":{"356":{}},"parent":{}}],["sendfatallevelmessage",{"_index":313,"name":{"357":{}},"parent":{}}],["sendinfolevelmessage",{"_index":309,"name":{"353":{}},"parent":{}}],["sendloglevelmessage",{"_index":310,"name":{"354":{}},"parent":{}}],["sendsignedchallenge",{"_index":260,"name":{"302":{}},"parent":{}}],["sendtracelevelmessage",{"_index":307,"name":{"351":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":311,"name":{"355":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":57,"name":{"52":{}},"parent":{}}],["serializebytes",{"_index":650,"name":{"793":{}},"parent":{}}],["serializenumber",{"_index":648,"name":{"791":{}},"parent":{}}],["serializerlp",{"_index":652,"name":{"795":{}},"parent":{}}],["serverloglevel",{"_index":665,"name":{"808":{},"824":{},"840":{}},"parent":{}}],["service",{"_index":710,"name":{"873":{},"877":{},"883":{}},"parent":{"874":{},"875":{},"876":{},"878":{},"879":{},"880":{},"881":{},"882":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["setconversion",{"_index":346,"name":{"397":{},"881":{}},"parent":{}}],["setkey",{"_index":264,"name":{"306":{}},"parent":{}}],["setparammap",{"_index":691,"name":{"858":{}},"parent":{}}],["setsessiontoken",{"_index":257,"name":{"299":{}},"parent":{}}],["setsignature",{"_index":654,"name":{"797":{}},"parent":{}}],["setstate",{"_index":258,"name":{"300":{}},"parent":{}}],["settings",{"_index":149,"name":{"145":{},"922":{}},"parent":{}}],["settingscomponent",{"_index":538,"name":{"637":{}},"parent":{}}],["settingsmodule",{"_index":542,"name":{"650":{}},"parent":{}}],["settingsroutingmodule",{"_index":535,"name":{"634":{}},"parent":{}}],["settransaction",{"_index":345,"name":{"396":{},"880":{}},"parent":{}}],["sharedmodule",{"_index":621,"name":{"758":{}},"parent":{}}],["sidebarcomponent",{"_index":624,"name":{"761":{}},"parent":{}}],["sidebarstubcomponent",{"_index":703,"name":{"867":{},"950":{}},"parent":{}}],["sign",{"_index":231,"name":{"231":{},"258":{},"274":{},"288":{}},"parent":{}}],["signable",{"_index":245,"name":{"276":{},"933":{}},"parent":{}}],["signature",{"_index":132,"name":{"126":{},"130":{},"271":{},"278":{},"919":{},"934":{}},"parent":{}}],["signer",{"_index":234,"name":{"259":{},"283":{},"407":{},"935":{}},"parent":{"260":{},"276":{},"278":{},"283":{}}}],["signer.pgpsigner",{"_index":236,"name":{},"parent":{"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{}}}],["signer.signable",{"_index":246,"name":{},"parent":{"277":{}}}],["signer.signature",{"_index":247,"name":{},"parent":{"279":{},"280":{},"281":{},"282":{}}}],["signer.signer",{"_index":248,"name":{},"parent":{"284":{},"285":{},"286":{},"287":{},"288":{},"289":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":495,"name":{"568":{},"603":{},"644":{},"668":{},"712":{}},"parent":{}}],["sourcetoken",{"_index":182,"name":{"180":{}},"parent":{}}],["staff",{"_index":157,"name":{"155":{},"924":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":54,"name":{"49":{},"68":{}},"parent":{"69":{}}}],["status.component",{"_index":615,"name":{"751":{}},"parent":{"752":{}}}],["status.component.networkstatuscomponent",{"_index":617,"name":{},"parent":{"753":{},"754":{},"755":{},"756":{}}}],["status/network",{"_index":614,"name":{"751":{}},"parent":{"752":{},"753":{},"754":{},"755":{},"756":{}}}],["store",{"_index":204,"name":{"205":{}},"parent":{"206":{},"232":{}}}],["store.mutablekeystore",{"_index":207,"name":{},"parent":{"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{}}}],["store.mutablepgpkeystore",{"_index":233,"name":{},"parent":{"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":{}}}],["stringtovalue",{"_index":656,"name":{"799":{}},"parent":{}}],["strip0x",{"_index":632,"name":{"771":{}},"parent":{}}],["stub",{"_index":686,"name":{"853":{},"860":{},"866":{},"873":{},"877":{},"883":{}},"parent":{"854":{},"861":{},"867":{},"869":{},"871":{},"874":{},"878":{},"884":{}}}],["stub.activatedroutestub",{"_index":688,"name":{},"parent":{"855":{},"856":{},"857":{},"858":{}}}],["stub.footerstubcomponent",{"_index":708,"name":{},"parent":{"872":{}}}],["stub.routerlinkdirectivestub",{"_index":697,"name":{},"parent":{"862":{},"863":{},"864":{},"865":{}}}],["stub.sidebarstubcomponent",{"_index":704,"name":{},"parent":{"868":{}}}],["stub.tokenservicestub",{"_index":712,"name":{},"parent":{"875":{},"876":{}}}],["stub.topbarstubcomponent",{"_index":706,"name":{},"parent":{"870":{}}}],["stub.transactionservicestub",{"_index":716,"name":{},"parent":{"879":{},"880":{},"881":{},"882":{}}}],["stub.userservicestub",{"_index":719,"name":{},"parent":{"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["subject",{"_index":689,"name":{"856":{}},"parent":{}}],["submitted",{"_index":421,"name":{"476":{},"519":{},"584":{},"628":{}},"parent":{}}],["success",{"_index":195,"name":{"196":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":175,"name":{"174":{}},"parent":{}}],["switchwindows",{"_index":425,"name":{"483":{}},"parent":{}}],["symbol",{"_index":176,"name":{"175":{},"203":{}},"parent":{}}],["sync.service",{"_index":270,"name":{"313":{}},"parent":{"314":{}}}],["sync.service.blocksyncservice",{"_index":272,"name":{},"parent":{"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{}}}],["tag",{"_index":161,"name":{"159":{}},"parent":{}}],["tel",{"_index":126,"name":{"121":{}},"parent":{}}],["test",{"_index":683,"name":{"852":{}},"parent":{}}],["testing",{"_index":692,"name":{"859":{}},"parent":{"948":{},"949":{},"950":{},"951":{},"952":{},"953":{},"954":{},"955":{}}}],["testing/activated",{"_index":684,"name":{"853":{}},"parent":{"854":{},"855":{},"856":{},"857":{},"858":{}}}],["testing/router",{"_index":693,"name":{"860":{}},"parent":{"861":{},"862":{},"863":{},"864":{},"865":{}}}],["testing/shared",{"_index":701,"name":{"866":{}},"parent":{"867":{},"868":{},"869":{},"870":{},"871":{},"872":{}}}],["testing/token",{"_index":709,"name":{"873":{}},"parent":{"874":{},"875":{},"876":{}}}],["testing/transaction",{"_index":714,"name":{"877":{}},"parent":{"878":{},"879":{},"880":{},"881":{},"882":{}}}],["testing/user",{"_index":717,"name":{"883":{}},"parent":{"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["timestamp",{"_index":196,"name":{"197":{}},"parent":{}}],["title",{"_index":396,"name":{"451":{}},"parent":{}}],["to",{"_index":191,"name":{"189":{},"780":{}},"parent":{}}],["toggle.directive",{"_index":409,"name":{"463":{},"726":{}},"parent":{"464":{},"727":{}}}],["toggle.directive.menutoggledirective",{"_index":590,"name":{},"parent":{"728":{},"729":{}}}],["toggle.directive.passwordtoggledirective",{"_index":411,"name":{},"parent":{"465":{},"466":{},"467":{},"468":{}}}],["toggledisplay",{"_index":426,"name":{"484":{}},"parent":{}}],["togglepasswordvisibility",{"_index":413,"name":{"468":{}},"parent":{}}],["tohex",{"_index":631,"name":{"770":{}},"parent":{}}],["token",{"_index":164,"name":{"162":{},"190":{},"655":{},"670":{},"925":{}},"parent":{}}],["tokendetailscomponent",{"_index":546,"name":{"653":{}},"parent":{}}],["tokenname",{"_index":568,"name":{"687":{}},"parent":{}}],["tokenratiopipe",{"_index":598,"name":{"735":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"362":{},"372":{},"893":{}},"parent":{}}],["tokens",{"_index":325,"name":{"373":{},"669":{}},"parent":{}}],["tokenscomponent",{"_index":554,"name":{"663":{}},"parent":{}}],["tokenservice",{"_index":323,"name":{"369":{},"939":{}},"parent":{}}],["tokenservicestub",{"_index":711,"name":{"874":{},"954":{}},"parent":{}}],["tokenslist",{"_index":326,"name":{"374":{}},"parent":{}}],["tokensmodule",{"_index":559,"name":{"677":{}},"parent":{}}],["tokensroutingmodule",{"_index":551,"name":{"660":{}},"parent":{}}],["tokenssubject",{"_index":327,"name":{"375":{}},"parent":{}}],["tokensymbol",{"_index":457,"name":{"521":{},"566":{},"688":{},"710":{}},"parent":{}}],["topbarcomponent",{"_index":627,"name":{"765":{}},"parent":{}}],["topbarstubcomponent",{"_index":705,"name":{"869":{},"951":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":183,"name":{"181":{},"801":{}},"parent":{}}],["trader",{"_index":184,"name":{"182":{}},"parent":{}}],["traderbloxberglink",{"_index":567,"name":{"686":{}},"parent":{}}],["transaction",{"_index":186,"name":{"185":{},"512":{},"682":{},"707":{},"927":{}},"parent":{}}],["transactiondatasource",{"_index":579,"name":{"702":{}},"parent":{}}],["transactiondetailscomponent",{"_index":563,"name":{"680":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":580,"name":{"703":{}},"parent":{}}],["transactionlist",{"_index":340,"name":{"389":{}},"parent":{}}],["transactions",{"_index":339,"name":{"388":{},"513":{},"706":{}},"parent":{}}],["transactionscomponent",{"_index":577,"name":{"700":{}},"parent":{}}],["transactionsdatasource",{"_index":435,"name":{"491":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":437,"name":{"493":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":436,"name":{"492":{}},"parent":{}}],["transactionservice",{"_index":337,"name":{"386":{},"937":{}},"parent":{}}],["transactionservicestub",{"_index":715,"name":{"878":{},"955":{}},"parent":{}}],["transactionsmodule",{"_index":582,"name":{"720":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":438,"name":{"494":{}},"parent":{}}],["transactionsroutingmodule",{"_index":574,"name":{"697":{}},"parent":{}}],["transactionssubject",{"_index":341,"name":{"390":{}},"parent":{}}],["transactionstype",{"_index":452,"name":{"514":{},"708":{}},"parent":{}}],["transactionstypes",{"_index":454,"name":{"516":{},"709":{}},"parent":{}}],["transactiontablepaginator",{"_index":439,"name":{"495":{}},"parent":{}}],["transactiontablesort",{"_index":440,"name":{"496":{}},"parent":{}}],["transferrequest",{"_index":350,"name":{"401":{}},"parent":{}}],["transform",{"_index":595,"name":{"733":{},"737":{},"741":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":673,"name":{"816":{},"832":{},"848":{}},"parent":{}}],["trustedusers",{"_index":252,"name":{"294":{},"641":{}},"parent":{}}],["trusteduserslist",{"_index":253,"name":{"295":{}},"parent":{}}],["trusteduserssubject",{"_index":254,"name":{"296":{}},"parent":{}}],["tx",{"_index":185,"name":{"183":{},"191":{},"194":{},"775":{},"928":{},"947":{}},"parent":{}}],["txhash",{"_index":197,"name":{"198":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"149":{}},"parent":{}}],["txindex",{"_index":198,"name":{"199":{}},"parent":{}}],["txtoken",{"_index":199,"name":{"200":{},"929":{}},"parent":{}}],["type",{"_index":121,"name":{"115":{},"192":{}},"parent":{}}],["unixdatepipe",{"_index":602,"name":{"739":{}},"parent":{}}],["updatemeta",{"_index":368,"name":{"423":{}},"parent":{}}],["updatesyncable",{"_index":85,"name":{"76":{},"910":{}},"parent":{}}],["url",{"_index":398,"name":{"453":{},"620":{}},"parent":{}}],["useclass",{"_index":74,"name":{"66":{}},"parent":{}}],["user",{"_index":147,"name":{"143":{},"184":{}},"parent":{}}],["userdatasource",{"_index":441,"name":{"497":{}},"parent":{}}],["userdisplayedcolumns",{"_index":442,"name":{"498":{}},"parent":{}}],["userid",{"_index":162,"name":{"160":{}},"parent":{}}],["userinfo",{"_index":540,"name":{"642":{}},"parent":{}}],["users",{"_index":720,"name":{"886":{}},"parent":{}}],["usersdefaultpagesize",{"_index":443,"name":{"499":{}},"parent":{}}],["userservice",{"_index":352,"name":{"403":{},"938":{}},"parent":{}}],["userservicestub",{"_index":718,"name":{"884":{},"953":{}},"parent":{}}],["userspagesizeoptions",{"_index":444,"name":{"500":{}},"parent":{}}],["usertablepaginator",{"_index":445,"name":{"501":{}},"parent":{}}],["usertablesort",{"_index":446,"name":{"502":{}},"parent":{}}],["v",{"_index":640,"name":{"783":{}},"parent":{}}],["validation",{"_index":81,"name":{"72":{}},"parent":{"73":{},"74":{}}}],["value",{"_index":192,"name":{"193":{},"781":{}},"parent":{}}],["vcard",{"_index":122,"name":{"116":{}},"parent":{}}],["vcardvalidation",{"_index":83,"name":{"74":{},"909":{}},"parent":{}}],["verify",{"_index":244,"name":{"275":{},"289":{}},"parent":{}}],["version",{"_index":127,"name":{"122":{}},"parent":{}}],["viewaccount",{"_index":463,"name":{"530":{},"572":{}},"parent":{}}],["viewrecipient",{"_index":570,"name":{"691":{}},"parent":{}}],["viewsender",{"_index":569,"name":{"690":{}},"parent":{}}],["viewtoken",{"_index":557,"name":{"674":{}},"parent":{}}],["viewtrader",{"_index":571,"name":{"692":{}},"parent":{}}],["viewtransaction",{"_index":462,"name":{"529":{},"714":{}},"parent":{}}],["w3",{"_index":153,"name":{"150":{},"151":{},"923":{}},"parent":{}}],["web3",{"_index":342,"name":{"391":{},"442":{}},"parent":{}}],["web3provider",{"_index":670,"name":{"813":{},"829":{},"845":{}},"parent":{}}],["web3service",{"_index":386,"name":{"441":{},"944":{}},"parent":{}}],["weight",{"_index":173,"name":{"172":{}},"parent":{}}],["wrap",{"_index":374,"name":{"429":{}},"parent":{}}],["write",{"_index":649,"name":{"792":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/typedoc/classes/app__interceptors_connection_interceptor.connectioninterceptor.html b/docs/typedoc/classes/app__interceptors_connection_interceptor.connectioninterceptor.html new file mode 100644 index 0000000..3eef76d --- /dev/null +++ b/docs/typedoc/classes/app__interceptors_connection_interceptor.connectioninterceptor.html @@ -0,0 +1,246 @@ + + + + + + ConnectionInterceptor | CICADA + + + + + + +
          +
          +
          +
          + +
          +
          + Options +
          +
          + All +
            +
          • Public
          • +
          • Public/Protected
          • +
          • All
          • +
          +
          + + + + +
          +
          + Menu +
          +
          +
          +
          +
          +
          + +

          Class ConnectionInterceptor

          +
          +
          +
          +
          +
          +
          +
          +
          +
          +

          Intercepts and handles of events from outgoing HTTP request.

          +
          +
          +
          +
          +

          Hierarchy

          +
            +
          • + ConnectionInterceptor +
          • +
          +
          +
          +

          Implements

          +
            +
          • HttpInterceptor
          • +
          +
          +
          +

          Index

          +
          +
          +
          +

          Constructors

          + +
          +
          +

          Methods

          + +
          +
          +
          +
          +
          +

          Constructors

          +
          + +

          constructor

          + +
            +
          • + +
            +
            +

            Initialization of the connection interceptor.

            +
            +
            +

            Parameters

            +
              +
            • +
              loggingService: LoggingService
              +
              +

              A service that provides logging capabilities.

              +
              +
            • +
            +

            Returns ConnectionInterceptor

            +
          • +
          +
          +
          +
          +

          Methods

          +
          + +

          intercept

          +
            +
          • intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>
          • +
          +
            +
          • + +
            +
            +

            Intercepts HTTP requests.

            +
            +
            +

            Parameters

            +
              +
            • +
              request: HttpRequest<unknown>
              +
              +

              An outgoing HTTP request with an optional typed body.

              +
              +
            • +
            • +
              next: HttpHandler
              +
              +

              The next HTTP handler or the outgoing request dispatcher.

              +
              +
            • +
            +

            Returns Observable<HttpEvent<unknown>>

            +

            The forwarded request.

            +
          • +
          +
          +
          +
          + +
          +
          +
          +
          +

          Legend

          +
          +
            +
          • Class
          • +
          • Constructor
          • +
          • Method
          • +
          +
            +
          • Variable
          • +
          • Function
          • +
          +
            +
          • Interface
          • +
          +
          +
          +
          +
          +

          Generated using TypeDoc

          +
          +
          + + + \ No newline at end of file diff --git a/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html b/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html index bdcb5f9..d4d90b5 100644 --- a/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html +++ b/docs/typedoc/classes/app__interceptors_error_interceptor.errorinterceptor.html @@ -114,7 +114,7 @@

          constructor

          • @@ -130,6 +130,12 @@

            Parameters

              +
            • +
              errorDialogService: ErrorDialogService
              +
              +

              A service that provides a dialog box for displaying errors to the user.

              +
              +
            • loggingService: LoggingService
              @@ -161,7 +167,7 @@
              diff --git a/docs/typedoc/classes/app__services_auth_service.authservice.html b/docs/typedoc/classes/app__services_auth_service.authservice.html index 757205a..75f1363 100644 --- a/docs/typedoc/classes/app__services_auth_service.authservice.html +++ b/docs/typedoc/classes/app__services_auth_service.authservice.html @@ -226,7 +226,7 @@
            • Returns Promise<any>

              @@ -362,7 +362,7 @@
            • Returns Promise<boolean>

              @@ -413,7 +413,7 @@
            • Parameters

              diff --git a/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html b/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html index 033d691..bf52d56 100644 --- a/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html +++ b/docs/typedoc/classes/app__services_block_sync_service.blocksyncservice.html @@ -196,7 +196,7 @@
            • Parameters

              @@ -222,7 +222,7 @@
            • Parameters

              @@ -248,7 +248,7 @@
            • Parameters

              @@ -283,7 +283,7 @@
            • Parameters

              diff --git a/docs/typedoc/classes/app__services_location_service.locationservice.html b/docs/typedoc/classes/app__services_location_service.locationservice.html index 0a79245..4726fe2 100644 --- a/docs/typedoc/classes/app__services_location_service.locationservice.html +++ b/docs/typedoc/classes/app__services_location_service.locationservice.html @@ -253,7 +253,7 @@
            • Parameters

              @@ -279,7 +279,7 @@
            • Returns void

              diff --git a/docs/typedoc/classes/app__services_user_service.userservice.html b/docs/typedoc/classes/app__services_user_service.userservice.html index fd6f524..baf0f99 100644 --- a/docs/typedoc/classes/app__services_user_service.userservice.html +++ b/docs/typedoc/classes/app__services_user_service.userservice.html @@ -311,7 +311,7 @@
            • Parameters

              @@ -413,7 +413,7 @@
            • Parameters

              @@ -439,7 +439,7 @@
            • Parameters

              @@ -511,7 +511,7 @@
            • Returns Observable<any>

              @@ -568,7 +568,7 @@
            • Returns void

              @@ -585,7 +585,7 @@
            • Parameters

              @@ -611,7 +611,7 @@
            • Returns Observable<any>

              @@ -654,7 +654,7 @@
            • Returns Observable<any>

              @@ -714,7 +714,7 @@
            • Returns void

              diff --git a/docs/typedoc/classes/app_app_component.appcomponent.html b/docs/typedoc/classes/app_app_component.appcomponent.html index 463339e..dd1d21d 100644 --- a/docs/typedoc/classes/app_app_component.appcomponent.html +++ b/docs/typedoc/classes/app_app_component.appcomponent.html @@ -95,8 +95,10 @@

              Properties

              @@ -117,13 +119,13 @@

              constructor

              • Parameters

                @@ -152,6 +154,9 @@
              • swUpdate: SwUpdate
              • +
              • +
                router: Router
                +

              Returns AppComponent

            • @@ -160,13 +165,23 @@

              Properties

              +
              + +

              accountDetailsRegex

              +
              accountDetailsRegex: string = '/accounts/[a-z,A-Z,0-9]{40}'
              + +

              mediaQuery

              mediaQuery: MediaQueryList = ...
              @@ -176,7 +191,17 @@
              title: string = 'CICADA'
              +
              +
              + +

              url

              +
              url: string
              +
              @@ -193,7 +218,7 @@
            • Parameters

              @@ -216,7 +241,7 @@
            • Parameters

              @@ -240,7 +265,7 @@

              Returns Promise<void>

              @@ -257,7 +282,7 @@
            • Parameters

              @@ -293,12 +318,18 @@
            • constructor
            • +
            • + accountDetailsRegex +
            • mediaQuery
            • title
            • +
            • + url +
            • cicConvert
            • diff --git a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html index 762fa33..21a0608 100644 --- a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html @@ -80,6 +80,7 @@

              Implements

              • OnInit
              • +
              • AfterViewInit
              @@ -146,6 +147,7 @@
            • downloadCsv
            • filterAccounts
            • filterTransactions
            • +
            • ngAfterViewInit
            • ngOnInit
            • resetPin
            • saveInfo
            • @@ -168,7 +170,7 @@
            • Parameters

              @@ -220,7 +222,7 @@
            • @@ -230,7 +232,7 @@
              accountAddress: string
              @@ -240,7 +242,7 @@
              accountInfoForm: FormGroup
              @@ -250,7 +252,7 @@
              accountStatus: any
              @@ -260,7 +262,7 @@
              accountTypes: string[]
              @@ -270,7 +272,7 @@
              accounts: AccountDetails[] = []
              @@ -280,7 +282,7 @@
              accountsType: string = 'all'
              @@ -290,7 +292,7 @@
              area: string
              @@ -300,7 +302,7 @@
              areaNames: string[]
              @@ -310,7 +312,7 @@
              areaType: string
              @@ -320,7 +322,7 @@
              areaTypes: string[]
              @@ -330,7 +332,7 @@
              bloxbergLink: string
              @@ -340,7 +342,7 @@
              categories: string[]
              @@ -350,7 +352,7 @@
              category: string
              @@ -360,7 +362,7 @@
              genders: string[]
              @@ -370,7 +372,7 @@ @@ -380,7 +382,7 @@
              submitted: boolean = false
              @@ -390,7 +392,7 @@
              tokenSymbol: string
              @@ -400,7 +402,7 @@
              transaction: any
              @@ -410,7 +412,7 @@
              transactionTablePaginator: MatPaginator
              @@ -420,7 +422,7 @@
              transactionTableSort: MatSort
              @@ -430,7 +432,7 @@
              transactions: Transaction[]
              @@ -440,7 +442,7 @@
              transactionsDataSource: MatTableDataSource<any>
              @@ -450,7 +452,7 @@
              transactionsDefaultPageSize: number = 10
              @@ -460,7 +462,7 @@
              transactionsDisplayedColumns: string[] = ...
              @@ -470,7 +472,7 @@
              transactionsPageSizeOptions: number[] = ...
              @@ -480,7 +482,7 @@
              transactionsType: string = 'all'
              @@ -490,7 +492,7 @@
              transactionsTypes: string[]
              @@ -500,7 +502,7 @@
              userDataSource: MatTableDataSource<any>
              @@ -510,7 +512,7 @@
              userDisplayedColumns: string[] = ...
              @@ -520,7 +522,7 @@
              userTablePaginator: MatPaginator
              @@ -530,7 +532,7 @@
              userTableSort: MatSort
              @@ -540,7 +542,7 @@
              usersDefaultPageSize: number = 10
              @@ -550,7 +552,7 @@
              usersPageSizeOptions: number[] = ...
              @@ -567,7 +569,7 @@
            • Returns any

              @@ -587,7 +589,7 @@
            • Returns void

              @@ -604,7 +606,7 @@
            • Parameters

              @@ -627,7 +629,7 @@
            • Parameters

              @@ -650,7 +652,7 @@
            • Parameters

              @@ -676,7 +678,7 @@
            • Returns void

              @@ -693,7 +695,25 @@
            • +

              Returns void

              +
            • +
            + +
            + +

            ngAfterViewInit

            +
              +
            • ngAfterViewInit(): void
            • +
            +
              +
            • +

              Returns void

              @@ -711,7 +731,7 @@

              Returns Promise<void>

              @@ -728,7 +748,7 @@
            • Returns void

              @@ -745,7 +765,7 @@
            • Returns Promise<void>

              @@ -762,7 +782,7 @@
            • Parameters

              @@ -785,7 +805,7 @@
            • Parameters

              @@ -944,6 +964,9 @@
            • filterTransactions
            • +
            • + ngAfterViewInit +
            • ngOnInit
            • diff --git a/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html b/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html index 9041100..52fb7d4 100644 --- a/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_accounts_component.accountscomponent.html @@ -80,6 +80,7 @@

              Implements

              • OnInit
              • +
              • AfterViewInit
            @@ -113,6 +114,7 @@
          • doFilter
          • downloadCsv
          • filterAccounts
          • +
          • ngAfterViewInit
          • ngOnInit
          • refreshPaginator
          • viewAccount
          • @@ -127,17 +129,20 @@

            constructor

            • Parameters

                +
              • +
                loggingService: LoggingService
                +
              • userService: UserService
              • @@ -161,7 +166,7 @@
                accountTypes: string[]
            @@ -171,7 +176,7 @@
            accounts: AccountDetails[] = []
            @@ -181,7 +186,7 @@
            accountsType: string = 'all'
            @@ -191,7 +196,7 @@
            dataSource: MatTableDataSource<any>
            @@ -201,7 +206,7 @@
            defaultPageSize: number = 10
            @@ -211,7 +216,7 @@
            displayedColumns: string[] = ...
            @@ -221,7 +226,7 @@
            pageSizeOptions: number[] = ...
            @@ -231,7 +236,7 @@
            paginator: MatPaginator
            @@ -241,7 +246,7 @@
            sort: MatSort
            @@ -251,7 +256,7 @@
            tokenSymbol: string
            @@ -268,7 +273,7 @@
          • Parameters

            @@ -291,7 +296,7 @@
          • Returns void

            @@ -308,7 +313,25 @@
          • +

            Returns void

            +
          • +
          + +
          + +

          ngAfterViewInit

          +
            +
          • ngAfterViewInit(): void
          • +
          +
            +
          • +

            Returns void

            @@ -319,17 +342,17 @@

            ngOnInit

              -
            • ngOnInit(): void
            • +
            • ngOnInit(): Promise<void>
            • -

              Returns void

              +

              Returns Promise<void>

          @@ -343,7 +366,7 @@
        • Returns void

          @@ -360,7 +383,7 @@
        • Parameters

          @@ -435,6 +458,9 @@
        • filterAccounts
        • +
        • + ngAfterViewInit +
        • ngOnInit
        • diff --git a/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html b/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html index b1d836b..7b52aba 100644 --- a/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html +++ b/docs/typedoc/classes/app_pages_tokens_tokens_component.tokenscomponent.html @@ -80,6 +80,7 @@

          Implements

          • OnInit
          • +
          • AfterViewInit
          @@ -108,6 +109,7 @@ @@ -127,7 +129,7 @@
        • Parameters

          @@ -149,7 +151,7 @@
          columnsToDisplay: string[] = ...
        • @@ -159,7 +161,7 @@
          dataSource: MatTableDataSource<any>
          @@ -169,7 +171,7 @@
          paginator: MatPaginator
          @@ -179,7 +181,7 @@
          sort: MatSort
          @@ -189,7 +191,7 @@
          token: Token
          @@ -199,7 +201,7 @@
          tokens: Token[]
          @@ -216,7 +218,7 @@
        • Parameters

          @@ -239,7 +241,25 @@
        • +

          Returns void

          +
        • +
        + +
        + +

        ngAfterViewInit

        +
          +
        • ngAfterViewInit(): void
        • +
        +
          +
        • +

          Returns void

          @@ -257,7 +277,7 @@

          Returns void

          @@ -274,7 +294,7 @@
        • Parameters

          @@ -334,6 +354,9 @@
        • downloadCsv
        • +
        • + ngAfterViewInit +
        • ngOnInit
        • diff --git a/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html b/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html index 9bc2c8f..5092e59 100644 --- a/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html +++ b/docs/typedoc/classes/app_pages_transactions_transactions_component.transactionscomponent.html @@ -129,7 +129,7 @@

          constructor

          • @@ -140,6 +140,9 @@

            Parameters

              +
            • +
              blockSyncService: BlockSyncService
              +
            • transactionService: TransactionService
            • @@ -280,7 +283,7 @@
            • Parameters

              @@ -306,7 +309,7 @@
            • Returns void

              @@ -323,7 +326,7 @@
            • Returns void

              @@ -341,7 +344,7 @@

              Returns void

              @@ -352,17 +355,17 @@

              ngOnInit

                -
              • ngOnInit(): void
              • +
              • ngOnInit(): Promise<void>
              • -

                Returns void

                +

                Returns Promise<void>

        @@ -376,7 +379,7 @@
      • Parameters

        diff --git a/docs/typedoc/classes/app_shared_network_status_network_status_component.networkstatuscomponent.html b/docs/typedoc/classes/app_shared_network_status_network_status_component.networkstatuscomponent.html index 92097b1..a9628be 100644 --- a/docs/typedoc/classes/app_shared_network_status_network_status_component.networkstatuscomponent.html +++ b/docs/typedoc/classes/app_shared_network_status_network_status_component.networkstatuscomponent.html @@ -95,7 +95,7 @@

        Properties

        @@ -120,7 +120,7 @@
      • Parameters

        @@ -137,12 +137,12 @@

        Properties

        - -

        noInternetConnection

        -
        noInternetConnection: boolean = !navigator.onLine
        + +

        online

        +
        online: boolean = ...
        @@ -159,7 +159,7 @@
      • Returns void

        @@ -177,7 +177,7 @@

        Returns void

        @@ -208,7 +208,7 @@ constructor
      • - noInternetConnection + online
      • handleNetworkChange diff --git a/docs/typedoc/index.html b/docs/typedoc/index.html index 3c6d083..9b95eef 100644 --- a/docs/typedoc/index.html +++ b/docs/typedoc/index.html @@ -171,6 +171,9 @@
      • app/_helpers/mock-backend
      • +
      • + app/_helpers/online-status +
      • app/_helpers/read-csv
      • @@ -183,6 +186,9 @@
      • app/_interceptors
      • +
      • + app/_interceptors/connection.interceptor +
      • app/_interceptors/error.interceptor
      • diff --git a/docs/typedoc/modules.html b/docs/typedoc/modules.html index dbb0e5c..999c9c9 100644 --- a/docs/typedoc/modules.html +++ b/docs/typedoc/modules.html @@ -79,10 +79,12 @@
      • app/_helpers/global-error-handler
      • app/_helpers/http-getter
      • app/_helpers/mock-backend
      • +
      • app/_helpers/online-status
      • app/_helpers/read-csv
      • app/_helpers/schema-validation
      • app/_helpers/sync
      • app/_interceptors
      • +
      • app/_interceptors/connection.interceptor
      • app/_interceptors/error.interceptor
      • app/_interceptors/http-config.interceptor
      • app/_interceptors/logging.interceptor
      • @@ -224,6 +226,9 @@
      • app/_helpers/mock-backend
      • +
      • + app/_helpers/online-status +
      • app/_helpers/read-csv
      • @@ -236,6 +241,9 @@
      • app/_interceptors
      • +
      • + app/_interceptors/connection.interceptor +
      • app/_interceptors/error.interceptor
      • diff --git a/docs/typedoc/modules/app__helpers.html b/docs/typedoc/modules/app__helpers.html index ef91f32..99442e2 100644 --- a/docs/typedoc/modules/app__helpers.html +++ b/docs/typedoc/modules/app__helpers.html @@ -80,6 +80,7 @@
      • MockBackendInterceptor
      • MockBackendProvider
      • arraySum
      • +
      • checkOnlineStatus
      • copyToClipboard
      • exportCsv
      • personValidation
      • @@ -134,6 +135,11 @@

        arraySum

        Re-exports arraySum
        +
        + +

        checkOnlineStatus

        + Re-exports checkOnlineStatus +

        copyToClipboard

        @@ -208,6 +214,9 @@
      • arraySum
      • +
      • + checkOnlineStatus +
      • copyToClipboard
      • diff --git a/docs/typedoc/modules/app__helpers_online_status.html b/docs/typedoc/modules/app__helpers_online_status.html new file mode 100644 index 0000000..e876cae --- /dev/null +++ b/docs/typedoc/modules/app__helpers_online_status.html @@ -0,0 +1,146 @@ + + + + + + app/_helpers/online-status | CICADA + + + + + + +
        +
        +
        +
        + +
        +
        + Options +
        +
        + All +
          +
        • Public
        • +
        • Public/Protected
        • +
        • All
        • +
        +
        + + + + +
        +
        + Menu +
        +
        +
        +
        +
        +
        + +

        Module app/_helpers/online-status

        +
        +
        +
        +
        +
        +
        +
        +

        Index

        +
        +
        +
        +

        Functions

        + +
        +
        +
        +
        +
        +

        Functions

        +
        + +

        checkOnlineStatus

        +
          +
        • checkOnlineStatus(): Promise<boolean>
        • +
        +
          +
        • + +

          Returns Promise<boolean>

          +
        • +
        +
        +
        +
        + +
        +
        +
        +
        +

        Legend

        +
        +
          +
        • Variable
        • +
        • Function
        • +
        +
          +
        • Interface
        • +
        +
          +
        • Class
        • +
        +
        +
        +
        +
        +

        Generated using TypeDoc

        +
        +
        + + + \ No newline at end of file diff --git a/docs/typedoc/modules/app__interceptors.html b/docs/typedoc/modules/app__interceptors.html index a13df14..5c30632 100644 --- a/docs/typedoc/modules/app__interceptors.html +++ b/docs/typedoc/modules/app__interceptors.html @@ -72,6 +72,7 @@

        References

        References

        +
        + +

        ConnectionInterceptor

        + Re-exports ConnectionInterceptor +

        ErrorInterceptor

        @@ -112,6 +118,9 @@
      • search +
        +

        Loading Accounts!

        + +
        + 0) { + this.accountsLoading = false; + } this.cdr.detectChanges(); }); @@ -163,6 +168,9 @@ export class AccountDetailsComponent implements OnInit, AfterViewInit { this.transactionsDataSource.paginator = this.transactionTablePaginator; this.transactionsDataSource.sort = this.transactionTableSort; this.transactions = transactions; + if (transactions.length > 0) { + this.transactionsLoading = false; + } this.cdr.detectChanges(); }); this.userService.getCategories(); diff --git a/src/app/pages/accounts/accounts.component.html b/src/app/pages/accounts/accounts.component.html index 62bc39f..5831b2a 100644 --- a/src/app/pages/accounts/accounts.component.html +++ b/src/app/pages/accounts/accounts.component.html @@ -64,6 +64,11 @@ search +
        +

        Loading Accounts!

        + +
        + ; tokenSymbol: string; + loading: boolean = true; @ViewChild(MatPaginator) paginator: MatPaginator; @ViewChild(MatSort) sort: MatSort; @@ -48,6 +49,9 @@ export class AccountsComponent implements OnInit, AfterViewInit { this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; this.accounts = accounts; + if (accounts.length > 0) { + this.loading = false; + } }); try { // TODO it feels like this should be in the onInit handler diff --git a/src/app/pages/accounts/accounts.module.ts b/src/app/pages/accounts/accounts.module.ts index 2d3cf37..fde59b1 100644 --- a/src/app/pages/accounts/accounts.module.ts +++ b/src/app/pages/accounts/accounts.module.ts @@ -23,6 +23,7 @@ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { ReactiveFormsModule } from '@angular/forms'; import { AccountSearchComponent } from './account-search/account-search.component'; import { MatSnackBarModule } from '@angular/material/snack-bar'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; @NgModule({ declarations: [ @@ -51,6 +52,7 @@ import { MatSnackBarModule } from '@angular/material/snack-bar'; MatProgressSpinnerModule, ReactiveFormsModule, MatSnackBarModule, + MatProgressBarModule, ], }) export class AccountsModule {} diff --git a/src/app/pages/admin/admin.component.html b/src/app/pages/admin/admin.component.html index b933f3e..950057d 100644 --- a/src/app/pages/admin/admin.component.html +++ b/src/app/pages/admin/admin.component.html @@ -43,6 +43,11 @@ search +
        +

        Loading Actions!

        + +
        + diff --git a/src/app/pages/admin/admin.component.ts b/src/app/pages/admin/admin.component.ts index 6dcfd5f..c505c80 100644 --- a/src/app/pages/admin/admin.component.ts +++ b/src/app/pages/admin/admin.component.ts @@ -26,6 +26,7 @@ export class AdminComponent implements OnInit { displayedColumns: Array = ['expand', 'user', 'role', 'action', 'status', 'approve']; action: Action; actions: Array; + loading: boolean = true; @ViewChild(MatPaginator) paginator: MatPaginator; @ViewChild(MatSort) sort: MatSort; @@ -39,6 +40,9 @@ export class AdminComponent implements OnInit { this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; this.actions = actions; + if (actions.length > 0) { + this.loading = false; + } }); } diff --git a/src/app/pages/admin/admin.module.ts b/src/app/pages/admin/admin.module.ts index 7e50ba1..d29f774 100644 --- a/src/app/pages/admin/admin.module.ts +++ b/src/app/pages/admin/admin.module.ts @@ -13,6 +13,7 @@ import { MatSortModule } from '@angular/material/sort'; import { MatPaginatorModule } from '@angular/material/paginator'; import { MatButtonModule } from '@angular/material/button'; import { MatRippleModule } from '@angular/material/core'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; @NgModule({ declarations: [AdminComponent], @@ -29,6 +30,7 @@ import { MatRippleModule } from '@angular/material/core'; MatPaginatorModule, MatButtonModule, MatRippleModule, + MatProgressBarModule, ], }) export class AdminModule {} diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index 94ee6c9..02fe0a1 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -22,10 +22,10 @@ const routes: Routes = [ path: 'tokens', loadChildren: () => import('@pages/tokens/tokens.module').then((m) => m.TokensModule), }, - { - path: 'admin', - loadChildren: () => import('@pages/admin/admin.module').then((m) => m.AdminModule), - }, + // { + // path: 'admin', + // loadChildren: () => import('@pages/admin/admin.module').then((m) => m.AdminModule), + // }, { path: '**', redirectTo: 'home', pathMatch: 'full' }, ]; diff --git a/src/app/pages/settings/settings.component.html b/src/app/pages/settings/settings.component.html index 2ed99a0..24fc878 100644 --- a/src/app/pages/settings/settings.component.html +++ b/src/app/pages/settings/settings.component.html @@ -40,6 +40,7 @@ +
        @@ -67,6 +68,12 @@ /> search + +
        +

        Loading Trusted Users!

        + +
        + = ['name', 'email', 'userId']; trustedUsers: Array; userInfo: Staff; + loading: boolean = true; @ViewChild(MatPaginator) paginator: MatPaginator; @ViewChild(MatSort) sort: MatSort; @@ -29,6 +30,9 @@ export class SettingsComponent implements OnInit { this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; this.trustedUsers = users; + if (users.length > 0) { + this.loading = false; + } }); this.userInfo = this.authService.getPrivateKeyInfo(); } diff --git a/src/app/pages/settings/settings.module.ts b/src/app/pages/settings/settings.module.ts index 139feae..0eb5648 100644 --- a/src/app/pages/settings/settings.module.ts +++ b/src/app/pages/settings/settings.module.ts @@ -18,6 +18,7 @@ import { MatCheckboxModule } from '@angular/material/checkbox'; import { MatSelectModule } from '@angular/material/select'; import { MatMenuModule } from '@angular/material/menu'; import { ReactiveFormsModule } from '@angular/forms'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; @NgModule({ declarations: [SettingsComponent, OrganizationComponent], @@ -38,6 +39,7 @@ import { ReactiveFormsModule } from '@angular/forms'; MatSelectModule, MatMenuModule, ReactiveFormsModule, + MatProgressBarModule, ], }) export class SettingsModule {} diff --git a/src/app/pages/tokens/tokens.component.html b/src/app/pages/tokens/tokens.component.html index 56d843b..bebf178 100644 --- a/src/app/pages/tokens/tokens.component.html +++ b/src/app/pages/tokens/tokens.component.html @@ -45,6 +45,11 @@ search +
        +

        Loading Tokens!

        + +
        + ; token: Token; + loading: boolean = true; constructor(private tokenService: TokenService) {} @@ -39,6 +40,9 @@ export class TokensComponent implements OnInit, AfterViewInit { this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; this.tokens = tokens; + if (tokens.length > 0) { + this.loading = false; + } }); } diff --git a/src/app/pages/tokens/tokens.module.ts b/src/app/pages/tokens/tokens.module.ts index 938d4fb..b3a6332 100644 --- a/src/app/pages/tokens/tokens.module.ts +++ b/src/app/pages/tokens/tokens.module.ts @@ -17,6 +17,7 @@ import { MatSidenavModule } from '@angular/material/sidenav'; import { MatButtonModule } from '@angular/material/button'; import { MatToolbarModule } from '@angular/material/toolbar'; import { MatCardModule } from '@angular/material/card'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; @NgModule({ declarations: [TokensComponent, TokenDetailsComponent], @@ -37,6 +38,7 @@ import { MatCardModule } from '@angular/material/card'; MatToolbarModule, MatCardModule, MatRippleModule, + MatProgressBarModule, ], }) export class TokensModule {} diff --git a/src/app/pages/transactions/transactions.component.html b/src/app/pages/transactions/transactions.component.html index 96cfcc9..cfceae0 100644 --- a/src/app/pages/transactions/transactions.component.html +++ b/src/app/pages/transactions/transactions.component.html @@ -63,6 +63,11 @@ search +
        +

        Loading Transactions!

        + +
        +
        ; tokenSymbol: string; + loading: boolean = true; @ViewChild(MatPaginator) paginator: MatPaginator; @ViewChild(MatSort) sort: MatSort; @@ -47,6 +48,9 @@ export class TransactionsComponent implements OnInit, AfterViewInit { this.transactionDataSource.paginator = this.paginator; this.transactionDataSource.sort = this.sort; this.transactions = transactions; + if (transactions.length > 0) { + this.loading = false; + } }); this.userService .getTransactionTypes() diff --git a/src/app/pages/transactions/transactions.module.ts b/src/app/pages/transactions/transactions.module.ts index 4a5b044..e71342b 100644 --- a/src/app/pages/transactions/transactions.module.ts +++ b/src/app/pages/transactions/transactions.module.ts @@ -17,6 +17,7 @@ import { MatSelectModule } from '@angular/material/select'; import { MatCardModule } from '@angular/material/card'; import { MatRippleModule } from '@angular/material/core'; import { MatSnackBarModule } from '@angular/material/snack-bar'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; @NgModule({ declarations: [TransactionsComponent, TransactionDetailsComponent], @@ -37,6 +38,7 @@ import { MatSnackBarModule } from '@angular/material/snack-bar'; MatCardModule, MatRippleModule, MatSnackBarModule, + MatProgressBarModule, ], }) export class TransactionsModule {} From 951904abf36a06f7d1747e2c39c4fda6d1518a6f Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 7 Jul 2021 17:08:45 +0300 Subject: [PATCH 15/16] Add default response for get category by product method. --- src/app/_services/user.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/_services/user.service.ts b/src/app/_services/user.service.ts index 26a6b0d..d6d95a6 100644 --- a/src/app/_services/user.service.ts +++ b/src/app/_services/user.service.ts @@ -277,6 +277,7 @@ export class UserService { return queriedCategory; } } + return 'other'; } getAccountTypes(): Observable { From ecfefc1d3a8f7f7536c7d9743848b148adfbe4a5 Mon Sep 17 00:00:00 2001 From: Blair Vanderlugt Date: Tue, 13 Jul 2021 09:24:49 -0700 Subject: [PATCH 16/16] take master docs for rn --- docs/compodoc/classes/AccountIndex.html | 19 +- .../components/AccountDetailsComponent.html | 179 +++----- .../components/AccountSearchComponent.html | 229 +++++++++- .../components/AccountsComponent.html | 132 ++---- docs/compodoc/components/AdminComponent.html | 36 +- docs/compodoc/components/AppComponent.html | 258 ++++------- docs/compodoc/components/AuthComponent.html | 44 +- .../components/CreateAccountComponent.html | 16 +- .../components/NetworkStatusComponent.html | 48 +- .../components/SettingsComponent.html | 69 ++- docs/compodoc/components/TokensComponent.html | 139 +++--- .../TransactionDetailsComponent.html | 35 +- .../components/TransactionsComponent.html | 32 +- docs/compodoc/coverage.html | 56 +-- docs/compodoc/graph/dependencies.svg | 416 +++++++++--------- docs/compodoc/guards/AuthGuard.html | 2 +- docs/compodoc/injectables/AuthService.html | 150 ++++--- .../injectables/BlockSyncService.html | 96 +++- .../compodoc/injectables/LocationService.html | 10 +- docs/compodoc/injectables/LoggingService.html | 110 ++++- .../compodoc/injectables/RegistryService.html | 251 ++--------- docs/compodoc/injectables/TokenService.html | 32 +- .../injectables/TransactionService.html | 97 ++-- docs/compodoc/injectables/UserService.html | 233 +++++++--- .../interceptors/ErrorInterceptor.html | 5 +- .../interceptors/HttpConfigInterceptor.html | 19 +- docs/compodoc/js/menu-wc.js | 15 +- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/miscellaneous/functions.html | 38 -- docs/compodoc/miscellaneous/variables.html | 40 +- docs/compodoc/modules/AccountsModule.html | 70 +-- .../modules/AccountsModule/dependencies.svg | 70 +-- docs/compodoc/modules/AdminModule.html | 38 +- .../modules/AdminModule/dependencies.svg | 38 +- docs/compodoc/modules/AppModule.html | 149 +++---- .../modules/AppModule/dependencies.svg | 138 +++--- docs/compodoc/modules/TransactionsModule.html | 8 +- .../TransactionsModule/dependencies.svg | 8 +- docs/compodoc/overview.html | 416 +++++++++--------- docs/typedoc/assets/js/search.js | 2 +- .../app__eth_accountindex.accountindex.html | 8 +- ...fig_interceptor.httpconfiginterceptor.html | 4 +- ...pp__services_auth_service.authservice.html | 47 +- ...s_block_sync_service.blocksyncservice.html | 42 +- ...ices_location_service.locationservice.html | 4 +- ...rvices_logging_service.loggingservice.html | 53 ++- ...ices_registry_service.registryservice.html | 79 +--- ...__services_token_service.tokenservice.html | 14 +- ...ransaction_service.transactionservice.html | 49 ++- ...pp__services_user_service.userservice.html | 104 +++-- .../app_app_component.appcomponent.html | 86 ++-- ...app_auth_auth_component.authcomponent.html | 26 +- ...ils_component.accountdetailscomponent.html | 117 ++--- ...arch_component.accountsearchcomponent.html | 114 ++++- ..._accounts_component.accountscomponent.html | 63 +-- ...ount_component.createaccountcomponent.html | 8 +- ..._admin_admin_component.admincomponent.html | 16 +- ..._settings_component.settingscomponent.html | 38 +- ...kens_tokens_component.tokenscomponent.html | 57 +-- ...component.transactiondetailscomponent.html | 16 +- ...tions_component.transactionscomponent.html | 10 +- ...atus_component.networkstatuscomponent.html | 18 +- docs/typedoc/index.html | 6 - docs/typedoc/modules.html | 8 - docs/typedoc/modules/app__helpers.html | 9 - docs/typedoc/modules/app__interceptors.html | 9 - 66 files changed, 2383 insertions(+), 2369 deletions(-) diff --git a/docs/compodoc/classes/AccountIndex.html b/docs/compodoc/classes/AccountIndex.html index 469854d..9808103 100644 --- a/docs/compodoc/classes/AccountIndex.html +++ b/docs/compodoc/classes/AccountIndex.html @@ -357,8 +357,8 @@ Allows querying of accounts that have been registered as valid accounts in the n @@ -450,8 +450,8 @@ Requires availability of the signer address.

        @@ -543,8 +543,8 @@ Returns "true" for available and "false" otherwise.

        @@ -635,8 +635,8 @@ Returns "true" for available and "false" otherwise.

        @@ -714,9 +714,6 @@ export class AccountIndex { constructor(contractAddress: string, signerAddress?: string) { this.contractAddress = contractAddress; this.contract = new web3.eth.Contract(abi, this.contractAddress); - // TODO this signer logic should be part of the web3service - // if signer address is not passed (for example in user service) then - // this fallsback to a web3 wallet that is not even connected??? if (signerAddress) { this.signerAddress = signerAddress; } else { diff --git a/docs/compodoc/components/AccountDetailsComponent.html b/docs/compodoc/components/AccountDetailsComponent.html index 13f4b32..afa072d 100644 --- a/docs/compodoc/components/AccountDetailsComponent.html +++ b/docs/compodoc/components/AccountDetailsComponent.html @@ -71,7 +71,6 @@

        OnInit - AfterViewInit

        @@ -266,9 +265,6 @@
      • filterTransactions
      • -
      • - ngAfterViewInit -
      • Async ngOnInit @@ -323,7 +319,7 @@
      • @@ -512,8 +508,8 @@ @@ -551,8 +547,8 @@ @@ -621,8 +617,8 @@ @@ -691,8 +687,8 @@ @@ -773,8 +769,8 @@ @@ -812,47 +808,8 @@ - - - - - - - -
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - -
        - -
        - Returns : void - -
        -
        - - - - - - - - - - - - @@ -892,8 +849,8 @@ @@ -931,8 +888,8 @@ @@ -972,8 +929,8 @@ @@ -1011,8 +968,8 @@ @@ -1077,8 +1034,8 @@ @@ -1147,7 +1104,7 @@ @@ -1174,7 +1131,7 @@ @@ -1201,7 +1158,7 @@ @@ -1233,7 +1190,7 @@ @@ -1260,7 +1217,7 @@ @@ -1292,7 +1249,7 @@ @@ -1319,7 +1276,7 @@ @@ -1346,7 +1303,7 @@ @@ -1373,7 +1330,7 @@ @@ -1400,7 +1357,7 @@ @@ -1427,7 +1384,7 @@ @@ -1454,7 +1411,7 @@ @@ -1481,7 +1438,7 @@ @@ -1508,7 +1465,7 @@ @@ -1535,7 +1492,7 @@ @@ -1567,7 +1524,7 @@ @@ -1599,7 +1556,7 @@ @@ -1626,7 +1583,7 @@ @@ -1653,7 +1610,7 @@ @@ -1680,7 +1637,7 @@ @@ -1707,7 +1664,7 @@ @@ -1739,7 +1696,7 @@ @@ -1771,7 +1728,7 @@ @@ -1803,7 +1760,7 @@ @@ -1835,7 +1792,7 @@ @@ -1862,7 +1819,7 @@ @@ -1898,7 +1855,7 @@ @@ -1934,7 +1891,7 @@ @@ -1961,7 +1918,7 @@ @@ -1993,7 +1950,7 @@ @@ -2025,7 +1982,7 @@ @@ -2057,7 +2014,7 @@ @@ -2093,7 +2050,7 @@ @@ -2129,7 +2086,7 @@ @@ -2158,7 +2115,7 @@ @@ -2170,7 +2127,6 @@
        import {
        -  AfterViewInit,
           ChangeDetectionStrategy,
           ChangeDetectorRef,
           Component,
        @@ -2203,7 +2159,7 @@ import { AccountDetails, Transaction } from '@app/_models';
           styleUrls: ['./account-details.component.scss'],
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
        -export class AccountDetailsComponent implements OnInit, AfterViewInit {
        +export class AccountDetailsComponent implements OnInit {
           transactionsDataSource: MatTableDataSource<any>;
           transactionsDisplayedColumns: Array<string> = ['sender', 'recipient', 'value', 'created', 'type'];
           transactionsDefaultPageSize: number = 10;
        @@ -2275,7 +2231,10 @@ export class AccountDetailsComponent implements OnInit, AfterViewInit {
               location: ['', Validators.required],
               locationType: ['', Validators.required],
             });
        -    this.transactionService.resetTransactionsList();
        +    await this.blockSyncService.init();
        +    await this.tokenService.init();
        +    await this.transactionService.init();
        +    await this.userService.init();
             await this.blockSyncService.blockSync(this.accountAddress);
             this.userService.resetAccountsList();
             (await this.userService.getAccountByAddress(this.accountAddress, 100)).subscribe(
        @@ -2283,6 +2242,7 @@ export class AccountDetailsComponent implements OnInit, AfterViewInit {
                 if (res !== undefined) {
                   this.account = res;
                   this.cdr.detectChanges();
        +          this.loggingService.sendInfoLevelMessage(this.account);
                   this.locationService.areaNamesSubject.subscribe((response) => {
                     this.area = this.locationService.getAreaNameByLocation(
                       this.account.location.area_name,
        @@ -2367,17 +2327,6 @@ export class AccountDetailsComponent implements OnInit, AfterViewInit {
             });
           }
         
        -  ngAfterViewInit(): void {
        -    if (this.userDataSource) {
        -      this.userDataSource.paginator = this.userTablePaginator;
        -      this.userDataSource.sort = this.userTableSort;
        -    }
        -    if (this.transactionsDataSource) {
        -      this.transactionsDataSource.paginator = this.transactionTablePaginator;
        -      this.transactionsDataSource.sort = this.transactionTableSort;
        -    }
        -  }
        -
           doTransactionFilter(value: string): void {
             this.transactionsDataSource.filter = value.trim().toLocaleLowerCase();
           }
        diff --git a/docs/compodoc/components/AccountSearchComponent.html b/docs/compodoc/components/AccountSearchComponent.html
        index 0bfd5d6..9ded5a7 100644
        --- a/docs/compodoc/components/AccountSearchComponent.html
        +++ b/docs/compodoc/components/AccountSearchComponent.html
        @@ -145,6 +145,15 @@
                                     
      • matcher
      • +
      • + nameSearchForm +
      • +
      • + nameSearchLoading +
      • +
      • + nameSearchSubmitted +
      • phoneSearchForm
      • @@ -167,12 +176,16 @@
        @@ -295,6 +311,7 @@ + Async ngOnInit @@ -303,15 +320,16 @@ @@ -320,7 +338,7 @@ @@ -351,8 +369,8 @@ @@ -368,6 +386,45 @@
        - - - - ngAfterViewInit - - - -
        -ngAfterViewInit() -
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -ngOnInit() + + ngOnInit()
        - +
        - Returns : void + Returns : Promise<void>
        - +
        + + + + + + + + + + + + + + + + + + + +
        + + + + onNameSearch + + + +
        +onNameSearch() +
        + +
        + +
        + Returns : void + +
        +
        @@ -392,8 +449,8 @@ @@ -435,7 +492,7 @@ @@ -467,7 +524,7 @@ @@ -499,7 +556,7 @@ @@ -531,7 +588,98 @@ + + + + +
        - +
        - +
        - +
        - +
        - + +
        + + + + + + + + + + + + + + +
        + + + + nameSearchForm + + +
        + Type : FormGroup + +
        + +
        + + + + + + + + + + + + + + + + + +
        + + + + nameSearchLoading + + +
        + Type : boolean + +
        + Default value : false +
        + +
        + + + + + + + + + + + + + @@ -558,7 +706,7 @@ @@ -590,7 +738,7 @@ @@ -622,7 +770,7 @@ @@ -635,6 +783,28 @@

        Accessors

        +
        + + + + nameSearchSubmitted + + +
        + Type : boolean + +
        + Default value : false +
        +
        - +
        - +
        - +
        + + + + + + + + + + + + + +
        + + nameSearchFormStub +
        + getnameSearchFormStub() +
        + +
        @@ -651,7 +821,7 @@ @@ -673,7 +843,7 @@ @@ -699,6 +869,9 @@ import { environment } from '@src/environments/environment'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class AccountSearchComponent implements OnInit { + nameSearchForm: FormGroup; + nameSearchSubmitted: boolean = false; + nameSearchLoading: boolean = false; phoneSearchForm: FormGroup; phoneSearchSubmitted: boolean = false; phoneSearchLoading: boolean = false; @@ -712,6 +885,9 @@ export class AccountSearchComponent implements OnInit { private userService: UserService, private router: Router ) { + this.nameSearchForm = this.formBuilder.group({ + name: ['', Validators.required], + }); this.phoneSearchForm = this.formBuilder.group({ phoneNumber: ['', Validators.required], }); @@ -720,8 +896,13 @@ export class AccountSearchComponent implements OnInit { }); } - ngOnInit(): void {} + async ngOnInit(): Promise<void> { + await this.userService.init(); + } + get nameSearchFormStub(): any { + return this.nameSearchForm.controls; + } get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; } @@ -729,6 +910,16 @@ export class AccountSearchComponent implements OnInit { return this.addressSearchForm.controls; } + onNameSearch(): void { + this.nameSearchSubmitted = true; + if (this.nameSearchForm.invalid) { + return; + } + this.nameSearchLoading = true; + this.userService.searchAccountByName(this.nameSearchFormStub.name.value); + this.nameSearchLoading = false; + } + async onPhoneSearch(): Promise<void> { this.phoneSearchSubmitted = true; if (this.phoneSearchForm.invalid) { diff --git a/docs/compodoc/components/AccountsComponent.html b/docs/compodoc/components/AccountsComponent.html index f161130..008ae3b 100644 --- a/docs/compodoc/components/AccountsComponent.html +++ b/docs/compodoc/components/AccountsComponent.html @@ -71,7 +71,6 @@

        OnInit - AfterViewInit

        @@ -185,9 +184,6 @@
      • filterAccounts
      • -
      • - ngAfterViewInit -
      • Async ngOnInit @@ -217,12 +213,12 @@
      • @@ -240,10 +236,10 @@ - + - + @@ -397,8 +393,8 @@ @@ -436,47 +432,8 @@ - - - - - - - -
        - +
        - +
        -constructor(loggingService: LoggingService, userService: UserService, router: Router, tokenService: TokenService) +constructor(userService: UserService, loggingService: LoggingService, router: Router, tokenService: TokenService)
        - +
        loggingServiceuserService - LoggingService + UserService @@ -252,10 +248,10 @@
        userServiceloggingService - UserService + LoggingService @@ -327,8 +323,8 @@
        - +
        - +
        - -
        - -
        - Returns : void - -
        -
        - - - - - - - - - - - - @@ -516,8 +473,8 @@ @@ -555,8 +512,8 @@ @@ -596,8 +553,8 @@ @@ -671,7 +628,7 @@ @@ -703,7 +660,7 @@ @@ -730,7 +687,7 @@ @@ -757,7 +714,7 @@ @@ -789,7 +746,7 @@ @@ -821,7 +778,7 @@ @@ -853,7 +810,7 @@ @@ -889,7 +846,7 @@ @@ -925,7 +882,7 @@ @@ -952,7 +909,7 @@ @@ -965,13 +922,7 @@
        -
        import {
        -  AfterViewInit,
        -  ChangeDetectionStrategy,
        -  Component,
        -  OnInit,
        -  ViewChild,
        -} from '@angular/core';
        +        
        import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';
         import { MatTableDataSource } from '@angular/material/table';
         import { MatPaginator } from '@angular/material/paginator';
         import { MatSort } from '@angular/material/sort';
        @@ -989,7 +940,7 @@ import { AccountDetails } from '@app/_models';
           styleUrls: ['./accounts.component.scss'],
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
        -export class AccountsComponent implements OnInit, AfterViewInit {
        +export class AccountsComponent implements OnInit {
           dataSource: MatTableDataSource<any>;
           accounts: Array<AccountDetails> = [];
           displayedColumns: Array<string> = ['name', 'phone', 'created', 'balance', 'location'];
        @@ -1003,25 +954,27 @@ export class AccountsComponent implements OnInit, AfterViewInit {
           @ViewChild(MatSort) sort: MatSort;
         
           constructor(
        -    private loggingService: LoggingService,
             private userService: UserService,
        +    private loggingService: LoggingService,
             private router: Router,
             private tokenService: TokenService
           ) {}
         
           async ngOnInit(): Promise<void> {
        -    this.userService.accountsSubject.subscribe((accounts) => {
        -      this.dataSource = new MatTableDataSource<any>(accounts);
        -      this.dataSource.paginator = this.paginator;
        -      this.dataSource.sort = this.sort;
        -      this.accounts = accounts;
        -    });
        +    await this.userService.init();
        +    await this.tokenService.init();
             try {
               // TODO it feels like this should be in the onInit handler
               await this.userService.loadAccounts(100);
             } catch (error) {
               this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });
             }
        +    this.userService.accountsSubject.subscribe((accounts) => {
        +      this.dataSource = new MatTableDataSource<any>(accounts);
        +      this.dataSource.paginator = this.paginator;
        +      this.dataSource.sort = this.sort;
        +      this.accounts = accounts;
        +    });
             this.userService
               .getAccountTypes()
               .pipe(first())
        @@ -1033,13 +986,6 @@ export class AccountsComponent implements OnInit, AfterViewInit {
             });
           }
         
        -  ngAfterViewInit(): void {
        -    if (this.dataSource) {
        -      this.dataSource.paginator = this.paginator;
        -      this.dataSource.sort = this.sort;
        -    }
        -  }
        -
           doFilter(value: string): void {
             this.dataSource.filter = value.trim().toLocaleLowerCase();
           }
        diff --git a/docs/compodoc/components/AdminComponent.html b/docs/compodoc/components/AdminComponent.html
        index 3e83dac..c25efbb 100644
        --- a/docs/compodoc/components/AdminComponent.html
        +++ b/docs/compodoc/components/AdminComponent.html
        @@ -182,6 +182,7 @@
                                         expandCollapse
                                     
                                     
      • + Async ngOnInit
      • @@ -288,8 +289,8 @@
        @@ -358,8 +359,8 @@ @@ -428,8 +429,8 @@ @@ -498,8 +499,8 @@ @@ -568,8 +569,8 @@ @@ -607,8 +608,8 @@ @@ -658,6 +659,7 @@ + Async ngOnInit @@ -666,7 +668,8 @@ @@ -683,7 +686,7 @@ @@ -895,7 +898,7 @@ import { LoggingService, UserService } from '@app/_services'; import { animate, state, style, transition, trigger } from '@angular/animations'; import { first } from 'rxjs/operators'; import { exportCsv } from '@app/_helpers'; -import { Action } from '@app/_models'; +import { Action } from '../../_models'; @Component({ selector: 'app-admin', @@ -921,7 +924,8 @@ export class AdminComponent implements OnInit { constructor(private userService: UserService, private loggingService: LoggingService) {} - ngOnInit(): void { + async ngOnInit(): Promise<void> { + await this.userService.init(); this.userService.getActions(); this.userService.actionsSubject.subscribe((actions) => { this.dataSource = new MatTableDataSource<any>(actions); diff --git a/docs/compodoc/components/AppComponent.html b/docs/compodoc/components/AppComponent.html index f1c97ef..7aeaf1b 100644 --- a/docs/compodoc/components/AppComponent.html +++ b/docs/compodoc/components/AppComponent.html @@ -133,17 +133,17 @@ @@ -199,12 +199,12 @@ @@ -234,22 +234,10 @@ - + - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - -
        - - - - ngAfterViewInit - - - -
        -ngAfterViewInit() -
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        -ngOnInit() + + ngOnInit()
        - Returns : void + Returns : Promise<void>
        -constructor(authService: AuthService, blockSyncService: BlockSyncService, errorDialogService: ErrorDialogService, loggingService: LoggingService, tokenService: TokenService, transactionService: TransactionService, userService: UserService, swUpdate: SwUpdate, router: Router) +constructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService, swUpdate: SwUpdate)
        - +
        blockSyncServicetransactionService - BlockSyncService - - No -
        errorDialogService - ErrorDialogService + TransactionService @@ -270,34 +258,10 @@
        tokenServiceerrorDialogService - TokenService - - No -
        transactionService - TransactionService - - No -
        userService - UserService + ErrorDialogService @@ -317,18 +281,6 @@
        router - Router - - No -
        @@ -369,8 +321,8 @@ - + @@ -404,8 +356,8 @@ - + @@ -442,8 +394,8 @@ - + @@ -481,8 +433,8 @@ - + @@ -531,38 +483,6 @@

        Properties

        - - - - - - - - - - - - - - - - - -
        - - - - accountDetailsRegex - - -
        - Type : string - -
        - Default value : '/accounts/[a-z,A-Z,0-9]{40}' -
        - -
        @@ -588,7 +508,71 @@ + + + + +
        - + +
        + + + + + + + + + + + + + + + + + +
        + + + + readyState + + +
        + Type : number + +
        + Default value : 0 +
        + +
        + + + + + + + + + + + + + @@ -620,34 +604,7 @@ - - - - -
        + + + + readyStateTarget + + +
        + Type : number + +
        + Default value : 3 +
        +
        - -
        - - - - - - - - - - @@ -663,16 +620,12 @@
        import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';
         import {
           AuthService,
        -  BlockSyncService,
           ErrorDialogService,
           LoggingService,
        -  TokenService,
           TransactionService,
        -  UserService,
         } from '@app/_services';
        +import { catchError } from 'rxjs/operators';
         import { SwUpdate } from '@angular/service-worker';
        -import { NavigationEnd, Router } from '@angular/router';
        -import { filter } from 'rxjs/operators';
         
         @Component({
           selector: 'app-root',
        @@ -682,20 +635,16 @@ import { filter } from 'rxjs/operators';
         })
         export class AppComponent implements OnInit {
           title = 'CICADA';
        +  readyStateTarget: number = 3;
        +  readyState: number = 0;
           mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');
        -  url: string;
        -  accountDetailsRegex = '/accounts/[a-z,A-Z,0-9]{40}';
         
           constructor(
             private authService: AuthService,
        -    private blockSyncService: BlockSyncService,
        -    private errorDialogService: ErrorDialogService,
        -    private loggingService: LoggingService,
        -    private tokenService: TokenService,
             private transactionService: TransactionService,
        -    private userService: UserService,
        -    private swUpdate: SwUpdate,
        -    private router: Router
        +    private loggingService: LoggingService,
        +    private errorDialogService: ErrorDialogService,
        +    private swUpdate: SwUpdate
           ) {
             this.mediaQuery.addEventListener('change', this.onResize);
             this.onResize(this.mediaQuery);
        @@ -703,27 +652,7 @@ export class AppComponent implements OnInit {
         
           async ngOnInit(): Promise<void> {
             await this.authService.init();
        -    await this.tokenService.init();
        -    await this.userService.init();
             await this.transactionService.init();
        -    await this.router.events
        -      .pipe(filter((e) => e instanceof NavigationEnd))
        -      .forEach(async (routeInfo) => {
        -        if (routeInfo instanceof NavigationEnd) {
        -          this.url = routeInfo.url;
        -          if (!this.url.match(this.accountDetailsRegex) || !this.url.includes('tx')) {
        -            await this.blockSyncService.blockSync();
        -          }
        -          if (!this.url.includes('accounts')) {
        -            try {
        -              // TODO it feels like this should be in the onInit handler
        -              await this.userService.loadAccounts(100);
        -            } catch (error) {
        -              this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });
        -            }
        -          }
        -        }
        -      });
             try {
               const publicKeys = await this.authService.getPublicKeys();
               await this.authService.mutableKeyStore.importPublicKey(publicKeys);
        @@ -734,11 +663,6 @@ export class AppComponent implements OnInit {
               });
               // TODO do something to halt user progress...show a sad cicada page 🦗?
             }
        -    this.tokenService.load.subscribe(async (status: boolean) => {
        -      if (status) {
        -        await this.tokenService.getTokens();
        -      }
        -    });
             if (!this.swUpdate.isEnabled) {
               this.swUpdate.available.subscribe(() => {
                 if (confirm('New Version available. Load New Version?')) {
        diff --git a/docs/compodoc/components/AuthComponent.html b/docs/compodoc/components/AuthComponent.html
        index d15420f..bce0b2b 100644
        --- a/docs/compodoc/components/AuthComponent.html
        +++ b/docs/compodoc/components/AuthComponent.html
        @@ -162,6 +162,7 @@
                                         login
                                     
                                     
      • + Async ngOnInit
      • @@ -211,7 +212,7 @@
      • @@ -318,8 +319,8 @@ @@ -342,6 +343,7 @@ + Async ngOnInit @@ -350,15 +352,16 @@ @@ -367,7 +370,7 @@ @@ -398,8 +401,8 @@ @@ -437,8 +440,8 @@ @@ -476,8 +479,8 @@ @@ -550,7 +553,7 @@ @@ -582,7 +585,7 @@ @@ -614,7 +617,7 @@ @@ -646,7 +649,7 @@ @@ -675,7 +678,7 @@ @@ -691,6 +694,7 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { CustomErrorStateMatcher } from '@app/_helpers'; import { AuthService } from '@app/_services'; import { ErrorDialogService } from '@app/_services/error-dialog.service'; +import { LoggingService } from '@app/_services/logging.service'; import { Router } from '@angular/router'; @Component({ @@ -712,7 +716,7 @@ export class AuthComponent implements OnInit { private errorDialogService: ErrorDialogService ) {} - ngOnInit(): void { + async ngOnInit(): Promise<void> { this.keyForm = this.formBuilder.group({ key: ['', Validators.required], }); @@ -745,7 +749,7 @@ export class AuthComponent implements OnInit { } } catch (HttpError) { this.errorDialogService.openDialog({ - message: 'Failed to login please try again.', + message: HttpError.message, }); } } diff --git a/docs/compodoc/components/CreateAccountComponent.html b/docs/compodoc/components/CreateAccountComponent.html index 469b171..21cfc33 100644 --- a/docs/compodoc/components/CreateAccountComponent.html +++ b/docs/compodoc/components/CreateAccountComponent.html @@ -167,6 +167,7 @@ @@ -312,7 +315,7 @@ @@ -341,8 +344,8 @@ @@ -585,7 +588,7 @@ @@ -623,7 +626,8 @@ export class CreateAccountComponent implements OnInit { private userService: UserService ) {} - ngOnInit(): void { + async ngOnInit(): Promise<void> { + await this.userService.init(); this.createForm = this.formBuilder.group({ accountType: ['', Validators.required], idNumber: ['', Validators.required], diff --git a/docs/compodoc/components/NetworkStatusComponent.html b/docs/compodoc/components/NetworkStatusComponent.html index fbb9985..c977b9d 100644 --- a/docs/compodoc/components/NetworkStatusComponent.html +++ b/docs/compodoc/components/NetworkStatusComponent.html @@ -134,7 +134,7 @@ @@ -177,7 +177,7 @@ @@ -246,8 +246,8 @@ @@ -285,8 +285,8 @@ @@ -312,11 +312,11 @@ @@ -328,12 +328,12 @@ @@ -347,7 +347,6 @@
        import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
        -import { checkOnlineStatus } from '@src/app/_helpers';
         
         @Component({
           selector: 'app-network-status',
        @@ -356,31 +355,22 @@ import { checkOnlineStatus } from '@src/app/_helpers';
           changeDetection: ChangeDetectionStrategy.OnPush,
         })
         export class NetworkStatusComponent implements OnInit {
        -  online: boolean = navigator.onLine;
        +  noInternetConnection: boolean = !navigator.onLine;
         
           constructor(private cdr: ChangeDetectorRef) {
             this.handleNetworkChange();
           }
         
        -  ngOnInit(): void {
        -    window.addEventListener('online', (event: any) => {
        -      this.online = true;
        -      this.cdr.detectChanges();
        -    });
        -    window.addEventListener('offline', (event: any) => {
        -      this.online = false;
        -      this.cdr.detectChanges();
        -    });
        -  }
        +  ngOnInit(): void {}
         
           handleNetworkChange(): void {
        -    setTimeout(async () => {
        -      if (this.online !== (await checkOnlineStatus())) {
        -        this.online = await checkOnlineStatus();
        +    setTimeout(() => {
        +      if (!navigator.onLine !== this.noInternetConnection) {
        +        this.noInternetConnection = !navigator.onLine;
                 this.cdr.detectChanges();
               }
               this.handleNetworkChange();
        -    }, 3000);
        +    }, 5000);
           }
         }
         
        @@ -389,7 +379,7 @@ export class NetworkStatusComponent implements OnInit {
        <nav class="navbar navbar-dark background-dark">
           <h1 class="navbar-brand">
        -    <div *ngIf="online; then onlineBlock; else offlineBlock"></div>
        +    <div *ngIf="noInternetConnection; then offlineBlock; else onlineBlock"></div>
             <ng-template #offlineBlock>
               <strong style="color: red">OFFLINE </strong>
               <img width="20rem" src="assets/images/no-wifi.svg" alt="Internet Disconnected" />
        @@ -435,7 +425,7 @@ export class NetworkStatusComponent implements OnInit {
         
         
         
        - - - - url - - -
        - Type : string - -
        - +
        - +
        - +
        -ngOnInit() + + ngOnInit()
        - +
        - Returns : void + Returns : Promise<void>
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        - +
        • + Async ngOnInit
        • @@ -287,6 +288,7 @@ + Async ngOnInit @@ -295,7 +297,8 @@
        -ngOnInit() + + ngOnInit()
        - Returns : void + Returns : Promise<void>
        - +
        - +
        - +
        - +
        - +
        - + - online - + noInternetConnection +
        - Default value : navigator.onLine + Default value : !navigator.onLine
        - +