@bopen-io/wallet-toolbox 1.7.18 → 1.7.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +5 -1
- package/CHANGELOG.md +4 -0
- package/out/src/CWIStyleWalletManager.d.ts +439 -0
- package/out/src/CWIStyleWalletManager.d.ts.map +1 -0
- package/out/src/CWIStyleWalletManager.js +1317 -0
- package/out/src/CWIStyleWalletManager.js.map +1 -0
- package/out/src/Setup.d.ts +267 -0
- package/out/src/Setup.d.ts.map +1 -0
- package/out/src/Setup.js +408 -0
- package/out/src/Setup.js.map +1 -0
- package/out/src/SetupClient.d.ts +130 -0
- package/out/src/SetupClient.d.ts.map +1 -0
- package/out/src/SetupClient.js +226 -0
- package/out/src/SetupClient.js.map +1 -0
- package/out/src/SetupWallet.d.ts +103 -0
- package/out/src/SetupWallet.d.ts.map +1 -0
- package/out/src/SetupWallet.js +3 -0
- package/out/src/SetupWallet.js.map +1 -0
- package/out/src/SimpleWalletManager.d.ts +169 -0
- package/out/src/SimpleWalletManager.d.ts.map +1 -0
- package/out/src/SimpleWalletManager.js +315 -0
- package/out/src/SimpleWalletManager.js.map +1 -0
- package/out/src/Wallet.d.ts +206 -0
- package/out/src/Wallet.d.ts.map +1 -0
- package/out/src/Wallet.js +797 -0
- package/out/src/Wallet.js.map +1 -0
- package/out/src/WalletAuthenticationManager.d.ts +33 -0
- package/out/src/WalletAuthenticationManager.d.ts.map +1 -0
- package/out/src/WalletAuthenticationManager.js +113 -0
- package/out/src/WalletAuthenticationManager.js.map +1 -0
- package/out/src/WalletLogger.d.ts +65 -0
- package/out/src/WalletLogger.d.ts.map +1 -0
- package/out/src/WalletLogger.js +167 -0
- package/out/src/WalletLogger.js.map +1 -0
- package/out/src/WalletPermissionsManager.d.ts +760 -0
- package/out/src/WalletPermissionsManager.d.ts.map +1 -0
- package/out/src/WalletPermissionsManager.js +2679 -0
- package/out/src/WalletPermissionsManager.js.map +1 -0
- package/out/src/WalletSettingsManager.d.ts +53 -0
- package/out/src/WalletSettingsManager.d.ts.map +1 -0
- package/out/src/WalletSettingsManager.js +83 -0
- package/out/src/WalletSettingsManager.js.map +1 -0
- package/out/src/__tests/CWIStyleWalletManager.test.d.ts +2 -0
- package/out/src/__tests/CWIStyleWalletManager.test.d.ts.map +1 -0
- package/out/src/__tests/CWIStyleWalletManager.test.js +527 -0
- package/out/src/__tests/CWIStyleWalletManager.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.callbacks.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.callbacks.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.callbacks.test.js +239 -0
- package/out/src/__tests/WalletPermissionsManager.callbacks.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.checks.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.checks.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.checks.test.js +642 -0
- package/out/src/__tests/WalletPermissionsManager.checks.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.encryption.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.encryption.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.encryption.test.js +335 -0
- package/out/src/__tests/WalletPermissionsManager.encryption.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.fixtures.d.ts +87 -0
- package/out/src/__tests/WalletPermissionsManager.fixtures.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.fixtures.js +281 -0
- package/out/src/__tests/WalletPermissionsManager.fixtures.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.flows.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.flows.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.flows.test.js +380 -0
- package/out/src/__tests/WalletPermissionsManager.flows.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.initialization.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.initialization.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.initialization.test.js +227 -0
- package/out/src/__tests/WalletPermissionsManager.initialization.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.pmodules.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.pmodules.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.pmodules.test.js +624 -0
- package/out/src/__tests/WalletPermissionsManager.pmodules.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.proxying.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.proxying.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.proxying.test.js +584 -0
- package/out/src/__tests/WalletPermissionsManager.proxying.test.js.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.tokens.test.d.ts +2 -0
- package/out/src/__tests/WalletPermissionsManager.tokens.test.d.ts.map +1 -0
- package/out/src/__tests/WalletPermissionsManager.tokens.test.js +415 -0
- package/out/src/__tests/WalletPermissionsManager.tokens.test.js.map +1 -0
- package/out/src/index.all.d.ts +24 -0
- package/out/src/index.all.d.ts.map +1 -0
- package/out/src/index.all.js +63 -0
- package/out/src/index.all.js.map +1 -0
- package/out/src/index.client.d.ts +23 -0
- package/out/src/index.client.d.ts.map +1 -0
- package/out/src/index.client.js +62 -0
- package/out/src/index.client.js.map +1 -0
- package/out/src/index.d.ts +2 -0
- package/out/src/index.d.ts.map +1 -0
- package/out/src/index.js +18 -0
- package/out/src/index.js.map +1 -0
- package/out/src/index.mobile.d.ts +20 -0
- package/out/src/index.mobile.d.ts.map +1 -0
- package/out/src/index.mobile.js +59 -0
- package/out/src/index.mobile.js.map +1 -0
- package/out/src/monitor/Monitor.d.ts +148 -0
- package/out/src/monitor/Monitor.d.ts.map +1 -0
- package/out/src/monitor/Monitor.js +317 -0
- package/out/src/monitor/Monitor.js.map +1 -0
- package/out/src/monitor/MonitorDaemon.d.ts +38 -0
- package/out/src/monitor/MonitorDaemon.d.ts.map +1 -0
- package/out/src/monitor/MonitorDaemon.js +142 -0
- package/out/src/monitor/MonitorDaemon.js.map +1 -0
- package/out/src/monitor/__test/MonitorDaemon.man.test.d.ts +2 -0
- package/out/src/monitor/__test/MonitorDaemon.man.test.d.ts.map +1 -0
- package/out/src/monitor/__test/MonitorDaemon.man.test.js +41 -0
- package/out/src/monitor/__test/MonitorDaemon.man.test.js.map +1 -0
- package/out/src/monitor/tasks/TaskCheckForProofs.d.ts +53 -0
- package/out/src/monitor/tasks/TaskCheckForProofs.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskCheckForProofs.js +213 -0
- package/out/src/monitor/tasks/TaskCheckForProofs.js.map +1 -0
- package/out/src/monitor/tasks/TaskCheckNoSends.d.ts +33 -0
- package/out/src/monitor/tasks/TaskCheckNoSends.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskCheckNoSends.js +71 -0
- package/out/src/monitor/tasks/TaskCheckNoSends.js.map +1 -0
- package/out/src/monitor/tasks/TaskClock.d.ts +14 -0
- package/out/src/monitor/tasks/TaskClock.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskClock.js +28 -0
- package/out/src/monitor/tasks/TaskClock.js.map +1 -0
- package/out/src/monitor/tasks/TaskFailAbandoned.d.ts +20 -0
- package/out/src/monitor/tasks/TaskFailAbandoned.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskFailAbandoned.js +52 -0
- package/out/src/monitor/tasks/TaskFailAbandoned.js.map +1 -0
- package/out/src/monitor/tasks/TaskMonitorCallHistory.d.ts +12 -0
- package/out/src/monitor/tasks/TaskMonitorCallHistory.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskMonitorCallHistory.js +24 -0
- package/out/src/monitor/tasks/TaskMonitorCallHistory.js.map +1 -0
- package/out/src/monitor/tasks/TaskNewHeader.d.ts +50 -0
- package/out/src/monitor/tasks/TaskNewHeader.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskNewHeader.js +84 -0
- package/out/src/monitor/tasks/TaskNewHeader.js.map +1 -0
- package/out/src/monitor/tasks/TaskPurge.d.ts +45 -0
- package/out/src/monitor/tasks/TaskPurge.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskPurge.js +34 -0
- package/out/src/monitor/tasks/TaskPurge.js.map +1 -0
- package/out/src/monitor/tasks/TaskReorg.d.ts +43 -0
- package/out/src/monitor/tasks/TaskReorg.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskReorg.js +82 -0
- package/out/src/monitor/tasks/TaskReorg.js.map +1 -0
- package/out/src/monitor/tasks/TaskReviewStatus.d.ts +26 -0
- package/out/src/monitor/tasks/TaskReviewStatus.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskReviewStatus.js +43 -0
- package/out/src/monitor/tasks/TaskReviewStatus.js.map +1 -0
- package/out/src/monitor/tasks/TaskSendWaiting.d.ts +35 -0
- package/out/src/monitor/tasks/TaskSendWaiting.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskSendWaiting.js +117 -0
- package/out/src/monitor/tasks/TaskSendWaiting.js.map +1 -0
- package/out/src/monitor/tasks/TaskSyncWhenIdle.d.ts +12 -0
- package/out/src/monitor/tasks/TaskSyncWhenIdle.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskSyncWhenIdle.js +22 -0
- package/out/src/monitor/tasks/TaskSyncWhenIdle.js.map +1 -0
- package/out/src/monitor/tasks/TaskUnFail.d.ts +41 -0
- package/out/src/monitor/tasks/TaskUnFail.d.ts.map +1 -0
- package/out/src/monitor/tasks/TaskUnFail.js +145 -0
- package/out/src/monitor/tasks/TaskUnFail.js.map +1 -0
- package/out/src/monitor/tasks/WalletMonitorTask.d.ts +40 -0
- package/out/src/monitor/tasks/WalletMonitorTask.d.ts.map +1 -0
- package/out/src/monitor/tasks/WalletMonitorTask.js +37 -0
- package/out/src/monitor/tasks/WalletMonitorTask.js.map +1 -0
- package/out/src/sdk/CertOpsWallet.d.ts +7 -0
- package/out/src/sdk/CertOpsWallet.d.ts.map +1 -0
- package/out/src/sdk/CertOpsWallet.js +3 -0
- package/out/src/sdk/CertOpsWallet.js.map +1 -0
- package/out/src/sdk/PrivilegedKeyManager.d.ts +125 -0
- package/out/src/sdk/PrivilegedKeyManager.d.ts.map +1 -0
- package/out/src/sdk/PrivilegedKeyManager.js +293 -0
- package/out/src/sdk/PrivilegedKeyManager.js.map +1 -0
- package/out/src/sdk/WERR_errors.d.ts +136 -0
- package/out/src/sdk/WERR_errors.d.ts.map +1 -0
- package/out/src/sdk/WERR_errors.js +218 -0
- package/out/src/sdk/WERR_errors.js.map +1 -0
- package/out/src/sdk/WalletError.d.ts +63 -0
- package/out/src/sdk/WalletError.d.ts.map +1 -0
- package/out/src/sdk/WalletError.js +169 -0
- package/out/src/sdk/WalletError.js.map +1 -0
- package/out/src/sdk/WalletErrorFromJson.d.ts +12 -0
- package/out/src/sdk/WalletErrorFromJson.d.ts.map +1 -0
- package/out/src/sdk/WalletErrorFromJson.js +69 -0
- package/out/src/sdk/WalletErrorFromJson.js.map +1 -0
- package/out/src/sdk/WalletServices.interfaces.d.ts +618 -0
- package/out/src/sdk/WalletServices.interfaces.d.ts.map +1 -0
- package/out/src/sdk/WalletServices.interfaces.js +3 -0
- package/out/src/sdk/WalletServices.interfaces.js.map +1 -0
- package/out/src/sdk/WalletSigner.interfaces.d.ts +10 -0
- package/out/src/sdk/WalletSigner.interfaces.d.ts.map +1 -0
- package/out/src/sdk/WalletSigner.interfaces.js +3 -0
- package/out/src/sdk/WalletSigner.interfaces.js.map +1 -0
- package/out/src/sdk/WalletStorage.interfaces.d.ts +522 -0
- package/out/src/sdk/WalletStorage.interfaces.d.ts.map +1 -0
- package/out/src/sdk/WalletStorage.interfaces.js +3 -0
- package/out/src/sdk/WalletStorage.interfaces.js.map +1 -0
- package/out/src/sdk/__test/CertificateLifeCycle.test.d.ts +2 -0
- package/out/src/sdk/__test/CertificateLifeCycle.test.d.ts.map +1 -0
- package/out/src/sdk/__test/CertificateLifeCycle.test.js +62 -0
- package/out/src/sdk/__test/CertificateLifeCycle.test.js.map +1 -0
- package/out/src/sdk/__test/PrivilegedKeyManager.test.d.ts +2 -0
- package/out/src/sdk/__test/PrivilegedKeyManager.test.d.ts.map +1 -0
- package/out/src/sdk/__test/PrivilegedKeyManager.test.js +647 -0
- package/out/src/sdk/__test/PrivilegedKeyManager.test.js.map +1 -0
- package/out/src/sdk/__test/WalletError.test.d.ts +2 -0
- package/out/src/sdk/__test/WalletError.test.d.ts.map +1 -0
- package/out/src/sdk/__test/WalletError.test.js +255 -0
- package/out/src/sdk/__test/WalletError.test.js.map +1 -0
- package/out/src/sdk/__test/validationHelpers.test.d.ts +2 -0
- package/out/src/sdk/__test/validationHelpers.test.d.ts.map +1 -0
- package/out/src/sdk/__test/validationHelpers.test.js +20 -0
- package/out/src/sdk/__test/validationHelpers.test.js.map +1 -0
- package/out/src/sdk/index.d.ts +11 -0
- package/out/src/sdk/index.d.ts.map +1 -0
- package/out/src/sdk/index.js +29 -0
- package/out/src/sdk/index.js.map +1 -0
- package/out/src/sdk/types.d.ts +169 -0
- package/out/src/sdk/types.d.ts.map +1 -0
- package/out/src/sdk/types.js +90 -0
- package/out/src/sdk/types.js.map +1 -0
- package/out/src/services/ServiceCollection.d.ts +79 -0
- package/out/src/services/ServiceCollection.d.ts.map +1 -0
- package/out/src/services/ServiceCollection.js +192 -0
- package/out/src/services/ServiceCollection.js.map +1 -0
- package/out/src/services/Services.d.ts +71 -0
- package/out/src/services/Services.d.ts.map +1 -0
- package/out/src/services/Services.js +532 -0
- package/out/src/services/Services.js.map +1 -0
- package/out/src/services/__tests/ARC.man.test.d.ts +2 -0
- package/out/src/services/__tests/ARC.man.test.d.ts.map +1 -0
- package/out/src/services/__tests/ARC.man.test.js +104 -0
- package/out/src/services/__tests/ARC.man.test.js.map +1 -0
- package/out/src/services/__tests/ARC.timeout.man.test.d.ts +2 -0
- package/out/src/services/__tests/ARC.timeout.man.test.d.ts.map +1 -0
- package/out/src/services/__tests/ARC.timeout.man.test.js +74 -0
- package/out/src/services/__tests/ARC.timeout.man.test.js.map +1 -0
- package/out/src/services/__tests/ArcGorillaPool.man.test.d.ts +2 -0
- package/out/src/services/__tests/ArcGorillaPool.man.test.d.ts.map +1 -0
- package/out/src/services/__tests/ArcGorillaPool.man.test.js +93 -0
- package/out/src/services/__tests/ArcGorillaPool.man.test.js.map +1 -0
- package/out/src/services/__tests/arcServices.test.d.ts +2 -0
- package/out/src/services/__tests/arcServices.test.d.ts.map +1 -0
- package/out/src/services/__tests/arcServices.test.js +7 -0
- package/out/src/services/__tests/arcServices.test.js.map +1 -0
- package/out/src/services/__tests/bitrails.test.d.ts +2 -0
- package/out/src/services/__tests/bitrails.test.d.ts.map +1 -0
- package/out/src/services/__tests/bitrails.test.js +53 -0
- package/out/src/services/__tests/bitrails.test.js.map +1 -0
- package/out/src/services/__tests/getMerklePath.test.d.ts +2 -0
- package/out/src/services/__tests/getMerklePath.test.d.ts.map +1 -0
- package/out/src/services/__tests/getMerklePath.test.js +16 -0
- package/out/src/services/__tests/getMerklePath.test.js.map +1 -0
- package/out/src/services/__tests/getRawTx.test.d.ts +2 -0
- package/out/src/services/__tests/getRawTx.test.d.ts.map +1 -0
- package/out/src/services/__tests/getRawTx.test.js +13 -0
- package/out/src/services/__tests/getRawTx.test.js.map +1 -0
- package/out/src/services/__tests/postBeef.test.d.ts +2 -0
- package/out/src/services/__tests/postBeef.test.d.ts.map +1 -0
- package/out/src/services/__tests/postBeef.test.js +101 -0
- package/out/src/services/__tests/postBeef.test.js.map +1 -0
- package/out/src/services/__tests/verifyBeef.test.d.ts +2 -0
- package/out/src/services/__tests/verifyBeef.test.d.ts.map +1 -0
- package/out/src/services/__tests/verifyBeef.test.js +43 -0
- package/out/src/services/__tests/verifyBeef.test.js.map +1 -0
- package/out/src/services/chaintracker/BHServiceClient.d.ts +39 -0
- package/out/src/services/chaintracker/BHServiceClient.d.ts.map +1 -0
- package/out/src/services/chaintracker/BHServiceClient.js +174 -0
- package/out/src/services/chaintracker/BHServiceClient.js.map +1 -0
- package/out/src/services/chaintracker/ChaintracksChainTracker.d.ts +15 -0
- package/out/src/services/chaintracker/ChaintracksChainTracker.d.ts.map +1 -0
- package/out/src/services/chaintracker/ChaintracksChainTracker.js +53 -0
- package/out/src/services/chaintracker/ChaintracksChainTracker.js.map +1 -0
- package/out/src/services/chaintracker/__tests/ChaintracksChainTracker.test.d.ts +2 -0
- package/out/src/services/chaintracker/__tests/ChaintracksChainTracker.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/__tests/ChaintracksChainTracker.test.js +25 -0
- package/out/src/services/chaintracker/__tests/ChaintracksChainTracker.test.js.map +1 -0
- package/out/src/services/chaintracker/__tests/ChaintracksServiceClient.test.d.ts +2 -0
- package/out/src/services/chaintracker/__tests/ChaintracksServiceClient.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/__tests/ChaintracksServiceClient.test.js +27 -0
- package/out/src/services/chaintracker/__tests/ChaintracksServiceClient.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BlockHeaderApi.d.ts +55 -0
- package/out/src/services/chaintracker/chaintracks/Api/BlockHeaderApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BlockHeaderApi.js +38 -0
- package/out/src/services/chaintracker/chaintracks/Api/BlockHeaderApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkIngestorApi.d.ts +70 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkIngestorApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkIngestorApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkIngestorApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkStorageApi.d.ts +81 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkStorageApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkStorageApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/BulkStorageApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksApi.d.ts +54 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksClientApi.d.ts +163 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksClientApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksClientApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksClientApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFetchApi.d.ts +18 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFetchApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFetchApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFetchApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFsApi.d.ts +55 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFsApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFsApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksFsApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksStorageApi.d.ts +338 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksStorageApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksStorageApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/ChaintracksStorageApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/LiveIngestorApi.d.ts +19 -0
- package/out/src/services/chaintracker/chaintracks/Api/LiveIngestorApi.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Api/LiveIngestorApi.js +3 -0
- package/out/src/services/chaintracker/chaintracks/Api/LiveIngestorApi.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Chaintracks.d.ts +101 -0
- package/out/src/services/chaintracker/chaintracks/Chaintracks.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Chaintracks.js +550 -0
- package/out/src/services/chaintracker/chaintracks/Chaintracks.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksService.d.ts +30 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksService.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksService.js +157 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksService.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksServiceClient.d.ts +38 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksServiceClient.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksServiceClient.js +139 -0
- package/out/src/services/chaintracker/chaintracks/ChaintracksServiceClient.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorBase.d.ts +60 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorBase.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorBase.js +119 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorBase.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDN.d.ts +76 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDN.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDN.js +114 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDN.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDNBabbage.d.ts +13 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDNBabbage.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDNBabbage.js +20 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorCDNBabbage.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainCdn.d.ts +62 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainCdn.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainCdn.js +59 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainCdn.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainWs.d.ts +23 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainWs.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainWs.js +57 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/BulkIngestorWhatsOnChainWs.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorBase.d.ts +62 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorBase.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorBase.js +42 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorBase.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorTeranodeP2P.d.ts +20 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorTeranodeP2P.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorTeranodeP2P.js +44 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorTeranodeP2P.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainPoll.d.ts +51 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainPoll.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainPoll.js +55 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainPoll.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainWs.d.ts +16 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainWs.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainWs.js +53 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/LiveIngestorWhatsOnChainWs.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainIngestorWs.d.ts +171 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainIngestorWs.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainIngestorWs.js +501 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainIngestorWs.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainServices.d.ts +89 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainServices.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainServices.js +137 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/WhatsOnChainServices.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/BulkIngestorCDNBabbage.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/BulkIngestorCDNBabbage.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/BulkIngestorCDNBabbage.test.js +50 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/BulkIngestorCDNBabbage.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/LiveIngestorWhatsOnChainPoll.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/LiveIngestorWhatsOnChainPoll.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/LiveIngestorWhatsOnChainPoll.test.js +34 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/LiveIngestorWhatsOnChainPoll.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/WhatsOnChainServices.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/WhatsOnChainServices.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/WhatsOnChainServices.test.js +102 -0
- package/out/src/services/chaintracker/chaintracks/Ingest/__tests/WhatsOnChainServices.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/BulkStorageBase.d.ts +23 -0
- package/out/src/services/chaintracker/chaintracks/Storage/BulkStorageBase.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/BulkStorageBase.js +68 -0
- package/out/src/services/chaintracker/chaintracks/Storage/BulkStorageBase.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksKnexMigrations.d.ts +24 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksKnexMigrations.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksKnexMigrations.js +82 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksKnexMigrations.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageBase.d.ts +68 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageBase.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageBase.js +290 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageBase.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageIdb.d.ts +92 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageIdb.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageIdb.js +465 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageIdb.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageKnex.d.ts +62 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageKnex.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageKnex.js +378 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageKnex.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageMemory.d.ts +5 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageMemory.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageMemory.js +24 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageMemory.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageNoDb.d.ts +37 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageNoDb.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageNoDb.js +260 -0
- package/out/src/services/chaintracker/chaintracks/Storage/ChaintracksStorageNoDb.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageIdb.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageIdb.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageIdb.test.js +81 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageIdb.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageKnex.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageKnex.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageKnex.test.js +39 -0
- package/out/src/services/chaintracker/chaintracks/Storage/__tests/ChaintracksStorageKnex.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/Chaintracks.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/__tests/Chaintracks.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/Chaintracks.test.js +67 -0
- package/out/src/services/chaintracker/chaintracks/__tests/Chaintracks.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/ChaintracksClientApi.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/__tests/ChaintracksClientApi.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/ChaintracksClientApi.test.js +160 -0
- package/out/src/services/chaintracker/chaintracks/__tests/ChaintracksClientApi.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/LocalCdnServer.d.ts +12 -0
- package/out/src/services/chaintracker/chaintracks/__tests/LocalCdnServer.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/LocalCdnServer.js +69 -0
- package/out/src/services/chaintracker/chaintracks/__tests/LocalCdnServer.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/createIdbChaintracks.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/__tests/createIdbChaintracks.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/__tests/createIdbChaintracks.test.js +51 -0
- package/out/src/services/chaintracker/chaintracks/__tests/createIdbChaintracks.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultIdbChaintracksOptions.d.ts +5 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultIdbChaintracksOptions.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultIdbChaintracksOptions.js +68 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultIdbChaintracksOptions.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultKnexChaintracksOptions.d.ts +12 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultKnexChaintracksOptions.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultKnexChaintracksOptions.js +85 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultKnexChaintracksOptions.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultNoDbChaintracksOptions.d.ts +5 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultNoDbChaintracksOptions.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultNoDbChaintracksOptions.js +68 -0
- package/out/src/services/chaintracker/chaintracks/createDefaultNoDbChaintracksOptions.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createIdbChaintracks.d.ts +13 -0
- package/out/src/services/chaintracker/chaintracks/createIdbChaintracks.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createIdbChaintracks.js +27 -0
- package/out/src/services/chaintracker/chaintracks/createIdbChaintracks.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createKnexChaintracks.d.ts +14 -0
- package/out/src/services/chaintracker/chaintracks/createKnexChaintracks.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createKnexChaintracks.js +27 -0
- package/out/src/services/chaintracker/chaintracks/createKnexChaintracks.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createNoDbChaintracks.d.ts +13 -0
- package/out/src/services/chaintracker/chaintracks/createNoDbChaintracks.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/createNoDbChaintracks.js +27 -0
- package/out/src/services/chaintracker/chaintracks/createNoDbChaintracks.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.all.d.ts +10 -0
- package/out/src/services/chaintracker/chaintracks/index.all.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.all.js +26 -0
- package/out/src/services/chaintracker/chaintracks/index.all.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.client.d.ts +4 -0
- package/out/src/services/chaintracker/chaintracks/index.client.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.client.js +20 -0
- package/out/src/services/chaintracker/chaintracks/index.client.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.mobile.d.ts +30 -0
- package/out/src/services/chaintracker/chaintracks/index.mobile.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/index.mobile.js +68 -0
- package/out/src/services/chaintracker/chaintracks/index.mobile.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataManager.d.ts +155 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataManager.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataManager.js +848 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataManager.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataReader.d.ts +22 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataReader.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataReader.js +60 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFileDataReader.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFilesReader.d.ts +78 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFilesReader.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFilesReader.js +261 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkFilesReader.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkHeaderFile.d.ts +129 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkHeaderFile.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkHeaderFile.js +145 -0
- package/out/src/services/chaintracker/chaintracks/util/BulkHeaderFile.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFetch.d.ts +14 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFetch.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFetch.js +67 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFetch.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFs.d.ts +47 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFs.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFs.js +120 -0
- package/out/src/services/chaintracker/chaintracks/util/ChaintracksFs.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/HeightRange.d.ts +90 -0
- package/out/src/services/chaintracker/chaintracks/util/HeightRange.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/HeightRange.js +140 -0
- package/out/src/services/chaintracker/chaintracks/util/HeightRange.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/SingleWriterMultiReaderLock.d.ts +14 -0
- package/out/src/services/chaintracker/chaintracks/util/SingleWriterMultiReaderLock.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/SingleWriterMultiReaderLock.js +88 -0
- package/out/src/services/chaintracker/chaintracks/util/SingleWriterMultiReaderLock.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/BulkFileDataManager.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/BulkFileDataManager.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/BulkFileDataManager.test.js +255 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/BulkFileDataManager.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/ChaintracksFetch.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/ChaintracksFetch.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/ChaintracksFetch.test.js +56 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/ChaintracksFetch.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/HeightRange.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/HeightRange.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/HeightRange.test.js +69 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/HeightRange.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/SingleWriterMultiReaderLock.test.d.ts +2 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/SingleWriterMultiReaderLock.test.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/SingleWriterMultiReaderLock.test.js +51 -0
- package/out/src/services/chaintracker/chaintracks/util/__tests/SingleWriterMultiReaderLock.test.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/blockHeaderUtilities.d.ts +159 -0
- package/out/src/services/chaintracker/chaintracks/util/blockHeaderUtilities.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/blockHeaderUtilities.js +520 -0
- package/out/src/services/chaintracker/chaintracks/util/blockHeaderUtilities.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/dirtyHashes.d.ts +20 -0
- package/out/src/services/chaintracker/chaintracks/util/dirtyHashes.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/dirtyHashes.js +31 -0
- package/out/src/services/chaintracker/chaintracks/util/dirtyHashes.js.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/validBulkHeaderFilesByFileHash.d.ts +37 -0
- package/out/src/services/chaintracker/chaintracks/util/validBulkHeaderFilesByFileHash.d.ts.map +1 -0
- package/out/src/services/chaintracker/chaintracks/util/validBulkHeaderFilesByFileHash.js +432 -0
- package/out/src/services/chaintracker/chaintracks/util/validBulkHeaderFilesByFileHash.js.map +1 -0
- package/out/src/services/chaintracker/index.all.d.ts +4 -0
- package/out/src/services/chaintracker/index.all.d.ts.map +1 -0
- package/out/src/services/chaintracker/index.all.js +20 -0
- package/out/src/services/chaintracker/index.all.js.map +1 -0
- package/out/src/services/chaintracker/index.client.d.ts +4 -0
- package/out/src/services/chaintracker/index.client.d.ts.map +1 -0
- package/out/src/services/chaintracker/index.client.js +20 -0
- package/out/src/services/chaintracker/index.client.js.map +1 -0
- package/out/src/services/chaintracker/index.mobile.d.ts +4 -0
- package/out/src/services/chaintracker/index.mobile.d.ts.map +1 -0
- package/out/src/services/chaintracker/index.mobile.js +20 -0
- package/out/src/services/chaintracker/index.mobile.js.map +1 -0
- package/out/src/services/createDefaultWalletServicesOptions.d.ts +7 -0
- package/out/src/services/createDefaultWalletServicesOptions.d.ts.map +1 -0
- package/out/src/services/createDefaultWalletServicesOptions.js +65 -0
- package/out/src/services/createDefaultWalletServicesOptions.js.map +1 -0
- package/out/src/services/index.d.ts +2 -0
- package/out/src/services/index.d.ts.map +1 -0
- package/out/src/services/index.js +18 -0
- package/out/src/services/index.js.map +1 -0
- package/out/src/services/providers/ARC.d.ts +92 -0
- package/out/src/services/providers/ARC.d.ts.map +1 -0
- package/out/src/services/providers/ARC.js +270 -0
- package/out/src/services/providers/ARC.js.map +1 -0
- package/out/src/services/providers/Bitails.d.ts +50 -0
- package/out/src/services/providers/Bitails.d.ts.map +1 -0
- package/out/src/services/providers/Bitails.js +224 -0
- package/out/src/services/providers/Bitails.js.map +1 -0
- package/out/src/services/providers/SdkWhatsOnChain.d.ts +21 -0
- package/out/src/services/providers/SdkWhatsOnChain.d.ts.map +1 -0
- package/out/src/services/providers/SdkWhatsOnChain.js +67 -0
- package/out/src/services/providers/SdkWhatsOnChain.js.map +1 -0
- package/out/src/services/providers/WhatsOnChain.d.ts +130 -0
- package/out/src/services/providers/WhatsOnChain.d.ts.map +1 -0
- package/out/src/services/providers/WhatsOnChain.js +679 -0
- package/out/src/services/providers/WhatsOnChain.js.map +1 -0
- package/out/src/services/providers/__tests/WhatsOnChain.test.d.ts +2 -0
- package/out/src/services/providers/__tests/WhatsOnChain.test.d.ts.map +1 -0
- package/out/src/services/providers/__tests/WhatsOnChain.test.js +191 -0
- package/out/src/services/providers/__tests/WhatsOnChain.test.js.map +1 -0
- package/out/src/services/providers/__tests/exchangeRates.test.d.ts +2 -0
- package/out/src/services/providers/__tests/exchangeRates.test.d.ts.map +1 -0
- package/out/src/services/providers/__tests/exchangeRates.test.js +19 -0
- package/out/src/services/providers/__tests/exchangeRates.test.js.map +1 -0
- package/out/src/services/providers/exchangeRates.d.ts +12 -0
- package/out/src/services/providers/exchangeRates.d.ts.map +1 -0
- package/out/src/services/providers/exchangeRates.js +237 -0
- package/out/src/services/providers/exchangeRates.js.map +1 -0
- package/out/src/services/providers/getBeefForTxid.d.ts +4 -0
- package/out/src/services/providers/getBeefForTxid.d.ts.map +1 -0
- package/out/src/services/providers/getBeefForTxid.js +286 -0
- package/out/src/services/providers/getBeefForTxid.js.map +1 -0
- package/out/src/signer/WalletSigner.d.ts +11 -0
- package/out/src/signer/WalletSigner.d.ts.map +1 -0
- package/out/src/signer/WalletSigner.js +13 -0
- package/out/src/signer/WalletSigner.js.map +1 -0
- package/out/src/signer/methods/acquireDirectCertificate.d.ts +5 -0
- package/out/src/signer/methods/acquireDirectCertificate.d.ts.map +1 -0
- package/out/src/signer/methods/acquireDirectCertificate.js +45 -0
- package/out/src/signer/methods/acquireDirectCertificate.js.map +1 -0
- package/out/src/signer/methods/buildSignableTransaction.d.ts +15 -0
- package/out/src/signer/methods/buildSignableTransaction.d.ts.map +1 -0
- package/out/src/signer/methods/buildSignableTransaction.js +142 -0
- package/out/src/signer/methods/buildSignableTransaction.js.map +1 -0
- package/out/src/signer/methods/completeSignedTransaction.d.ts +10 -0
- package/out/src/signer/methods/completeSignedTransaction.d.ts.map +1 -0
- package/out/src/signer/methods/completeSignedTransaction.js +106 -0
- package/out/src/signer/methods/completeSignedTransaction.js.map +1 -0
- package/out/src/signer/methods/createAction.d.ts +14 -0
- package/out/src/signer/methods/createAction.d.ts.map +1 -0
- package/out/src/signer/methods/createAction.js +117 -0
- package/out/src/signer/methods/createAction.js.map +1 -0
- package/out/src/signer/methods/internalizeAction.d.ts +32 -0
- package/out/src/signer/methods/internalizeAction.d.ts.map +1 -0
- package/out/src/signer/methods/internalizeAction.js +93 -0
- package/out/src/signer/methods/internalizeAction.js.map +1 -0
- package/out/src/signer/methods/proveCertificate.d.ts +5 -0
- package/out/src/signer/methods/proveCertificate.d.ts.map +1 -0
- package/out/src/signer/methods/proveCertificate.js +29 -0
- package/out/src/signer/methods/proveCertificate.js.map +1 -0
- package/out/src/signer/methods/signAction.d.ts +11 -0
- package/out/src/signer/methods/signAction.d.ts.map +1 -0
- package/out/src/signer/methods/signAction.js +41 -0
- package/out/src/signer/methods/signAction.js.map +1 -0
- package/out/src/storage/StorageIdb.d.ts +210 -0
- package/out/src/storage/StorageIdb.d.ts.map +1 -0
- package/out/src/storage/StorageIdb.js +2297 -0
- package/out/src/storage/StorageIdb.js.map +1 -0
- package/out/src/storage/StorageKnex.d.ts +178 -0
- package/out/src/storage/StorageKnex.d.ts.map +1 -0
- package/out/src/storage/StorageKnex.js +1218 -0
- package/out/src/storage/StorageKnex.js.map +1 -0
- package/out/src/storage/StorageProvider.d.ts +222 -0
- package/out/src/storage/StorageProvider.d.ts.map +1 -0
- package/out/src/storage/StorageProvider.js +567 -0
- package/out/src/storage/StorageProvider.js.map +1 -0
- package/out/src/storage/StorageReader.d.ts +77 -0
- package/out/src/storage/StorageReader.d.ts.map +1 -0
- package/out/src/storage/StorageReader.js +163 -0
- package/out/src/storage/StorageReader.js.map +1 -0
- package/out/src/storage/StorageReaderWriter.d.ts +102 -0
- package/out/src/storage/StorageReaderWriter.d.ts.map +1 -0
- package/out/src/storage/StorageReaderWriter.js +338 -0
- package/out/src/storage/StorageReaderWriter.js.map +1 -0
- package/out/src/storage/StorageSyncReader.d.ts +18 -0
- package/out/src/storage/StorageSyncReader.d.ts.map +1 -0
- package/out/src/storage/StorageSyncReader.js +71 -0
- package/out/src/storage/StorageSyncReader.js.map +1 -0
- package/out/src/storage/WalletStorageManager.d.ts +221 -0
- package/out/src/storage/WalletStorageManager.d.ts.map +1 -0
- package/out/src/storage/WalletStorageManager.js +819 -0
- package/out/src/storage/WalletStorageManager.js.map +1 -0
- package/out/src/storage/__test/StorageIdb.test.d.ts +2 -0
- package/out/src/storage/__test/StorageIdb.test.d.ts.map +1 -0
- package/out/src/storage/__test/StorageIdb.test.js +44 -0
- package/out/src/storage/__test/StorageIdb.test.js.map +1 -0
- package/out/src/storage/__test/WalletStorageManager.test.d.ts +2 -0
- package/out/src/storage/__test/WalletStorageManager.test.d.ts.map +1 -0
- package/out/src/storage/__test/WalletStorageManager.test.js +254 -0
- package/out/src/storage/__test/WalletStorageManager.test.js.map +1 -0
- package/out/src/storage/__test/adminStats.man.test.d.ts +2 -0
- package/out/src/storage/__test/adminStats.man.test.d.ts.map +1 -0
- package/out/src/storage/__test/adminStats.man.test.js +78 -0
- package/out/src/storage/__test/adminStats.man.test.js.map +1 -0
- package/out/src/storage/__test/getBeefForTransaction.test.d.ts +2 -0
- package/out/src/storage/__test/getBeefForTransaction.test.d.ts.map +1 -0
- package/out/src/storage/__test/getBeefForTransaction.test.js +300 -0
- package/out/src/storage/__test/getBeefForTransaction.test.js.map +1 -0
- package/out/src/storage/index.all.d.ts +12 -0
- package/out/src/storage/index.all.d.ts.map +1 -0
- package/out/src/storage/index.all.js +51 -0
- package/out/src/storage/index.all.js.map +1 -0
- package/out/src/storage/index.client.d.ts +8 -0
- package/out/src/storage/index.client.d.ts.map +1 -0
- package/out/src/storage/index.client.js +24 -0
- package/out/src/storage/index.client.js.map +1 -0
- package/out/src/storage/index.mobile.d.ts +7 -0
- package/out/src/storage/index.mobile.d.ts.map +1 -0
- package/out/src/storage/index.mobile.js +23 -0
- package/out/src/storage/index.mobile.js.map +1 -0
- package/out/src/storage/methods/ListActionsSpecOp.d.ts +18 -0
- package/out/src/storage/methods/ListActionsSpecOp.d.ts.map +1 -0
- package/out/src/storage/methods/ListActionsSpecOp.js +40 -0
- package/out/src/storage/methods/ListActionsSpecOp.js.map +1 -0
- package/out/src/storage/methods/ListOutputsSpecOp.d.ts +26 -0
- package/out/src/storage/methods/ListOutputsSpecOp.d.ts.map +1 -0
- package/out/src/storage/methods/ListOutputsSpecOp.js +75 -0
- package/out/src/storage/methods/ListOutputsSpecOp.js.map +1 -0
- package/out/src/storage/methods/__test/GenerateChange/generateChangeSdk.test.d.ts +2 -0
- package/out/src/storage/methods/__test/GenerateChange/generateChangeSdk.test.d.ts.map +1 -0
- package/out/src/storage/methods/__test/GenerateChange/generateChangeSdk.test.js +959 -0
- package/out/src/storage/methods/__test/GenerateChange/generateChangeSdk.test.js.map +1 -0
- package/out/src/storage/methods/__test/GenerateChange/randomValsUsed1.d.ts +2 -0
- package/out/src/storage/methods/__test/GenerateChange/randomValsUsed1.d.ts.map +1 -0
- package/out/src/storage/methods/__test/GenerateChange/randomValsUsed1.js +24 -0
- package/out/src/storage/methods/__test/GenerateChange/randomValsUsed1.js.map +1 -0
- package/out/src/storage/methods/__test/offsetKey.test.d.ts +2 -0
- package/out/src/storage/methods/__test/offsetKey.test.d.ts.map +1 -0
- package/out/src/storage/methods/__test/offsetKey.test.js +216 -0
- package/out/src/storage/methods/__test/offsetKey.test.js.map +1 -0
- package/out/src/storage/methods/attemptToPostReqsToNetwork.d.ts +41 -0
- package/out/src/storage/methods/attemptToPostReqsToNetwork.d.ts.map +1 -0
- package/out/src/storage/methods/attemptToPostReqsToNetwork.js +324 -0
- package/out/src/storage/methods/attemptToPostReqsToNetwork.js.map +1 -0
- package/out/src/storage/methods/createAction.d.ts +13 -0
- package/out/src/storage/methods/createAction.d.ts.map +1 -0
- package/out/src/storage/methods/createAction.js +732 -0
- package/out/src/storage/methods/createAction.js.map +1 -0
- package/out/src/storage/methods/generateChange.d.ts +96 -0
- package/out/src/storage/methods/generateChange.d.ts.map +1 -0
- package/out/src/storage/methods/generateChange.js +405 -0
- package/out/src/storage/methods/generateChange.js.map +1 -0
- package/out/src/storage/methods/getBeefForTransaction.d.ts +23 -0
- package/out/src/storage/methods/getBeefForTransaction.d.ts.map +1 -0
- package/out/src/storage/methods/getBeefForTransaction.js +109 -0
- package/out/src/storage/methods/getBeefForTransaction.js.map +1 -0
- package/out/src/storage/methods/getSyncChunk.d.ts +10 -0
- package/out/src/storage/methods/getSyncChunk.d.ts.map +1 -0
- package/out/src/storage/methods/getSyncChunk.js +272 -0
- package/out/src/storage/methods/getSyncChunk.js.map +1 -0
- package/out/src/storage/methods/internalizeAction.d.ts +31 -0
- package/out/src/storage/methods/internalizeAction.d.ts.map +1 -0
- package/out/src/storage/methods/internalizeAction.js +462 -0
- package/out/src/storage/methods/internalizeAction.js.map +1 -0
- package/out/src/storage/methods/listActionsIdb.d.ts +5 -0
- package/out/src/storage/methods/listActionsIdb.d.ts.map +1 -0
- package/out/src/storage/methods/listActionsIdb.js +155 -0
- package/out/src/storage/methods/listActionsIdb.js.map +1 -0
- package/out/src/storage/methods/listActionsKnex.d.ts +5 -0
- package/out/src/storage/methods/listActionsKnex.d.ts.map +1 -0
- package/out/src/storage/methods/listActionsKnex.js +198 -0
- package/out/src/storage/methods/listActionsKnex.js.map +1 -0
- package/out/src/storage/methods/listCertificates.d.ts +5 -0
- package/out/src/storage/methods/listCertificates.d.ts.map +1 -0
- package/out/src/storage/methods/listCertificates.js +68 -0
- package/out/src/storage/methods/listCertificates.js.map +1 -0
- package/out/src/storage/methods/listOutputsIdb.d.ts +5 -0
- package/out/src/storage/methods/listOutputsIdb.d.ts.map +1 -0
- package/out/src/storage/methods/listOutputsIdb.js +185 -0
- package/out/src/storage/methods/listOutputsIdb.js.map +1 -0
- package/out/src/storage/methods/listOutputsKnex.d.ts +5 -0
- package/out/src/storage/methods/listOutputsKnex.d.ts.map +1 -0
- package/out/src/storage/methods/listOutputsKnex.js +241 -0
- package/out/src/storage/methods/listOutputsKnex.js.map +1 -0
- package/out/src/storage/methods/offsetKey.d.ts +24 -0
- package/out/src/storage/methods/offsetKey.d.ts.map +1 -0
- package/out/src/storage/methods/offsetKey.js +67 -0
- package/out/src/storage/methods/offsetKey.js.map +1 -0
- package/out/src/storage/methods/processAction.d.ts +54 -0
- package/out/src/storage/methods/processAction.d.ts.map +1 -0
- package/out/src/storage/methods/processAction.js +267 -0
- package/out/src/storage/methods/processAction.js.map +1 -0
- package/out/src/storage/methods/purgeData.d.ts +4 -0
- package/out/src/storage/methods/purgeData.d.ts.map +1 -0
- package/out/src/storage/methods/purgeData.js +207 -0
- package/out/src/storage/methods/purgeData.js.map +1 -0
- package/out/src/storage/methods/purgeDataIdb.d.ts +4 -0
- package/out/src/storage/methods/purgeDataIdb.d.ts.map +1 -0
- package/out/src/storage/methods/purgeDataIdb.js +9 -0
- package/out/src/storage/methods/purgeDataIdb.js.map +1 -0
- package/out/src/storage/methods/reviewStatus.d.ts +20 -0
- package/out/src/storage/methods/reviewStatus.d.ts.map +1 -0
- package/out/src/storage/methods/reviewStatus.js +84 -0
- package/out/src/storage/methods/reviewStatus.js.map +1 -0
- package/out/src/storage/methods/reviewStatusIdb.d.ts +20 -0
- package/out/src/storage/methods/reviewStatusIdb.d.ts.map +1 -0
- package/out/src/storage/methods/reviewStatusIdb.js +35 -0
- package/out/src/storage/methods/reviewStatusIdb.js.map +1 -0
- package/out/src/storage/methods/utils.Buffer.d.ts +21 -0
- package/out/src/storage/methods/utils.Buffer.d.ts.map +1 -0
- package/out/src/storage/methods/utils.Buffer.js +37 -0
- package/out/src/storage/methods/utils.Buffer.js.map +1 -0
- package/out/src/storage/methods/utils.d.ts +25 -0
- package/out/src/storage/methods/utils.d.ts.map +1 -0
- package/out/src/storage/methods/utils.js +53 -0
- package/out/src/storage/methods/utils.js.map +1 -0
- package/out/src/storage/remoting/StorageClient.d.ts +292 -0
- package/out/src/storage/remoting/StorageClient.d.ts.map +1 -0
- package/out/src/storage/remoting/StorageClient.js +497 -0
- package/out/src/storage/remoting/StorageClient.js.map +1 -0
- package/out/src/storage/remoting/StorageMobile.d.ts +292 -0
- package/out/src/storage/remoting/StorageMobile.d.ts.map +1 -0
- package/out/src/storage/remoting/StorageMobile.js +477 -0
- package/out/src/storage/remoting/StorageMobile.js.map +1 -0
- package/out/src/storage/remoting/StorageServer.d.ts +48 -0
- package/out/src/storage/remoting/StorageServer.d.ts.map +1 -0
- package/out/src/storage/remoting/StorageServer.js +279 -0
- package/out/src/storage/remoting/StorageServer.js.map +1 -0
- package/out/src/storage/remoting/__test/StorageClient.test.d.ts +2 -0
- package/out/src/storage/remoting/__test/StorageClient.test.d.ts.map +1 -0
- package/out/src/storage/remoting/__test/StorageClient.test.js +98 -0
- package/out/src/storage/remoting/__test/StorageClient.test.js.map +1 -0
- package/out/src/storage/schema/KnexMigrations.d.ts +39 -0
- package/out/src/storage/schema/KnexMigrations.d.ts.map +1 -0
- package/out/src/storage/schema/KnexMigrations.js +458 -0
- package/out/src/storage/schema/KnexMigrations.js.map +1 -0
- package/out/src/storage/schema/StorageIdbSchema.d.ts +133 -0
- package/out/src/storage/schema/StorageIdbSchema.d.ts.map +1 -0
- package/out/src/storage/schema/StorageIdbSchema.js +3 -0
- package/out/src/storage/schema/StorageIdbSchema.js.map +1 -0
- package/out/src/storage/schema/entities/EntityBase.d.ts +106 -0
- package/out/src/storage/schema/entities/EntityBase.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityBase.js +100 -0
- package/out/src/storage/schema/entities/EntityBase.js.map +1 -0
- package/out/src/storage/schema/entities/EntityCertificate.d.ts +44 -0
- package/out/src/storage/schema/entities/EntityCertificate.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityCertificate.js +162 -0
- package/out/src/storage/schema/entities/EntityCertificate.js.map +1 -0
- package/out/src/storage/schema/entities/EntityCertificateField.d.ts +33 -0
- package/out/src/storage/schema/entities/EntityCertificateField.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityCertificateField.js +112 -0
- package/out/src/storage/schema/entities/EntityCertificateField.js.map +1 -0
- package/out/src/storage/schema/entities/EntityCommission.d.ts +38 -0
- package/out/src/storage/schema/entities/EntityCommission.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityCommission.js +127 -0
- package/out/src/storage/schema/entities/EntityCommission.js.map +1 -0
- package/out/src/storage/schema/entities/EntityOutput.d.ts +68 -0
- package/out/src/storage/schema/entities/EntityOutput.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityOutput.js +264 -0
- package/out/src/storage/schema/entities/EntityOutput.js.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputBasket.d.ts +36 -0
- package/out/src/storage/schema/entities/EntityOutputBasket.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputBasket.js +133 -0
- package/out/src/storage/schema/entities/EntityOutputBasket.js.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputTag.d.ts +32 -0
- package/out/src/storage/schema/entities/EntityOutputTag.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputTag.js +104 -0
- package/out/src/storage/schema/entities/EntityOutputTag.js.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputTagMap.d.ts +29 -0
- package/out/src/storage/schema/entities/EntityOutputTagMap.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityOutputTagMap.js +98 -0
- package/out/src/storage/schema/entities/EntityOutputTagMap.js.map +1 -0
- package/out/src/storage/schema/entities/EntityProvenTx.d.ts +87 -0
- package/out/src/storage/schema/entities/EntityProvenTx.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityProvenTx.js +278 -0
- package/out/src/storage/schema/entities/EntityProvenTx.js.map +1 -0
- package/out/src/storage/schema/entities/EntityProvenTxReq.d.ts +139 -0
- package/out/src/storage/schema/entities/EntityProvenTxReq.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityProvenTxReq.js +524 -0
- package/out/src/storage/schema/entities/EntityProvenTxReq.js.map +1 -0
- package/out/src/storage/schema/entities/EntitySyncState.d.ts +69 -0
- package/out/src/storage/schema/entities/EntitySyncState.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntitySyncState.js +334 -0
- package/out/src/storage/schema/entities/EntitySyncState.js.map +1 -0
- package/out/src/storage/schema/entities/EntityTransaction.d.ts +71 -0
- package/out/src/storage/schema/entities/EntityTransaction.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityTransaction.js +255 -0
- package/out/src/storage/schema/entities/EntityTransaction.js.map +1 -0
- package/out/src/storage/schema/entities/EntityTxLabel.d.ts +32 -0
- package/out/src/storage/schema/entities/EntityTxLabel.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityTxLabel.js +104 -0
- package/out/src/storage/schema/entities/EntityTxLabel.js.map +1 -0
- package/out/src/storage/schema/entities/EntityTxLabelMap.d.ts +29 -0
- package/out/src/storage/schema/entities/EntityTxLabelMap.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityTxLabelMap.js +98 -0
- package/out/src/storage/schema/entities/EntityTxLabelMap.js.map +1 -0
- package/out/src/storage/schema/entities/EntityUser.d.ts +30 -0
- package/out/src/storage/schema/entities/EntityUser.d.ts.map +1 -0
- package/out/src/storage/schema/entities/EntityUser.js +99 -0
- package/out/src/storage/schema/entities/EntityUser.js.map +1 -0
- package/out/src/storage/schema/entities/MergeEntity.d.ts +34 -0
- package/out/src/storage/schema/entities/MergeEntity.d.ts.map +1 -0
- package/out/src/storage/schema/entities/MergeEntity.js +63 -0
- package/out/src/storage/schema/entities/MergeEntity.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/CertificateFieldTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/CertificateFieldTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/CertificateFieldTests.test.js +301 -0
- package/out/src/storage/schema/entities/__tests/CertificateFieldTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/CertificateTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/CertificateTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/CertificateTests.test.js +308 -0
- package/out/src/storage/schema/entities/__tests/CertificateTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/CommissionTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/CommissionTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/CommissionTests.test.js +316 -0
- package/out/src/storage/schema/entities/__tests/CommissionTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputBasketTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/OutputBasketTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputBasketTests.test.js +228 -0
- package/out/src/storage/schema/entities/__tests/OutputBasketTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTagMapTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/OutputTagMapTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTagMapTests.test.js +191 -0
- package/out/src/storage/schema/entities/__tests/OutputTagMapTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTagTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/OutputTagTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTagTests.test.js +226 -0
- package/out/src/storage/schema/entities/__tests/OutputTagTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/OutputTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/OutputTests.test.js +413 -0
- package/out/src/storage/schema/entities/__tests/OutputTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxReqTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxReqTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxReqTests.test.js +299 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxReqTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxTests.test.js +470 -0
- package/out/src/storage/schema/entities/__tests/ProvenTxTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/SyncStateTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/SyncStateTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/SyncStateTests.test.js +234 -0
- package/out/src/storage/schema/entities/__tests/SyncStateTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/TransactionTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/TransactionTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/TransactionTests.test.js +539 -0
- package/out/src/storage/schema/entities/__tests/TransactionTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/TxLabelMapTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/TxLabelMapTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/TxLabelMapTests.test.js +304 -0
- package/out/src/storage/schema/entities/__tests/TxLabelMapTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/TxLabelTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/TxLabelTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/TxLabelTests.test.js +170 -0
- package/out/src/storage/schema/entities/__tests/TxLabelTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/stampLogTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/stampLogTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/stampLogTests.test.js +81 -0
- package/out/src/storage/schema/entities/__tests/stampLogTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/__tests/usersTests.test.d.ts +2 -0
- package/out/src/storage/schema/entities/__tests/usersTests.test.d.ts.map +1 -0
- package/out/src/storage/schema/entities/__tests/usersTests.test.js +277 -0
- package/out/src/storage/schema/entities/__tests/usersTests.test.js.map +1 -0
- package/out/src/storage/schema/entities/index.d.ts +17 -0
- package/out/src/storage/schema/entities/index.d.ts.map +1 -0
- package/out/src/storage/schema/entities/index.js +33 -0
- package/out/src/storage/schema/entities/index.js.map +1 -0
- package/out/src/storage/schema/tables/TableCertificate.d.ts +20 -0
- package/out/src/storage/schema/tables/TableCertificate.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableCertificate.js +3 -0
- package/out/src/storage/schema/tables/TableCertificate.js.map +1 -0
- package/out/src/storage/schema/tables/TableCertificateField.d.ts +12 -0
- package/out/src/storage/schema/tables/TableCertificateField.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableCertificateField.js +3 -0
- package/out/src/storage/schema/tables/TableCertificateField.js.map +1 -0
- package/out/src/storage/schema/tables/TableCommission.d.ts +13 -0
- package/out/src/storage/schema/tables/TableCommission.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableCommission.js +3 -0
- package/out/src/storage/schema/tables/TableCommission.js.map +1 -0
- package/out/src/storage/schema/tables/TableMonitorEvent.d.ts +9 -0
- package/out/src/storage/schema/tables/TableMonitorEvent.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableMonitorEvent.js +3 -0
- package/out/src/storage/schema/tables/TableMonitorEvent.js.map +1 -0
- package/out/src/storage/schema/tables/TableOutput.d.ts +36 -0
- package/out/src/storage/schema/tables/TableOutput.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableOutput.js +31 -0
- package/out/src/storage/schema/tables/TableOutput.js.map +1 -0
- package/out/src/storage/schema/tables/TableOutputBasket.d.ts +12 -0
- package/out/src/storage/schema/tables/TableOutputBasket.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableOutputBasket.js +3 -0
- package/out/src/storage/schema/tables/TableOutputBasket.js.map +1 -0
- package/out/src/storage/schema/tables/TableOutputTag.d.ts +10 -0
- package/out/src/storage/schema/tables/TableOutputTag.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableOutputTag.js +3 -0
- package/out/src/storage/schema/tables/TableOutputTag.js.map +1 -0
- package/out/src/storage/schema/tables/TableOutputTagMap.d.ts +9 -0
- package/out/src/storage/schema/tables/TableOutputTagMap.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableOutputTagMap.js +3 -0
- package/out/src/storage/schema/tables/TableOutputTagMap.js.map +1 -0
- package/out/src/storage/schema/tables/TableProvenTx.d.ts +14 -0
- package/out/src/storage/schema/tables/TableProvenTx.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableProvenTx.js +3 -0
- package/out/src/storage/schema/tables/TableProvenTx.js.map +1 -0
- package/out/src/storage/schema/tables/TableProvenTxReq.d.ts +64 -0
- package/out/src/storage/schema/tables/TableProvenTxReq.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableProvenTxReq.js +3 -0
- package/out/src/storage/schema/tables/TableProvenTxReq.js.map +1 -0
- package/out/src/storage/schema/tables/TableSettings.d.ts +17 -0
- package/out/src/storage/schema/tables/TableSettings.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableSettings.js +3 -0
- package/out/src/storage/schema/tables/TableSettings.js.map +1 -0
- package/out/src/storage/schema/tables/TableSyncState.d.ts +18 -0
- package/out/src/storage/schema/tables/TableSyncState.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableSyncState.js +3 -0
- package/out/src/storage/schema/tables/TableSyncState.js.map +1 -0
- package/out/src/storage/schema/tables/TableTransaction.d.ts +37 -0
- package/out/src/storage/schema/tables/TableTransaction.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableTransaction.js +21 -0
- package/out/src/storage/schema/tables/TableTransaction.js.map +1 -0
- package/out/src/storage/schema/tables/TableTxLabel.d.ts +10 -0
- package/out/src/storage/schema/tables/TableTxLabel.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableTxLabel.js +3 -0
- package/out/src/storage/schema/tables/TableTxLabel.js.map +1 -0
- package/out/src/storage/schema/tables/TableTxLabelMap.d.ts +9 -0
- package/out/src/storage/schema/tables/TableTxLabelMap.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableTxLabelMap.js +3 -0
- package/out/src/storage/schema/tables/TableTxLabelMap.js.map +1 -0
- package/out/src/storage/schema/tables/TableUser.d.ts +16 -0
- package/out/src/storage/schema/tables/TableUser.d.ts.map +1 -0
- package/out/src/storage/schema/tables/TableUser.js +3 -0
- package/out/src/storage/schema/tables/TableUser.js.map +1 -0
- package/out/src/storage/schema/tables/index.d.ts +17 -0
- package/out/src/storage/schema/tables/index.d.ts.map +1 -0
- package/out/src/storage/schema/tables/index.js +33 -0
- package/out/src/storage/schema/tables/index.js.map +1 -0
- package/out/src/storage/sync/StorageMySQLDojoReader.d.ts +88 -0
- package/out/src/storage/sync/StorageMySQLDojoReader.d.ts.map +1 -0
- package/out/src/storage/sync/StorageMySQLDojoReader.js +612 -0
- package/out/src/storage/sync/StorageMySQLDojoReader.js.map +1 -0
- package/out/src/storage/sync/index.d.ts +2 -0
- package/out/src/storage/sync/index.d.ts.map +1 -0
- package/out/src/storage/sync/index.js +18 -0
- package/out/src/storage/sync/index.js.map +1 -0
- package/out/src/utility/Format.d.ts +14 -0
- package/out/src/utility/Format.d.ts.map +1 -0
- package/out/src/utility/Format.js +167 -0
- package/out/src/utility/Format.js.map +1 -0
- package/out/src/utility/ReaderUint8Array.d.ts +28 -0
- package/out/src/utility/ReaderUint8Array.d.ts.map +1 -0
- package/out/src/utility/ReaderUint8Array.js +166 -0
- package/out/src/utility/ReaderUint8Array.js.map +1 -0
- package/out/src/utility/ScriptTemplateBRC29.d.ts +25 -0
- package/out/src/utility/ScriptTemplateBRC29.d.ts.map +1 -0
- package/out/src/utility/ScriptTemplateBRC29.js +48 -0
- package/out/src/utility/ScriptTemplateBRC29.js.map +1 -0
- package/out/src/utility/__tests/utilityHelpers.noBuffer.test.d.ts +2 -0
- package/out/src/utility/__tests/utilityHelpers.noBuffer.test.d.ts.map +1 -0
- package/out/src/utility/__tests/utilityHelpers.noBuffer.test.js +107 -0
- package/out/src/utility/__tests/utilityHelpers.noBuffer.test.js.map +1 -0
- package/out/src/utility/aggregateResults.d.ts +8 -0
- package/out/src/utility/aggregateResults.d.ts.map +1 -0
- package/out/src/utility/aggregateResults.js +59 -0
- package/out/src/utility/aggregateResults.js.map +1 -0
- package/out/src/utility/identityUtils.d.ts +31 -0
- package/out/src/utility/identityUtils.d.ts.map +1 -0
- package/out/src/utility/identityUtils.js +116 -0
- package/out/src/utility/identityUtils.js.map +1 -0
- package/out/src/utility/index.all.d.ts +7 -0
- package/out/src/utility/index.all.d.ts.map +1 -0
- package/out/src/utility/index.all.js +23 -0
- package/out/src/utility/index.all.js.map +1 -0
- package/out/src/utility/index.client.d.ts +7 -0
- package/out/src/utility/index.client.d.ts.map +1 -0
- package/out/src/utility/index.client.js +23 -0
- package/out/src/utility/index.client.js.map +1 -0
- package/out/src/utility/parseTxScriptOffsets.d.ts +14 -0
- package/out/src/utility/parseTxScriptOffsets.d.ts.map +1 -0
- package/out/src/utility/parseTxScriptOffsets.js +26 -0
- package/out/src/utility/parseTxScriptOffsets.js.map +1 -0
- package/out/src/utility/stampLog.d.ts +18 -0
- package/out/src/utility/stampLog.d.ts.map +1 -0
- package/out/src/utility/stampLog.js +72 -0
- package/out/src/utility/stampLog.js.map +1 -0
- package/out/src/utility/tscProofToMerklePath.d.ts +8 -0
- package/out/src/utility/tscProofToMerklePath.d.ts.map +1 -0
- package/out/src/utility/tscProofToMerklePath.js +41 -0
- package/out/src/utility/tscProofToMerklePath.js.map +1 -0
- package/out/src/utility/utilityHelpers.buffer.d.ts +18 -0
- package/out/src/utility/utilityHelpers.buffer.d.ts.map +1 -0
- package/out/src/utility/utilityHelpers.buffer.js +45 -0
- package/out/src/utility/utilityHelpers.buffer.js.map +1 -0
- package/out/src/utility/utilityHelpers.d.ts +138 -0
- package/out/src/utility/utilityHelpers.d.ts.map +1 -0
- package/out/src/utility/utilityHelpers.js +294 -0
- package/out/src/utility/utilityHelpers.js.map +1 -0
- package/out/src/utility/utilityHelpers.noBuffer.d.ts +26 -0
- package/out/src/utility/utilityHelpers.noBuffer.d.ts.map +1 -0
- package/out/src/utility/utilityHelpers.noBuffer.js +64 -0
- package/out/src/utility/utilityHelpers.noBuffer.js.map +1 -0
- package/out/src/wab-client/WABClient.d.ts +49 -0
- package/out/src/wab-client/WABClient.d.ts.map +1 -0
- package/out/src/wab-client/WABClient.js +80 -0
- package/out/src/wab-client/WABClient.js.map +1 -0
- package/out/src/wab-client/__tests/WABClient.man.test.d.ts +2 -0
- package/out/src/wab-client/__tests/WABClient.man.test.d.ts.map +1 -0
- package/out/src/wab-client/__tests/WABClient.man.test.js +52 -0
- package/out/src/wab-client/__tests/WABClient.man.test.js.map +1 -0
- package/out/src/wab-client/auth-method-interactors/AuthMethodInteractor.d.ts +34 -0
- package/out/src/wab-client/auth-method-interactors/AuthMethodInteractor.d.ts.map +1 -0
- package/out/src/wab-client/auth-method-interactors/AuthMethodInteractor.js +16 -0
- package/out/src/wab-client/auth-method-interactors/AuthMethodInteractor.js.map +1 -0
- package/out/src/wab-client/auth-method-interactors/DevConsoleInteractor.d.ts +29 -0
- package/out/src/wab-client/auth-method-interactors/DevConsoleInteractor.d.ts.map +1 -0
- package/out/src/wab-client/auth-method-interactors/DevConsoleInteractor.js +70 -0
- package/out/src/wab-client/auth-method-interactors/DevConsoleInteractor.js.map +1 -0
- package/out/src/wab-client/auth-method-interactors/PersonaIDInteractor.d.ts +7 -0
- package/out/src/wab-client/auth-method-interactors/PersonaIDInteractor.d.ts.map +1 -0
- package/out/src/wab-client/auth-method-interactors/PersonaIDInteractor.js +36 -0
- package/out/src/wab-client/auth-method-interactors/PersonaIDInteractor.js.map +1 -0
- package/out/src/wab-client/auth-method-interactors/TwilioPhoneInteractor.d.ts +28 -0
- package/out/src/wab-client/auth-method-interactors/TwilioPhoneInteractor.d.ts.map +1 -0
- package/out/src/wab-client/auth-method-interactors/TwilioPhoneInteractor.js +69 -0
- package/out/src/wab-client/auth-method-interactors/TwilioPhoneInteractor.js.map +1 -0
- package/out/test/Wallet/StorageClient/storageClient.man.test.d.ts +2 -0
- package/out/test/Wallet/StorageClient/storageClient.man.test.d.ts.map +1 -0
- package/out/test/Wallet/StorageClient/storageClient.man.test.js +64 -0
- package/out/test/Wallet/StorageClient/storageClient.man.test.js.map +1 -0
- package/out/test/Wallet/action/abortAction.test.d.ts +2 -0
- package/out/test/Wallet/action/abortAction.test.d.ts.map +1 -0
- package/out/test/Wallet/action/abortAction.test.js +44 -0
- package/out/test/Wallet/action/abortAction.test.js.map +1 -0
- package/out/test/Wallet/action/createAction.test.d.ts +2 -0
- package/out/test/Wallet/action/createAction.test.d.ts.map +1 -0
- package/out/test/Wallet/action/createAction.test.js +272 -0
- package/out/test/Wallet/action/createAction.test.js.map +1 -0
- package/out/test/Wallet/action/createAction2.test.d.ts +37 -0
- package/out/test/Wallet/action/createAction2.test.d.ts.map +1 -0
- package/out/test/Wallet/action/createAction2.test.js +1143 -0
- package/out/test/Wallet/action/createAction2.test.js.map +1 -0
- package/out/test/Wallet/action/createActionToGenerateBeefs.man.test.d.ts +2 -0
- package/out/test/Wallet/action/createActionToGenerateBeefs.man.test.d.ts.map +1 -0
- package/out/test/Wallet/action/createActionToGenerateBeefs.man.test.js +273 -0
- package/out/test/Wallet/action/createActionToGenerateBeefs.man.test.js.map +1 -0
- package/out/test/Wallet/action/internalizeAction.a.test.d.ts +2 -0
- package/out/test/Wallet/action/internalizeAction.a.test.d.ts.map +1 -0
- package/out/test/Wallet/action/internalizeAction.a.test.js +243 -0
- package/out/test/Wallet/action/internalizeAction.a.test.js.map +1 -0
- package/out/test/Wallet/action/internalizeAction.test.d.ts +2 -0
- package/out/test/Wallet/action/internalizeAction.test.d.ts.map +1 -0
- package/out/test/Wallet/action/internalizeAction.test.js +608 -0
- package/out/test/Wallet/action/internalizeAction.test.js.map +1 -0
- package/out/test/Wallet/action/relinquishOutput.test.d.ts +2 -0
- package/out/test/Wallet/action/relinquishOutput.test.d.ts.map +1 -0
- package/out/test/Wallet/action/relinquishOutput.test.js +31 -0
- package/out/test/Wallet/action/relinquishOutput.test.js.map +1 -0
- package/out/test/Wallet/certificate/acquireCertificate.test.d.ts +2 -0
- package/out/test/Wallet/certificate/acquireCertificate.test.d.ts.map +1 -0
- package/out/test/Wallet/certificate/acquireCertificate.test.js +210 -0
- package/out/test/Wallet/certificate/acquireCertificate.test.js.map +1 -0
- package/out/test/Wallet/certificate/listCertificates.test.d.ts +2 -0
- package/out/test/Wallet/certificate/listCertificates.test.d.ts.map +1 -0
- package/out/test/Wallet/certificate/listCertificates.test.js +305 -0
- package/out/test/Wallet/certificate/listCertificates.test.js.map +1 -0
- package/out/test/Wallet/construct/Wallet.constructor.test.d.ts +2 -0
- package/out/test/Wallet/construct/Wallet.constructor.test.d.ts.map +1 -0
- package/out/test/Wallet/construct/Wallet.constructor.test.js +49 -0
- package/out/test/Wallet/construct/Wallet.constructor.test.js.map +1 -0
- package/out/test/Wallet/get/getHeaderForHeight.test.d.ts +2 -0
- package/out/test/Wallet/get/getHeaderForHeight.test.d.ts.map +1 -0
- package/out/test/Wallet/get/getHeaderForHeight.test.js +74 -0
- package/out/test/Wallet/get/getHeaderForHeight.test.js.map +1 -0
- package/out/test/Wallet/get/getHeight.test.d.ts +2 -0
- package/out/test/Wallet/get/getHeight.test.d.ts.map +1 -0
- package/out/test/Wallet/get/getHeight.test.js +48 -0
- package/out/test/Wallet/get/getHeight.test.js.map +1 -0
- package/out/test/Wallet/get/getKnownTxids.test.d.ts +2 -0
- package/out/test/Wallet/get/getKnownTxids.test.d.ts.map +1 -0
- package/out/test/Wallet/get/getKnownTxids.test.js +73 -0
- package/out/test/Wallet/get/getKnownTxids.test.js.map +1 -0
- package/out/test/Wallet/get/getNetwork.test.d.ts +2 -0
- package/out/test/Wallet/get/getNetwork.test.d.ts.map +1 -0
- package/out/test/Wallet/get/getNetwork.test.js +26 -0
- package/out/test/Wallet/get/getNetwork.test.js.map +1 -0
- package/out/test/Wallet/get/getVersion.test.d.ts +2 -0
- package/out/test/Wallet/get/getVersion.test.d.ts.map +1 -0
- package/out/test/Wallet/get/getVersion.test.js +25 -0
- package/out/test/Wallet/get/getVersion.test.js.map +1 -0
- package/out/test/Wallet/list/listActions.test.d.ts +2 -0
- package/out/test/Wallet/list/listActions.test.d.ts.map +1 -0
- package/out/test/Wallet/list/listActions.test.js +271 -0
- package/out/test/Wallet/list/listActions.test.js.map +1 -0
- package/out/test/Wallet/list/listActions2.test.d.ts +2 -0
- package/out/test/Wallet/list/listActions2.test.d.ts.map +1 -0
- package/out/test/Wallet/list/listActions2.test.js +1141 -0
- package/out/test/Wallet/list/listActions2.test.js.map +1 -0
- package/out/test/Wallet/list/listCertificates.test.d.ts +2 -0
- package/out/test/Wallet/list/listCertificates.test.d.ts.map +1 -0
- package/out/test/Wallet/list/listCertificates.test.js +111 -0
- package/out/test/Wallet/list/listCertificates.test.js.map +1 -0
- package/out/test/Wallet/list/listOutputs.test.d.ts +2 -0
- package/out/test/Wallet/list/listOutputs.test.d.ts.map +1 -0
- package/out/test/Wallet/list/listOutputs.test.js +424 -0
- package/out/test/Wallet/list/listOutputs.test.js.map +1 -0
- package/out/test/Wallet/live/walletLive.man.test.d.ts +26 -0
- package/out/test/Wallet/live/walletLive.man.test.d.ts.map +1 -0
- package/out/test/Wallet/live/walletLive.man.test.js +417 -0
- package/out/test/Wallet/live/walletLive.man.test.js.map +1 -0
- package/out/test/Wallet/local/localWallet.man.test.d.ts +2 -0
- package/out/test/Wallet/local/localWallet.man.test.d.ts.map +1 -0
- package/out/test/Wallet/local/localWallet.man.test.js +83 -0
- package/out/test/Wallet/local/localWallet.man.test.js.map +1 -0
- package/out/test/Wallet/local/localWallet2.man.test.d.ts +2 -0
- package/out/test/Wallet/local/localWallet2.man.test.d.ts.map +1 -0
- package/out/test/Wallet/local/localWallet2.man.test.js +284 -0
- package/out/test/Wallet/local/localWallet2.man.test.js.map +1 -0
- package/out/test/Wallet/signAction/mountaintop.man.test.d.ts +2 -0
- package/out/test/Wallet/signAction/mountaintop.man.test.d.ts.map +1 -0
- package/out/test/Wallet/signAction/mountaintop.man.test.js +109 -0
- package/out/test/Wallet/signAction/mountaintop.man.test.js.map +1 -0
- package/out/test/Wallet/specOps/specOps.man.test.d.ts +2 -0
- package/out/test/Wallet/specOps/specOps.man.test.d.ts.map +1 -0
- package/out/test/Wallet/specOps/specOps.man.test.js +163 -0
- package/out/test/Wallet/specOps/specOps.man.test.js.map +1 -0
- package/out/test/Wallet/support/janitor.man.test.d.ts +2 -0
- package/out/test/Wallet/support/janitor.man.test.d.ts.map +1 -0
- package/out/test/Wallet/support/janitor.man.test.js +38 -0
- package/out/test/Wallet/support/janitor.man.test.js.map +1 -0
- package/out/test/Wallet/support/operations.man.test.d.ts +2 -0
- package/out/test/Wallet/support/operations.man.test.d.ts.map +1 -0
- package/out/test/Wallet/support/operations.man.test.js +370 -0
- package/out/test/Wallet/support/operations.man.test.js.map +1 -0
- package/out/test/Wallet/support/reqErrorReview.2025.05.06.man.test.d.ts +2 -0
- package/out/test/Wallet/support/reqErrorReview.2025.05.06.man.test.d.ts.map +1 -0
- package/out/test/Wallet/support/reqErrorReview.2025.05.06.man.test.js +385 -0
- package/out/test/Wallet/support/reqErrorReview.2025.05.06.man.test.js.map +1 -0
- package/out/test/Wallet/sync/Wallet.sync.test.d.ts +2 -0
- package/out/test/Wallet/sync/Wallet.sync.test.d.ts.map +1 -0
- package/out/test/Wallet/sync/Wallet.sync.test.js +155 -0
- package/out/test/Wallet/sync/Wallet.sync.test.js.map +1 -0
- package/out/test/Wallet/sync/Wallet.updateWalletLegacyTestData.man.test.d.ts +2 -0
- package/out/test/Wallet/sync/Wallet.updateWalletLegacyTestData.man.test.d.ts.map +1 -0
- package/out/test/Wallet/sync/Wallet.updateWalletLegacyTestData.man.test.js +206 -0
- package/out/test/Wallet/sync/Wallet.updateWalletLegacyTestData.man.test.js.map +1 -0
- package/out/test/Wallet/sync/setActive.test.d.ts +2 -0
- package/out/test/Wallet/sync/setActive.test.d.ts.map +1 -0
- package/out/test/Wallet/sync/setActive.test.js +161 -0
- package/out/test/Wallet/sync/setActive.test.js.map +1 -0
- package/out/test/WalletClient/LocalKVStore.man.test.d.ts +2 -0
- package/out/test/WalletClient/LocalKVStore.man.test.d.ts.map +1 -0
- package/out/test/WalletClient/LocalKVStore.man.test.js +99 -0
- package/out/test/WalletClient/LocalKVStore.man.test.js.map +1 -0
- package/out/test/WalletClient/WERR.man.test.d.ts +2 -0
- package/out/test/WalletClient/WERR.man.test.d.ts.map +1 -0
- package/out/test/WalletClient/WERR.man.test.js +34 -0
- package/out/test/WalletClient/WERR.man.test.js.map +1 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.d.ts +2 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.d.ts.map +1 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.js +98 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.js.map +1 -0
- package/out/test/checkDB.d.ts +4 -0
- package/out/test/checkDB.d.ts.map +1 -0
- package/out/test/checkDB.js +55 -0
- package/out/test/checkDB.js.map +1 -0
- package/out/test/examples/backup.man.test.d.ts +14 -0
- package/out/test/examples/backup.man.test.d.ts.map +1 -0
- package/out/test/examples/backup.man.test.js +59 -0
- package/out/test/examples/backup.man.test.js.map +1 -0
- package/out/test/examples/pushdrop.test.d.ts +56 -0
- package/out/test/examples/pushdrop.test.d.ts.map +1 -0
- package/out/test/examples/pushdrop.test.js +232 -0
- package/out/test/examples/pushdrop.test.js.map +1 -0
- package/out/test/monitor/Monitor.test.d.ts +2 -0
- package/out/test/monitor/Monitor.test.d.ts.map +1 -0
- package/out/test/monitor/Monitor.test.js +560 -0
- package/out/test/monitor/Monitor.test.js.map +1 -0
- package/out/test/services/Services.test.d.ts +2 -0
- package/out/test/services/Services.test.d.ts.map +1 -0
- package/out/test/services/Services.test.js +246 -0
- package/out/test/services/Services.test.js.map +1 -0
- package/out/test/storage/KnexMigrations.test.d.ts +2 -0
- package/out/test/storage/KnexMigrations.test.d.ts.map +1 -0
- package/out/test/storage/KnexMigrations.test.js +81 -0
- package/out/test/storage/KnexMigrations.test.js.map +1 -0
- package/out/test/storage/StorageMySQLDojoReader.man.test.d.ts +2 -0
- package/out/test/storage/StorageMySQLDojoReader.man.test.d.ts.map +1 -0
- package/out/test/storage/StorageMySQLDojoReader.man.test.js +86 -0
- package/out/test/storage/StorageMySQLDojoReader.man.test.js.map +1 -0
- package/out/test/storage/count.test.d.ts +2 -0
- package/out/test/storage/count.test.d.ts.map +1 -0
- package/out/test/storage/count.test.js +142 -0
- package/out/test/storage/count.test.js.map +1 -0
- package/out/test/storage/find.test.d.ts +2 -0
- package/out/test/storage/find.test.d.ts.map +1 -0
- package/out/test/storage/find.test.js +144 -0
- package/out/test/storage/find.test.js.map +1 -0
- package/out/test/storage/findLegacy.test.d.ts +2 -0
- package/out/test/storage/findLegacy.test.d.ts.map +1 -0
- package/out/test/storage/findLegacy.test.js +52 -0
- package/out/test/storage/findLegacy.test.js.map +1 -0
- package/out/test/storage/idb/allocateChange.test.d.ts +2 -0
- package/out/test/storage/idb/allocateChange.test.d.ts.map +1 -0
- package/out/test/storage/idb/allocateChange.test.js +110 -0
- package/out/test/storage/idb/allocateChange.test.js.map +1 -0
- package/out/test/storage/idb/count.test.d.ts +2 -0
- package/out/test/storage/idb/count.test.d.ts.map +1 -0
- package/out/test/storage/idb/count.test.js +129 -0
- package/out/test/storage/idb/count.test.js.map +1 -0
- package/out/test/storage/idb/find.test.d.ts +2 -0
- package/out/test/storage/idb/find.test.d.ts.map +1 -0
- package/out/test/storage/idb/find.test.js +131 -0
- package/out/test/storage/idb/find.test.js.map +1 -0
- package/out/test/storage/idb/idbSpeed.test.d.ts +2 -0
- package/out/test/storage/idb/idbSpeed.test.d.ts.map +1 -0
- package/out/test/storage/idb/idbSpeed.test.js +30 -0
- package/out/test/storage/idb/idbSpeed.test.js.map +1 -0
- package/out/test/storage/idb/insert.test.d.ts +2 -0
- package/out/test/storage/idb/insert.test.d.ts.map +1 -0
- package/out/test/storage/idb/insert.test.js +242 -0
- package/out/test/storage/idb/insert.test.js.map +1 -0
- package/out/test/storage/idb/transactionAbort.test.d.ts +2 -0
- package/out/test/storage/idb/transactionAbort.test.d.ts.map +1 -0
- package/out/test/storage/idb/transactionAbort.test.js +97 -0
- package/out/test/storage/idb/transactionAbort.test.js.map +1 -0
- package/out/test/storage/idb/update.test.d.ts +2 -0
- package/out/test/storage/idb/update.test.d.ts.map +1 -0
- package/out/test/storage/idb/update.test.js +902 -0
- package/out/test/storage/idb/update.test.js.map +1 -0
- package/out/test/storage/insert.test.d.ts +2 -0
- package/out/test/storage/insert.test.d.ts.map +1 -0
- package/out/test/storage/insert.test.js +256 -0
- package/out/test/storage/insert.test.js.map +1 -0
- package/out/test/storage/update.test.d.ts +2 -0
- package/out/test/storage/update.test.d.ts.map +1 -0
- package/out/test/storage/update.test.js +919 -0
- package/out/test/storage/update.test.js.map +1 -0
- package/out/test/storage/update2.test.d.ts +2 -0
- package/out/test/storage/update2.test.d.ts.map +1 -0
- package/out/test/storage/update2.test.js +767 -0
- package/out/test/storage/update2.test.js.map +1 -0
- package/out/test/utils/TestUtilsWalletStorage.d.ts +523 -0
- package/out/test/utils/TestUtilsWalletStorage.d.ts.map +1 -0
- package/out/test/utils/TestUtilsWalletStorage.js +1958 -0
- package/out/test/utils/TestUtilsWalletStorage.js.map +1 -0
- package/out/test/utils/localWalletMethods.d.ts +33 -0
- package/out/test/utils/localWalletMethods.d.ts.map +1 -0
- package/out/test/utils/localWalletMethods.js +304 -0
- package/out/test/utils/localWalletMethods.js.map +1 -0
- package/out/tsconfig.all.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../.bun/install/global/node_modules/typescript/lib/lib.es5.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2016.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.dom.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.scripthost.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.core.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.object.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.string.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../.bun/install/global/node_modules/typescript/lib/lib.es2018.full.d.ts","../src/sdk/privilegedkeymanager.ts","../src/cwistylewalletmanager.ts","../src/sdk/walleterror.ts","../src/sdk/werr_errors.ts","../src/sdk/walleterrorfromjson.ts","../src/sdk/types.ts","../src/sdk/walletsigner.interfaces.ts","../src/sdk/certopswallet.ts","../src/storage/schema/tables/tableoutput.ts","../src/utility/utilityhelpers.nobuffer.ts","../src/services/chaintracker/chaintracks/api/blockheaderapi.ts","../src/services/chaintracker/chaintracks/api/chaintracksclientapi.ts","../src/services/chaintracker/chaintracks/chaintracksserviceclient.ts","../src/sdk/walletservices.interfaces.ts","../src/sdk/index.ts","../src/utility/stamplog.ts","../src/utility/utilityhelpers.ts","../src/utility/scripttemplatebrc29.ts","../src/utility/parsetxscriptoffsets.ts","../src/utility/tscprooftomerklepath.ts","../src/utility/index.client.ts","../src/storage/schema/tables/tableproventx.ts","../src/storage/schema/tables/tableproventxreq.ts","../src/storage/schema/entities/entityproventxreq.ts","../src/storage/schema/entities/entityproventx.ts","../src/storage/methods/getbeeffortransaction.ts","../src/storage/methods/attempttopostreqstonetwork.ts","../src/utility/aggregateresults.ts","../src/storage/schema/tables/tabletransaction.ts","../src/storage/schema/tables/tablecommission.ts","../src/storage/methods/processaction.ts","../src/storage/methods/listcertificates.ts","../src/storage/methods/utils.ts","../src/storage/methods/generatechange.ts","../src/storage/schema/tables/tableoutputbasket.ts","../src/storage/schema/tables/tableoutputtag.ts","../src/storage/methods/offsetkey.ts","../src/storage/methods/createaction.ts","../src/services/chaintracker/chaintracks/util/dirtyhashes.ts","../src/services/chaintracker/chaintracks/api/chaintracksfsapi.ts","../src/utility/readeruint8array.ts","../src/services/chaintracker/chaintracks/util/heightrange.ts","../src/services/chaintracker/chaintracks/api/chaintracksfetchapi.ts","../src/services/chaintracker/chaintracks/util/validbulkheaderfilesbyfilehash.ts","../src/services/chaintracker/chaintracks/util/chaintracksfetch.ts","../src/services/chaintracker/chaintracks/util/singlewritermultireaderlock.ts","../src/services/chaintracker/chaintracks/util/bulkfiledatamanager.ts","../src/services/chaintracker/chaintracks/api/chaintracksstorageapi.ts","../src/services/chaintracker/chaintracks/util/bulkfilesreader.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragebase.ts","../src/services/chaintracker/chaintracks/util/bulkheaderfile.ts","../src/services/chaintracker/chaintracks/util/blockheaderutilities.ts","../src/storage/methods/internalizeaction.ts","../src/storage/schema/tables/tablecertificate.ts","../src/storage/schema/tables/tablecertificatefield.ts","../src/storage/schema/tables/tablemonitorevent.ts","../src/storage/schema/tables/tableoutputtagmap.ts","../src/storage/schema/tables/tablesyncstate.ts","../src/storage/schema/tables/tabletxlabel.ts","../src/storage/schema/tables/tabletxlabelmap.ts","../src/storage/schema/tables/tableuser.ts","../src/storage/methods/getsyncchunk.ts","../src/storage/storagereader.ts","../src/storage/storagereaderwriter.ts","../src/storage/storageprovider.ts","../src/storage/schema/entities/entitybase.ts","../src/storage/schema/entities/entitycertificate.ts","../src/storage/schema/entities/entitycertificatefield.ts","../src/storage/schema/entities/entitycommission.ts","../src/storage/schema/entities/entityoutput.ts","../src/storage/schema/entities/entityoutputbasket.ts","../src/storage/schema/entities/entityoutputtag.ts","../src/storage/schema/entities/entityoutputtagmap.ts","../src/storage/schema/entities/entitytransaction.ts","../src/storage/schema/entities/entitytxlabel.ts","../src/storage/schema/entities/entitytxlabelmap.ts","../src/storage/schema/entities/entityuser.ts","../src/storage/schema/entities/mergeentity.ts","../src/storage/schema/entities/entitysyncstate.ts","../src/storage/schema/entities/index.ts","../src/walletlogger.ts","../src/storage/remoting/storageclient.ts","../src/storage/walletstoragemanager.ts","../src/storage/schema/storageidbschema.ts","../src/storage/methods/listactionsspecop.ts","../src/storage/methods/listactionsidb.ts","../src/storage/methods/listoutputsspecop.ts","../src/storage/methods/listoutputsidb.ts","../src/storage/methods/reviewstatusidb.ts","../src/storage/methods/purgedataidb.ts","../src/storage/storageidb.ts","../src/storage/storagesyncreader.ts","../src/storage/index.client.ts","../src/services/chaintracker/chaintracks/api/bulkingestorapi.ts","../src/services/chaintracker/chaintracks/api/liveingestorapi.ts","../src/services/chaintracker/chaintracks/api/chaintracksapi.ts","../src/services/chaintracker/chaintracks/api/bulkstorageapi.ts","../src/services/chaintracker/chaintracks/chaintracks.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorbase.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorbase.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorcdn.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorcdnbabbage.ts","../src/services/providers/sdkwhatsonchain.ts","../src/services/servicecollection.ts","../src/services/createdefaultwalletservicesoptions.ts","../src/services/providers/exchangerates.ts","../src/services/providers/arc.ts","../src/services/providers/bitails.ts","../src/services/providers/getbeeffortxid.ts","../src/services/chaintracker/chaintrackschaintracker.ts","../src/services/services.ts","../src/services/providers/whatsonchain.ts","../src/services/chaintracker/chaintracks/ingest/whatsonchainingestorws.ts","../src/services/chaintracker/chaintracks/ingest/whatsonchainservices.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorwhatsonchaincdn.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorwhatsonchainpoll.ts","../src/services/chaintracker/chaintracks/storage/bulkstoragebase.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragenodb.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstorageidb.ts","../src/services/chaintracker/chaintracks/createdefaultnodbchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createnodbchaintracks.ts","../src/services/chaintracker/chaintracks/index.mobile.ts","../src/services/chaintracker/chaintracks/createdefaultidbchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createidbchaintracks.ts","../src/services/chaintracker/chaintracks/index.client.ts","../src/services/chaintracker/bhserviceclient.ts","../src/services/chaintracker/index.client.ts","../src/monitor/tasks/walletmonitortask.ts","../src/monitor/tasks/taskpurge.ts","../src/monitor/tasks/taskreviewstatus.ts","../src/monitor/tasks/tasksyncwhenidle.ts","../src/monitor/tasks/taskfailabandoned.ts","../src/monitor/tasks/taskcheckforproofs.ts","../src/monitor/tasks/taskclock.ts","../src/monitor/tasks/tasknewheader.ts","../src/monitor/tasks/taskmonitorcallhistory.ts","../src/monitor/tasks/taskreorg.ts","../src/monitor/tasks/tasksendwaiting.ts","../src/monitor/tasks/taskchecknosends.ts","../src/monitor/tasks/taskunfail.ts","../src/monitor/monitor.ts","../src/setupclient.ts","../src/signer/walletsigner.ts","../src/simplewalletmanager.ts","../src/wab-client/auth-method-interactors/authmethodinteractor.ts","../src/wab-client/auth-method-interactors/personaidinteractor.ts","../src/wab-client/auth-method-interactors/twiliophoneinteractor.ts","../src/wab-client/auth-method-interactors/devconsoleinteractor.ts","../src/wab-client/wabclient.ts","../src/walletauthenticationmanager.ts","../src/walletpermissionsmanager.ts","../src/index.client.ts","../src/storage/schema/tables/tablesettings.ts","../src/storage/schema/tables/index.ts","../src/sdk/walletstorage.interfaces.ts","../src/signer/methods/acquiredirectcertificate.ts","../src/signer/methods/provecertificate.ts","../src/signer/methods/buildsignabletransaction.ts","../src/signer/methods/completesignedtransaction.ts","../src/signer/methods/createaction.ts","../src/signer/methods/signaction.ts","../src/signer/methods/internalizeaction.ts","../src/walletsettingsmanager.ts","../src/utility/identityutils.ts","../src/wallet.ts","../src/setupwallet.ts","../src/storage/schema/knexmigrations.ts","../src/storage/methods/purgedata.ts","../src/storage/methods/listactionsknex.ts","../src/storage/methods/listoutputsknex.ts","../src/storage/methods/reviewstatus.ts","../src/storage/storageknex.ts","../src/setup.ts","../src/utility/utilityhelpers.buffer.ts","../src/utility/index.all.ts","../src/storage/remoting/storageserver.ts","../src/storage/sync/storagemysqldojoreader.ts","../src/storage/sync/index.ts","../src/storage/index.all.ts","../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","../src/services/chaintracker/chaintracks/storage/chaintracksknexmigrations.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragememory.ts","../src/services/chaintracker/chaintracks/createdefaultknexchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createknexchaintracks.ts","../src/services/chaintracker/chaintracks/chaintracksservice.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorwhatsonchainws.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorwhatsonchainws.ts","../src/services/chaintracker/chaintracks/index.all.ts","../src/services/chaintracker/index.all.ts","../src/monitor/monitordaemon.ts","../src/index.all.ts","../src/storage/remoting/storagemobile.ts","../src/storage/index.mobile.ts","../src/index.mobile.ts","../src/index.ts","../src/__tests/cwistylewalletmanager.test.ts","../src/__tests/walletpermissionsmanager.fixtures.ts","../src/__tests/walletpermissionsmanager.callbacks.test.ts","../src/__tests/walletpermissionsmanager.checks.test.ts","../src/__tests/walletpermissionsmanager.encryption.test.ts","../src/__tests/walletpermissionsmanager.flows.test.ts","../src/__tests/walletpermissionsmanager.initialization.test.ts","../src/__tests/walletpermissionsmanager.pmodules.test.ts","../src/__tests/walletpermissionsmanager.proxying.test.ts","../src/__tests/walletpermissionsmanager.tokens.test.ts","../test/utils/testutilswalletstorage.ts","../src/monitor/__test/monitordaemon.man.test.ts","../src/sdk/__test/certificatelifecycle.test.ts","../src/sdk/__test/privilegedkeymanager.test.ts","../src/sdk/__test/walleterror.test.ts","../src/sdk/__test/validationhelpers.test.ts","../src/services/index.ts","../src/services/__tests/arc.man.test.ts","../src/services/__tests/arc.timeout.man.test.ts","../src/services/__tests/arcgorillapool.man.test.ts","../src/services/__tests/arcservices.test.ts","../src/services/__tests/bitrails.test.ts","../src/services/__tests/getmerklepath.test.ts","../src/services/__tests/getrawtx.test.ts","../src/services/__tests/postbeef.test.ts","../src/services/__tests/verifybeef.test.ts","../src/services/chaintracker/index.mobile.ts","../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorteranodep2p.ts","../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","../src/services/chaintracker/chaintracks/ingest/__tests/liveingestorwhatsonchainpoll.test.ts","../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","../src/services/chaintracker/chaintracks/util/bulkfiledatareader.ts","../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","../src/services/providers/__tests/whatsonchain.test.ts","../src/services/providers/__tests/exchangerates.test.ts","../src/storage/__test/storageidb.test.ts","../src/storage/__test/walletstoragemanager.test.ts","../src/utility/format.ts","../src/storage/__test/adminstats.man.test.ts","../src/storage/__test/getbeeffortransaction.test.ts","../src/storage/methods/utils.buffer.ts","../src/storage/methods/__test/offsetkey.test.ts","../src/storage/methods/__test/generatechange/randomvalsused1.ts","../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","../src/storage/remoting/__test/storageclient.test.ts","../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","../src/storage/schema/entities/__tests/certificatetests.test.ts","../src/storage/schema/entities/__tests/commissiontests.test.ts","../src/storage/schema/entities/__tests/outputbaskettests.test.ts","../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","../src/storage/schema/entities/__tests/outputtagtests.test.ts","../src/storage/schema/entities/__tests/outputtests.test.ts","../src/storage/schema/entities/__tests/proventxreqtests.test.ts","../src/storage/schema/entities/__tests/proventxtests.test.ts","../src/storage/schema/entities/__tests/syncstatetests.test.ts","../src/storage/schema/entities/__tests/transactiontests.test.ts","../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","../src/storage/schema/entities/__tests/txlabeltests.test.ts","../src/storage/schema/entities/__tests/stamplogtests.test.ts","../src/storage/schema/entities/__tests/userstests.test.ts","../src/utility/__tests/utilityhelpers.nobuffer.test.ts","../src/wab-client/__tests/wabclient.man.test.ts","../test/checkdb.ts","../test/wallet/storageclient/storageclient.man.test.ts","../test/wallet/action/abortaction.test.ts","../test/wallet/action/createaction.test.ts","../test/wallet/action/createaction2.test.ts","../test/wallet/action/createactiontogeneratebeefs.man.test.ts","../test/wallet/action/internalizeaction.a.test.ts","../test/wallet/action/internalizeaction.test.ts","../test/wallet/action/relinquishoutput.test.ts","../test/wallet/certificate/acquirecertificate.test.ts","../test/wallet/certificate/listcertificates.test.ts","../test/wallet/construct/wallet.constructor.test.ts","../test/wallet/get/getheaderforheight.test.ts","../test/wallet/get/getheight.test.ts","../test/wallet/get/getknowntxids.test.ts","../test/wallet/get/getnetwork.test.ts","../test/wallet/get/getversion.test.ts","../test/wallet/list/listactions.test.ts","../test/wallet/list/listactions2.test.ts","../test/wallet/list/listcertificates.test.ts","../test/wallet/list/listoutputs.test.ts","../test/wallet/live/walletlive.man.test.ts","../test/utils/localwalletmethods.ts","../test/wallet/local/localwallet.man.test.ts","../test/wallet/local/localwallet2.man.test.ts","../test/wallet/signaction/mountaintop.man.test.ts","../test/wallet/specops/specops.man.test.ts","../test/wallet/support/janitor.man.test.ts","../test/wallet/support/operations.man.test.ts","../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","../test/wallet/sync/wallet.sync.test.ts","../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","../test/wallet/sync/setactive.test.ts","../test/walletclient/localkvstore.man.test.ts","../test/walletclient/werr.man.test.ts","../test/bsv-ts-sdk/localkvstore.test.ts","../test/examples/backup.man.test.ts","../test/examples/pushdrop.test.ts","../test/monitor/monitor.test.ts","../test/services/services.test.ts","../test/storage/knexmigrations.test.ts","../test/storage/storagemysqldojoreader.man.test.ts","../test/storage/count.test.ts","../test/storage/find.test.ts","../test/storage/findlegacy.test.ts","../test/storage/insert.test.ts","../test/storage/update.test.ts","../test/storage/update2.test.ts","../test/storage/idb/allocatechange.test.ts","../test/storage/idb/count.test.ts","../test/storage/idb/find.test.ts","../test/storage/idb/idbspeed.test.ts","../test/storage/idb/insert.test.ts","../test/storage/idb/transactionabort.test.ts","../test/storage/idb/update.test.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},"32b8443be144970b813b9dd72dcdba2059fbdfdae4d3a50c4d8a158ed6057bbe","cbb2a227d105dd7c82923d4a3fd2870afe60851ec95d1835ddb8f605ee2af72f","a0a18ef94dbd252991570220c1b2b2fe9700ff5f1b62ee3467aaf49e0cecf9ad","73cb03a664c792f355dec7fc55694ac7579e3b1f35759854f29d35ead1a687e3","faf0fbd9c639721e2149d176e79bf8513fa011f000da281fe1de72f7132fcc7c","e7914bec964066fefa186ddcb18ef800e66568872191f468c0511a566904da54","a733224100cb3dbe590734e30dc4a8526711486f2928659eda4b3860c83b79ce","f430ed2bdf8aef82d74e659b1e85e80c8e2751b575afa43631f4ac8a60a4aeb3","f0c2b9ab7329e088b50dd52dea5d32f3c8e5a8fd8a8c702d2e4f3a0d18c3b799","5fdd14fb83f3409c6799c034ab70b25f894272a6a1d92ac31ec63a2ceb8ad9e9","d43ddaa6a90b5e639f22f415834843fa4e9d76b42a9d2210e5ca5f0ba69e108c","da21ebc7d5f4445b9b1cc64f2c651e67e89717cb564eceb5a2ba24146505a4c2","e9fc22173c0da8482b28e76e297ece5ae5318188c82700e171fb62e497ba981a","e938acd4533773e1955400701e7c36437e793fec091b63967cf7e2e075c0e6ac","cefadde0a9965ad213492ab563b751ca2cbd3b4b76f7fb651e0b27e5bfec0e99","dc875e0886ba4a6375322d302b1b0a8e00c4df863af82b80414cd5483956e373","e242b83ae32b1962eedb0c314d8112a3c753991b791f2630d24811839a3cefff","aff3ba79aab8045e4b4dd3584810261621abbd4f0e0529db357fc89027e70db2","a2a6e511b5e2e234b26316e02d1c944bc01d61abaa2eb7874f41c2fcd396707f","047de194a1da4c44573c5cdf492067d7deae1d174905fcc24d0336d578d13169","2c18f67e261080e21ec15d88d548678273c1dfce3966a00bfa2e84c0075a4340","a3a405cc89d52cb205acdc9e49fd74391a69acd3df946c1920ea51715de78743","7c1cb219fe47d51236fb87eea8f2ebdbc60f25e1e5e239d9449e3f8b3ed7a194","1eb88ddfeb73ade400318446b2047ca942bcc5924b6304364bcfe04ef9122898","d599ea0b4a11aef166e8d3eedbe851e7b0a4f71b6d8922c8298bfb37c43d0ae5","c108777a954774e91a7e63565af5ab0c524eb183f8ac74a16203c68094d6b369","ea67d2c63b5d7554dad50ae93a7085eed0e79a8d16fb4255f85db58d5e0c4c9d","69abd8e81e95f220d43b989b392440fdf310174828ed6eb18002492ae795e3de","8e482a5da2f1d11e135fd6a741033f91d9d4550f13f0f6b0716cbd2ab02ef1e5","7dc5c54a43e3655f1a886c2bc5dcb6ff4cfcb659a671872e3bfa1eb2454588f9","96e2a238c5bcca64f346031bd8fa6a162c71b71d6fd097ef47dcc5bdb1f9387b","9a0014983f665d922b526242dcd7d5eef82d6b10162b7af21d46fde00ff48c14","dd6b08a3db31d842aa22a15eb3d1e590e8e6483e25b02a262a2497c15eaeb052","aab961f5fd3d552138450bdf557b39140158e02ed35acaac9058a188f9b78e5e","6bcdb1035268fe3ad09faca7c4e27d3668e0eb6340ea9a4d7c4373829fa42a4c","8176ba4bcd3e2d3991670cd18710cade7c3e48f09d68bdb8d53d0980b612b069","0029d4cb67f1ff797f2d2c6b75b5855ffa7243787e6dda5ac9136ccb176a36e3","8e567bd8a580be7d207227b1e50577dfeb53a0510d8e4b884e90d12a070653f8","5e3ee8e366bd8e233ff73c4dff12674468cdd6f40449a24dee44ff057bcfd873","0f1a5c9b3e18907576895ba8e1cf303b723c59452f90029f9da08ba59557e77f","cebe2527721ee643231c45be3a7c8b7ee94619f98e75558e9a1d50fb5445a04e","b5d0a1580f0df40f8001e5b5afd27e7f0ffca85749f8335b0459a96acc0b6411","4b714a9a2d3b100bfdcd00bb83fde1412f3288af6e40ef6d538b2a265b686b85","3d15886236fbc23596e57f7d12adc184063a7843fdd65ac69174227d1573aba2","25699bffa76a7412a5fbcf24d0af6d51a1d3c3529f2c0aadf1d1c2c302c36e4f","0279c2d3f10a9b037534a4c86cde12f960bfc4c48782d88fd7e3fd7ab84db75c","605adaf90afe4a885fc09c8531c14bf6767c3fd762aa9be6bc93a9dc7aeafa82","65b232ffe0ed8528426a89cb227a34f1eebc1dd121ae84fda2df14ae8b64e12a","24c7b51211d5b20b627f99fe069924d10059aeb40463711df7c224a73c8e44eb","b6e91d7a9ce3ecdbd7f05359f79ec8391d68b294db8049551242e5f47bb74061","61fc33e545c6999277e7134997a58840c829a39177c164650439e126dda45870","da1872f85d9c360e9fb90a52bad2d5718c58fbafeff0db3bb74837dcba88e9a9","9005906fcab6498389baa9a509da8d30e67c1d1bb7e5b3f0c09a1ba2e28ff556","ade2bcb893c7101c02172b1e7613b0c8bd37c3afe28b738f9fe22509a130d32c","b6c9a7628b3e8850d25d66bf493f146dcf1a54d97ed1dd070c68c3b929036a9a","8393a3c2472b2e1b9dd0c897762be69c3ddd47c6206939822189889569022842","ea972b0062d03be3622aa090da5517d76cc9da49a53aee634ab64c7f5578a47e","1642e719b8f78d770def5783d57d589004247f6e049c268677850b367f41510b","0320d636755abe63830e5851a85b7f47fd3c4009c2911a21e8e6b820573252d7","734b6e46829046b51237ba388797a35e053a3ddc402453bca89575a38e4f9ac1","b3fd58f232b58dcfc73c344784b9b587feb8870b3b725971a4800fd15c9583a7","a48f8c30438c9bb9550a3167f4b03d2811b40e53dc253da3548fa5959e30fc18","87435540f699dcf4acfbebae18541dd27f27215c4c4c60a392db17d4a10d4b06","77162f3eba26bae8fa4c3ac75982dca48c87b1154521180c771e451e7644b55b","fdfe6ee49fecbfd6eb29eb4b023c4e3bc63e88c56b6a3fdce11d681bf180a798","ecae5b8c46644f37d97373b8b11df4c09ad7af4eee60954425c63f1c9b6b8d6a","730ce58a9497abe1dff8cadfb39666e6a7c848a91c26988d510fb7fdb8b593ec","8b92d82b3bbca96a7165ab43f587f344c158211f2c64dc4b3299bfc6d09d183e","3a61dd08241baf2fc2064ecc8423801e574059fdcdd63ba1370d4d6356201029","7e5efaeee9c1bf54d850b36c68f712d011d783f83e63efd1b97525db90503b1b","0c5e2acbcc1a4f8f4afb53f0e0d3cc1013b95167e4df89f95c46ef12ecddaf11","f01a661155b602b49b119b02a0ac9e0056fa6efaf20a6dd7ee068dcedcd1d9ae","33ce38f2f4a77a8188895a831619a07cec9b69f27a01082130c3a8c3315c87b2","3ce6d013b36b72e30d630f85d9c190e674b82fa04dfeec6e005eae2d8c96a7a1","f6b52b05334fcc6def7f40e2b94fa1c6034d61a0399eca68ba2fc3f97774d4f2","49c48678011909d1d17f6447a416b89a99140d08fdd7d6cbafcf589e9e2ea777","45ace1ec04bdaacfa542e0f29b6157ae1c6609734a4ac665082ffed07930635b","c484cb506b8cae3b352971b84e500f2f696f53cb735014bbd32fb5a60c63d63c","08151186ea9ccd248dc9392e684dccef5131e3541cbc09c82391763d5e911ff6","a16eaa9f8e57e1d81a9ee2954474634cd5aa3ba04fc2d4b4d5f5bcc2b0e1eae8","a4aae089dd2d9313b4b0d5b737a8b113f0b5e7f6803c01d629068f67106e49ab","5d8d6e9c699f970ccd70229050bc2e94a14acd818ebeed3c86c4da6902784478","338190629884bfedde3824a496242d41ab194d0729aa5fb136f5f3c7d42ec251","80f0b17cae9bc2156a70e5b3d5b6c6c170b829663ec36098cbfb38b28c313f7a","349525a7d8bf34108f80e7dc66139b8cce06cd30dfc7c63c8b6e5631865e0789","5f42935d8a575bf5ce956baba0237d462d577f65b869d8b9328c21c2aece260e","23381b0e5f9a6ea20e52f190a9c7fc1e7895f463f389ef4062ec371080e6e80a","2b47cc2bd413cb660d40ad858a43b6d2c6b1c57aa61f546d1c7b096494e1ee9c","5988369166e7f285f6021ecb478c1de8e361747990747e05ae6ca06528caeb1a","d0b7e21d4d4bf09da601067c424016e9fc9edf4f7c8368f8affc7aade0e70509","281aca4d2ec19f61081d0e743212d23b31cf5aef78e36879f4dc53d7a9f08453","9ecd050e17d85c6a785e21bdf1a175f0d6f0ddc4c04809ea2dbe433f48887e63","e91544a7106bd1c6cd948ee22bd878af0611b8f5f80afde988db45bcf267c87a","334921c4f5b477b0f4239fcb0eb718e204203ae86823e077af77c9edff67d904","4dda09f95bd199700725b8e9e29369b865048bf8773abf81cb9943426b2f663b","e67f3bae761a06ba1da223d8d6d1789336f1ffb15a9cef7cef5d3da7cdcc08f9","41a720f9a8a3c644386f4c12b4fe35fc959d1e7132649c0fb6dfb617e614f9e8","1f0b5ee56ceac38e31dd003bc14548182743855f0c83bd84b375a1667ee3e6bd","e73b62e0f2d27fcc182efd2981aad281d755f224cd413316c04510988b56f618","0df5fcd40f19ae8d741bf2a264a6dd63421530d89a958ef63ccda81f250a6e53","f2ad2e9e91ebd0b9eb66c501a4c0fe0f38c1b3c6afdd163fb5ed8f2195130018","60860ba72229a5a679cfd941975b2c1d25cf3fa4efa428cb502bd05a731c7fdc","be3685e63e9874bbc80392e05b6d13c0c137cc891e3757ead4aec17b84bd32b0","8e5e7ca97562a082174b7f6268b7faadb798b5e831ea244863ff89cfb922de37","e3a270999adf6c543f5d90d88d286df6e314f2d2838e8969231a61d57c89734c","2212382b187d1678551760e73db22da8228080a64da3b7b2e1e165b967e8baf0","21a8371244e7d2704793056f1fde90c2d160776a54d651b83a02832cfcbb087e","1d2b5d77437db567309d7cb1c0eecbc4b3e318055aa8d1266883fd7902538d9a","c47c543d06f9a5a27a6c0132d453b682bc8f0035b1e7fb784b1b427e334c737e","72f27d9a8570ea9c9bcae89eab0c69cb8f293347315861b7b5495c691abc5329","23f33043cbdb1340f97aa6254d8bb49fcbf8c93ff707ca6f286cf51555cacf38","c3de14541d7d33cbfb3a1eae7f19735d7d47972036895aa629da7931bf2d3bbf","979e199e1562e22872ec58d571d516a2f360938337338e7b9525046d6b8d7a7e","5a83a5fd2356d852269cd3a281d1e623b92d85448e9523c52a2ba2a01e774f6f","6a29774d4539e4f5cbba5ea0f7d7f9f5e5e7b6e0c4e66bb96743a1a7e1066b80","e2b9cc5e2c4ce4bbe526bf635b8183b79b83225f6e3aa08adc9f2a5464791c9e","0389d6a8e7a8db5b7e57eb7e451b065bf72cde866c9a57b1c8784144a5a423be","11e6fad5b5db2a5bdfbf2d137735ac2d145a4c322036cc7f10503c9cfcc7e0a6","43b8bdf6195d27ceca8f769ff1052300334cb2729253311e0f8a7f7762e58b00","f7359927435edb6027064c2d076f21f49c9490bdf777a5147882c1d609cc8be0","0136ebe7c83054a044138976a1f209ba34ba3cde9ba2a7db9811aa0653695f58","c808bfc9f6b166cf989a13b280e70896e3fb3785a178ef63c2c3344b0830f0cc","b84c092789c13af0757a0b8dc435b9e3c0405ea79819e6ce726cef4779315704","1bb6e500e7681a7b0d0d2d5dc58f0c9e9c8185d1bc9002a81914017e3aa2267e","904c265386feea1ff8869e8ae38e4da84e76ee55fbd04f01e321bef9356c938c","52f3461da00bc7525b577aa46a98ef141fad9b82a9c16e56b1ec985566e8cdd5","da88ca52851671ed65784ad625e8e11e5596c27240b935e36fa1619c6fcc1879","df8eb2d959bb423b00d62b0c1fd333f6415b42cc23dcdc6b62215538ed76984e","e025255bc0b021f3bc3eb56242f648b6e899accca1ca3f0c6b371e179d0c1cff","87a58bc0440c330e04c20eb140acf10c038d0e58414c959d1d6caf642bdf587c","757c2ae1c9fd9920763ca9dda0d7a4ced286bcde0c98f2c25673bffaf9c3e1a4","b5cd29a28fc673f22eb888867c2b4c94208e57c980058ada62e24151f0f6dd8f","249ed5d3ca9b1123596569ffbe0964c1d641f37b3a1fb4837c0135b6d9657198","023cc42ea1bb71b72b908990572cdbece32cb258ea0173e35699b451dd27e6a8","0d43d31a754c3eb41b26ccf92d780a1c27d6b3535728f6093e94e4fa661fc1ed","84933a2f6ebc5537dcfa73b3b94fbf4fab498057d7debe6a7cdce0bc41683ca3","096fd133645b67bb754a5fe1c20b80d309986435eebb7b8e5895cddd6e6b802b","b66b6fb7d903a76aa4a121ad59a0f43a0afa881a85697f4ea2ea809ac0a8f083","410ebaaadb0f4802a06c56989df7fa76dfa7626e28ec2c9b28c98025842ee710","9f6e56184f4448fc232eef2ffdf1eea806857c71b2922f7b89043459d7913e8a","c44a4cddef6a49b640c940382cc3c6ea14303b5930ed6fdbe94a30aa71aa3fb8","ff42045388ccae2f43b79d1486b876a03f12b183ce36d809bada2ff060593e2a","bf74a88ebb37063a2744f7e7069afa4e4bfe7256b1ce34950b53aabcb71cf5d0","e42883d6e388801139c5b055d747be8c795329f0ae7700f4c854757e3fcb5ca3","6a07e11f9436d7c73e71c512fceeef30e00d5a9e8f16267e521115998677d0b0","2dcf98f509f06606108416e29d168387d033c5a64b2509c87a426b05a0993010","1b8f8e57013a3f062a658e3eac57a87cb1490adc954bee8d1dcdeddde57f5571","df3f3d58dcd816424bde8ee0f67c44bb0f991b8057f158d51ea204ac32dc67c2","3af9b588acf640438b7614b003415e8910b9c4fc8b8b6c8177072049cb9d894c","ff6cb13aae76fab2ab2c3c324e6f3755c064bd214203a9e9c26264f7d6f34858","c6005ba24e2710ed0d652ab2b62330ba7089031d019e325eae14c63b0ce60877","b3c2006b1f8203088e0836a281bf1618d7ce4da21bf57851080d29434442fe7c","d13ea54ce64b49e59f650bb47810b302395729f4372e5b9679c4ac5227810c0b","e49c67d9bdbe17ea69b0124b3325c5fb2603582e12c61eea215705d4c6308fd6","eea37122f2a5b229337d0fba63b2ad5b2d600ffe15a9839e42f277303ac76193","8aec960866d733b968974ca9460bd8ad119b6bb612c6679be7267779f47f5fee","8b08fea1cc1bf8ce4e1bf28e1ccf2f1068f1d37fe96f89c5a2bf12d60b66da8a","5d0c4ac6956ab3c747da060bfaa879531b62b801368b06487c0f0da1decb5ede","1c37a730fd26b3c1a7cd5e9d827b058f7abb3da6030200315fc64b8d44a4defe","08cabcb8bcbbf79b4f635598a7ad6a9c9bb8ff5b2721159d79ca50d5569d7de5","ba69b433acb4e1c0d8d040cd22233b720344459ac43f09bcf0206021dfa37566","c9fa455a762b42231098941636ab5e315d6b85e8ae29a36f926c5bf206de84f9","1f9bd12188f70a7d16e40d00b79c7cd202cde44e55b7c15b3541b26de5eeeb5b","3471e36b170580165fc525fa8a67149a292e2e076b04c7b7ad9d95284e6da7dc","ed22b0dd255008a1dc6204bb7b99e0506af49d96f8e15377466a8f5c38d12600","5e5f1d2dd9b2b656da2f877d0107849f3fa9bc5b3751e902ad402de26e2d5914","a5f8fcea3fd88e260d3d19a33e26e1c196d130fd7f8bc8c6fbedb450a8c20976","94307d8d69d9f1e70758027f4a2947e9a21f5c4b31150499c00671b5783e0f56","1a60ba0e8b56999b33dff6c7c1a24bfaf8e6b63b1ecd663c224be2fc19b689db","841ee7a20e644937d2fe26ec39d0c87a84ebc39802241c0a8d0234fb4b4a15ac","8957089d034c69a339d4822e1c2cbf8694a1de3c1d8487aa88dbe727cc3442b5","257315bfb9329d3bbd5818b307b496e064eddbb8d1fc367dfba8ce5996faf8a1","cafb92b263ec120a519fb3f9ebe0e2be60a13fea35a1e666d5d52f2ab66bac59","c026a652ea9f7996bc1fdade688e1d69628785d188a040411de8281600bbb254","5baf5725fb6078e2b5fcab4987793eb75eb2c6a304d2987648356bd39e82ae5e","f87330e9e708089ec1b2e91dedb74b2f11da77498dcd71f0f0107bc068b9361b","5ad7899393a8147eb0643dd0002af042781ac4123eaaa9db28b2c325f86fba29","7846fd15b45a2dc15c94ebaddd44eeb9602fc9f076e245fdbfedb63b1ccde00c","a51f232f42e32abe90c1675253ccfece967e043883f340d0d11aef7a27a50841","50d962f40672e6d3a4f15c97fdaff64d5cbe086f867b1f7ab87f602558bdbefd","2bcab7ecb42e5c2e7631f024675d8e587db554ee0ee645af7792cdb596d89ba7","1d9813dad91422f613af5eb17cf46952487a23fa37d01a0d7b07a37250a1421f","198ccaab1b18c55ea35c92a210500ec30f05740dae531a3376600897b239a2f7","0734de13f62b19911a00090d523fa0f6e79fd816919b24ca141316db3c639915","e884fae30f5b2515a4194dc64ccc607640e3dcc5b83c3f41951054045104a444","3810038865bce0eab3edc470d463d70d848d4c08e3a439989b0e438d3de1e16d","84336daea2c661e946142bb97a5f296513aa33edf50b34245b791fe88e821a4c","f1a67f47103c253ba24402bf66719d33415af0c4bc31236454ffadac2f408e17","98cf45e1085c68a0c093b56fdc1356e33a964c011912c5bc573989a4320e69f2","49847aa87e2d9fd8b598826e8d9d2785be660491e488e2acd478b22f54360611","24a36071f9b036a911d58ac2fc451ba5c35a80c4c7f639d547aa707c18ab3eb7","c8e06d799696c305d4c69a8548252121828c130ba50e75111e3e6ba5ad348abb","93958669f451794d558a9e47cabf7322edff1c150c48f7d449154bea904570e0","e2497f3d210fed1dd92ebc65006b2e392d4d7309bf2984a16c9b9705f6a9bdd9","f808536d0fde0c849bb20f044116824dda196a6fc1dd83d96d7f98e5b12486b1","da29ec2763628200ac909c3bab0b22b0240354744fa20ad7e13380c1971dda1c","5b475e5335a8b0d9346411cf689446f610a6387951ebb305214556dce157a7a4","b244e8df6dee741a2cf8a82d603909326abe628a8395eb5b701d7b1a760bdc33","11454e670472321c502dfd054a8303c8608e4dac22c4bd4232ea2f376021a71f","191aabf0a9bca397c501a5fe5192e97d9925d0718d0ee1a8c239011d722b737e","2570d4f8e55d6476ab393edf16cb839693bdd404b83a176ee8756fa30602edcb","3718631fa892976ee9e7722ab3844453f3bb31b87fbd39cf924418346e7c697c","7503ffe2865cf4665695497c90bff403e72c2138a6628bf887dab8d0712c0fb0","7b9ecca8089595d2af364a611f2338a0f84672416e25ab9b6542e2f954134b04","039afb8e3274080e50a6300345ea03e51ea1ba788a7f3b898beca42b7b131f59","8ca3dfc101dd8f30b475954324ef261e8429c1be07486a3c55ae2c94e793bcc8","d52b0f9593018176d4c1277cd0f6e29f6c6e6a586430130842a142afa06b4e7c","2ba223eeb09baef21540930e705ece2d137fa594dc13959cc102140e39a6e3a5","e8656b7d06ea152a31b2cbb5d61763785db9f8a02ee46d8f568bdb6e324a5927","2a0d2f7b71b2f8ab98e246a73187d83d6882bfaac6667298fe50b66b51fec1fb","5ae56614fb4dd8b5025edd139b0bf99b602c36542d283fae4d03af83b46c5ef2","8e05bbc0122cbb4aae5213be71719b8cc85a43514a17d4102bee7dd541ec0048","27c3a5f23fbb79390759811a63e43d8d3177478a71f34e6e00cc430326d9ee44","1e6ce4e71dca7ca50d689a725a98ac0ba566fac43345b7ad7a1fb19a2b1889e6","70884e460105669babf6810cb4b92df28cba665cfc4691f1c1244b8f4c4b822c","0659e0a05de2abf29e7da5de037f31d664ca14d2d7f513a9d0fdb6dbd0ea8439","dff0393490c966f8704040fb26b4e06defac593d3424fe1f9d6fb3ddfaaf14b2","712703436f6eab9c62de4f2544083efc24df883ba20b99767caccc6307af9f11","0a29e02ae340b9a12f0d1651565ee14077b8aa2d986c71a5a81f5c8ebe042317","0d612ea36d2831cedfe6ee5daf952fd29af849bf74a9a41387302eace040e825","9f28afc5b4457a77bdd6cdfb06fe8ee22536318fda4e2ec43ab81eed1f9d71dc","4de751526e2f8bcc23fbd52b858c80807b62adc3a5bf034f19dbe989be35e044","a7da3ba6730a0292505f1d7f5e745bd80ad6cf3376b03c127ce2b81221ad5ff0","53100fc8f4e83a89cc4e91ccc5dac3ca91c67930e5ed1ba0364a32a3402d5bca","d831e59fbe940d4c1041c5718168c86ad2d4533783d5056a9d197e5fad7aadaf","c430124d9211354c72b9f94f6a610490d48f7b2c6b5ef0ea077682d0f4e336b8","1de6fc82bd5bc7e276de0881a0ad23b19ed6e62105789cf7bd2ecfd07dd151e5","5846995aebfa945833dac2598129ed0bdc4571fdb978e27737e831ee81ca6d26","a531f69294cdea7e295a6b821a108f2dd6a15c8461e83c080f2269230968ab1f","cfd6807015e1abaca2c0daf2a0a0536b1470ee0fa3bfb48ca04fa4c93e9ae955","0f702d0a5790481cddf452a3bad18fc24ee4b9fcaa2efa1e5316bb7dcb09584c","1f2ad37ae1e1e0fa357855c7d250a1b5aca60b7a340478eecc217c797b5e401a","d77872634438ddef35908f7176faaf6b8078c136999d2ae536a9c30f568dab93","22b41110a03d147578a4f74783040b2cd29e8f4ec0be0d75457bb4ee40695838","ccc3edc14f61f94e25aa6cbc9a661d3987b69150f0e65bb519b0a7cbe4afcc0a","a71b6ffaf7aca117798c2d90176814d5f2b8b0583406b0e4c871f1ed5a5a8e7e","775faf0e053a9e2a91a1bb3be5335b2b6e8d9e90c7dc3b8f774241dd5b035a35","0754a9425f0b91354765e42f87707aef831b7d484c2e7a3b96438391ccf29da3","bde74e39eebb7d4fbd30e2561eab3c0f9455d7d7c2f644b59c50a1efefbd6740","692160b4000861b73ca46f4218a7ea51e4948b86828afe9eccaa198457462724","3654dc81e408c8ccef25df44e3f452d99fe9caa9e89999c9bad80b14c99c8597","e30cc712d69aa131f354312843cce73cf2d5d25aa931ee9631d3870af47f402f","c4b41f1a4b7638a3fdad81a54825c16dd5cacca2f67feac7749e0356c3612369","e562676dd701ae445314904e753fde72777d4f3fdb405c1e183072b3bb40e6ac","13632e05505ca96972ca24867386e68d32e64012fa036d24f7c4c8aaddecde80","2b958dfcef4bf302fc77cb819bf7f9707f16af472309e0379947fc097f4ed60a","71b4976d8f65cc2446cdb4f21ceba925982c07ee6deff7f59fdcffd110e317ff","647cce30d3bf58a21a368b276aeba0f338102384a991e39ddfbd089bf92f5ce7","89a5d715c52292c64dabae8e21307d62a596e3f5238f8bf92d6613e409601df4","83e68fdff00a3cf859f7d43f7352de4fccc8ae940ecf35e315a22b86f22060f8","818fc46ef350037fe98f8661294a57669213419efd879946ab03e3669706c6cc","2c8db0964d3df2ad1e927a88b7ee998069f8c23955abb31fb6cc093272eef6a5","b704e0e56845f97d62ede3116532ab4c3837148033eebfb58d516efb1f1787db","e58252042e62abc53557fc82af79ad7399c15366afc5ba0b99d6c3b7ae20bd44","7ab56c890f0d07eaa6409c3a33c99a6c4cebe9212fd1a87f32883d5bc31c2ed4","12ad3781e1b9186334bd37955e77e3b4195dfca604ad82a82087ad2d68ccfc96","d83e4d868cc5017b43e8966b42e5faef14a0e4b7b64fe182d42b1bbff61d53c6","797097db864d88c6e5262e4d70ffc390f93cff8df9869c2d47c21930da473f92","bd0e7bf0a8fe3cce4ba0ad016a57c50f345d67b8b705e8ffdfa209a7bff4d505","aa7a03b7bd919a41228cdbdebdb171e2bd38bb9e24f0e9e1e7d12f77c61a5bb5","0844e71deec8c4ad63ebeeadce544728adc57d3e72c85367938356602a157085","9737f4c2faea275a2691d8fff099bc5fd30ddc5ef3c90565d78a23a3f4f4deb7","4366a92f712022e591dea4163840c36a15818f4d5f927e65a537f2b73b93d8cc","30b5a8cfac290f8a8300a28c5135d3a115ea7a853cf71e3d279fe706022bad5c","94b88397bba39b5bac421f26029b4b9a42b05788bde01ace2b88027e685a7205","af95edeee50ec3d534566a6088336609983f5d9a0ca2ee74e4f6f492d6b054c8","c83b8c977dac8abb45bc779797b2e4a592bcd90c17312151bf523a18b9befaa9","686dc8b8bcdf981ea916b93a65920586d20395a9623a17f3b82bf79c2abf36d1","47df1889d3600a492ce901a6b03b2e7faf091d497b0895a147aa5b88e4505a30","705a499edc34b9a1ac052ec277341b8e5158301e0680c088183f0057cd40be1d",{"version":"98f6ea9cfe008239ea6a32341af70e1637ad6e5531590f993c257124f70efbda","affectsGlobalScope":true},"aa627b9874b9e75be9e2cc1add1bf093084dc03ab230b246e10c848b0753484c","31221b5eb450f5876c69f1206fcacf72d1f64a6af5dba092613980767c4c1d57","24ee89bc26a93ab11ecd92c1b4864d662f09919b5dbbc79f9e438c3848771e3e","3c0ae2eb073def875af7f3c7694ed8a00278c14faaf834c49f98d8c75d6a260e","d4eb916c682dda2107bf4dcaa47ec365c0e71d47fe585a9029729c9194d11697","436c48668d4bbf5046c2a00f67bae60ac2397e3727b330787e55e9a0311740b1","d30d18d42e1fe77fddc8fbf1cd188f3bcc5a107a880a15baba313c37fe71654e","1097afe5effcd8613a2db93f929fb9c441d6cb79185a32150bb1a8f9ab188ee2","c660def2dcf5d13a71769e3ff35791ab534edf456b6e4593da3ef86e448ad18c","0b76fe2cff821019343b3237443e99ac38766d50238895e2f1911f63c010799b","62e7b6905c40aab572ca8f2a04cf84870c874a7f1de635604a1bf918e79cd452","3e8dca6e209fc311d07bad12334c634e83bfd830e2f19b17bf6f21444959a2dd","99c37326e7fb82caa970a72e29f2d6221d977091233cf01f0412c6eaf7de2e11","598178490f2e801f9ee51337228241930576f793ccc42f9d6e2f612d4cdfc980","0b900f25a6721eeded0dd2ff79f0105d5296fb0db42b69f0c960c7ea9d05571b","1c8d08c8bc1f6756fe7099b4145e9bfc5feb419805aad21ad6631970a5c5ce9a","c4fbdf432eefcacec382a0334dfd6b8d04db298a51c1b4472e230ddbfbebbf7e","ea8e5d5c86a193aff8a88716bcd2eab601ecfe4f8e332a752611e22590f8acdb","748aac6880da50342f3da1a1629703e10b1ef02d6d645a15b329a541f41f12e0","88e43a3429bca65efe2809bc3332403c59247131aa49d155887c2331e84258e2","94631e292c43e840614db73f7a77267b9a474ccb81cf87f2d873cfc0da21e132","d3db12713251b1fbb7d7aa315e75651f21725c04e12bbb6db1cbd839c3ef571a","5e4b9fdcee44f2595a49c6f56eb7c0945fe8647dfee18ef9ca809d66874e787d","bad012d868eaf038dd4eb7111bf9cc130d54e09ccf55a76fcbe4fa000518472f","e83bb6ebd5e0780c5d2913e8477c64b276927780f08c474324e8de3882123b70","11d4c38ddfa109eab84d6eae463adbfe2a6b9f8c137821f2e9099b7f7f6b21c8","1bbe5f0e3b3a07620a4272b3dd1e5e04446c6102e026c47236acea18eeb344c3","194a2a7d2dac0cc279324647fc57f1430eac5ace21c61861b876274157523f5e","81b94da141b40d43fce60ef645421e633966eaef3e1e451ee763ed45374d84c8","cfce7bc48480935b5871bf135107b1eaa225ff70cc546608203af16246144e3d","5a6dae955ae57804e345b4ef84ea67cc83ea9e6c5a3ab6d5f810265efc4ab6a2","ff0a26fcfaff5f3c5b638dc2097b396ecdb80c0ebf475b2656ab3d865e6ff88e","795df7cd0927404f4ddd72aff1697537a189df86a1901b5d83a8fc1c51102850","4efc4ce992c2c5aef9f39b708ae32ae25bdff23a890e7e0d19067d8fdd08fce5","ae34c2f557104a51d6ae8ba8fd71f12f36bfd35f8100383398a4c461f39fa229","2cfa1c648992e750905105ee46f23232043d224cf8e861c5342cd53370dfe559","9b00a88dd1cc096d2cdeed4e41de6bad18104d82c8baa58ffa9902ad924b92f3","138d2be8b8c3cf77ea0ea3203c13caba7032af5ea0ec91085da8641259775c75","5650afe833c9a9776a47984db2cbf16cab8c1528a2bd791a46f72240cc492570","3099b5e21f4847a9e32e0b13cd2c087c4a767b21212ca149fc8e5f863d1d8ac2","bccf0691916be24573fef7e4bd27e259b8a1627c24489eeaa42ef8d98e0e8a00","3b25320bd818a5cb3486125b806adbfc87ec4ec4f09bb1c77bf405546315a520","f7d4897012d50948b30bb2038ec8f0afb50a0a4be884a0712fa3e69c000fc1bf","a517a027f5ceb3b40137512542be064610bbbdc328ae5a19f154945e429b1388","860a91e8394481825d63720e1c8ec9dc147b87cf9e61bafade79ae0b1e655efd","d816ba56f3e3c349c5243c238a69e35d8d2d0afdf463ef9211b28fab480f6b26","3502ae3b987ee4e99e9cc05644ceb222181970f20ac986a27a640be7ec58799f","b33b42419fa932e6dcc5199db0196b3f127e2aa1644291534a97b69d21f24641","4665a9a73bf7f0cbab9056589267950eb29fefb4519d73af96e573535feda997","98b9d0e51b3bfa085a542a235398ee424526a838c70294afeb8d34b24d165ed8","d3cc9fc3d7e4c5bfd182170e22145fecd5dc5ef7304e07b02137a8a256afa628","ca7c6c0d4d9b0bfe3b4486bda0cbb8eed6438950df0b22c81909f6ce6f49f2a9","4fc70a527745d7fda0bdf3a5ea91d61505a70f6eee2b92294ada7a03e7d6f305","63cd4ba4703509fbbf3f2b86bb33afa53d753a5c3cb26f6752c714a33b8df534"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noImplicitAny":false,"noImplicitOverride":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"fileIdsList":[[32,45],[181,228],[31],[31,32,45,111,141,171,172,173,174,175,176,177,178,179,180,181,195,196,203,205,209,220,221],[31,32,45,51,111,123,135,141,157,171,172,173,174,175,176,177,178,179,180,181,195,196],[31,32,45,51,111,141,152,171,173,174,175,176,177,178,179,180,181,195,224],[222],[36,128,141,150,221,237],[33,34,36,42,44,47,113,128,141,158,159,160,161,162,163,164,165,166,167,168,169,170,185],[33,34,36,44,47,95,113,128,141,171,202],[40,45,47,110,158,171,184],[158,163,171],[158,171],[123,158,171],[44,158,171],[158,171,185],[41,158,171,182],[36,47,53,54,57,58,158,171],[110,158,171,182,184],[171],[33,34,35],[31,33,34,35,36,37,38,44,185],[33,34],[33,36,39,42,43],[36],[33,36,44,184],[33,185],[135,137,182,222,237],[237],[138,182],[182],[182,222,237],[47,141,237],[182,220],[155,182],[36,42,43,44,82],[45,47,128,150,210,214,237,262],[36,40,42,43,44,78,82,128,216],[36,41,42,47,77,81,154,237],[44],[36,41,72,78],[36,41,70,72,78],[36,42,70,78,124,125],[36,41],[36,41,72,77,81],[41,78],[32,33,36,40,41,42,47,69,70,72,76,78,82,124,125,126],[36,41,42,45,47,128,141,150],[36,40,41,42],[45,73,75,77,126,128,131,132,144,145,146,149],[45,73,75,77,126,131,132,144,145,146,210,212],[45,73,75,77,126,131,132,144,145,146,148],[45,73,75,128,149,153],[45,73,75,128,212,214],[45,73,75,128,148,150],[155,210,212,213,214,215,216,217,218],[152,153,154],[36,41,43,70,72,73,75,77,78,79,80,82,124,125,126,127,128,129,130,131,132,144,145,146,147,148,149,150,151],[45,72,75,79,132,210,212],[41,47,146],[41,45,47,72,75,82,143,144,210],[36,41,72,78,80,81,124],[36,41,45,72,73,77,81,82,124,129],[36,73,131],[41,45,72,73,75,82,124,129,143,144],[41,45,47,72,129,143,144,145],[36,41,78,125],[45,130,144],[45,47,130,144],[45,130,143,144,146],[36,44,47,142],[36,44,72,73,75,142],[41,45,80,82,149,210,212],[45,82,210,212],[36,40,41,70,72,79,80,81,82,127],[45],[40,41,45,72,77,78,79,82],[34,36,41,44,72,75,78,79,80,81,82],[34,36,41,44,47,72,78,80,81,82,93,197,211],[45,212],[34,36,41,44,72,75,78,79,80,82],[36,44,77,81,82,210,212,262],[40,74,75,81],[72],[76],[34,36,40,44,47,69,70,71,73,74,81],[40,45,70,72,73,74,75,76,78,81,82],[45,72,77,81],[40,44,45,70,72,73,80,81,82],[34,36,40,70,72,73,80],[47,73],[70],[81],[33,34,36,42,43,44,47],[140,156,219],[140,155,156],[140,152,156],[36,42,43,44,47],[141],[44,135,136,237],[33,47,112,141,142,202,203,237],[33,36,44,47],[33,36,44,47,50],[34,44],[45,95,182],[33,34,36,40,44,47,50,133,141],[33,44],[33,34,36,39,40,44,47,134,135,136,137,138,139,140,142],[31,34,36,47,112,113,141,171,185,195,196,202],[31,36,47,112,113,121,141,171,195,196],[36,113,141,171,185,195],[84,185,195],[34,36,47,48,185,195],[33,34,47,48,195],[34,185,188,189,195],[34,185,195],[34,185,189,190,195],[36,113],[123,202,203,237,275],[36,95,141,184,185],[95,121,172,203],[226,237],[95,110,112,113,121,122,184,197,202,206,208],[95,110,112,113,121,122,184],[95,110,113,122,184,223],[64,182,280],[45,47,60,67,113,202,203,237],[45,47,95,110],[34,39,40,47,55,59,64,65,66,67,95,185,195],[33,34,63,95,182,185],[34,47,55,95,185],[34,39,47,52,53,59,60,65,66,84,85,87,89,90,93,185],[34,36,39,47,52,54,59,61,65,82,95,185],[36,39,40,115,121,185],[36,39,40,47,59,89,115,185,202],[36,59,95,185],[36,123,185],[34,36,40,47,65,117,121,185],[39,40,47,65,66,117,185,202],[34,36,39,47,95,185],[47,60],[34,36,39,40,46,47,49,52,53,54,58,59,60,95,185],[33,39,59,60,87,90,185,202],[121,185],[33,39,59,185,202],[121,123,182],[34],[47,111,112,206,237],[33,34,35,36,39,44,53,65,84,88,91,111,183,185],[34,36,39,44,53,65,84,88,91,183,185],[33,34,36,95,111,185,195],[98,226,237],[97,226,237],[99,226,237],[101,226,237],[103,226,237],[102,226,237],[100,226,237],[54,226,237],[55,226,237],[46,237],[109,226,237],[104,226,237],[104,105,106,226,237],[105,226,237],[107,226,237],[95,185],[47,84,96,185],[34,47,85,96,185],[47,60,96,185],[39,47,96,185],[47,65,96,185],[47,66,96,185],[34,47,87,96,185],[33,34,44,47,52,54,96,185],[34,36,47,53,95,96,113,185],[34,47,54,55,88,96,97,98,99,100,101,102,103,104,105,106,107,108,183,185],[36,39,47,55,59,96,185],[47,89,96,185],[34,47,90,96,185],[34,47,91,96,185],[54,55,96,97,98,99,100,101,102,103,104,105,106,107,108,109],[34,36,47,96,185],[33,34,36,93,202],[45,123],[39,52,53,59,60,65,66,84,85,86,87,88,89,90,91,183],[182,184],[34,36,47,93,95,114,116,118,119,120,184,185],[34,36,44,47,93,95,184,185,197,198,199,200,201],[33,34,36,39,40,44,47,53,56,57,59,61,62,65,66,68,83,84,86,89,94,110,185],[45,47,92,184],[39,47,52,53,59,60,65,66,84,85,86,87,88,89,90,91,93,96,185],[45,93,183],[207],[34,36,39,47,50,52,53,59,60,65,66,84,85,86,87,88,89,90,91,93,183,185,204],[45,95,110,112,184],[40],[45,57,182],[45,95,184],[193],[46,47,48,49,50,204],[40,46,47,48,49,50],[47],[34,36,38,40],[177,179,237],[175],[31,33,34,36,44,47,48,64,113,171,173,185,186,187,190,191,192,193,194],[31,32,175,179],[33],[226],[34,36,44,47,54,159,160,163,164,165,168,171,185,237],[222,237],[182,202,237],[121,182,237],[121,182,184,237],[207,222,237],[184,222,237],[68,226,237],[31,33,34,36,39,40,44,47,48,52,53,59,60,65,66,84,85,86,87,88,89,90,91,95,112,113,121,122,141,171,185,195,202,203],[182,237],[111,222,237],[56,222,237],[45,62,95,222],[82,237],[45,226,237,322],[45,226,237],[40,45,226,237,275],[226,237,275,322],[159,163,164,165,182,208,226,237],[36,322],[33,34,36,45]],"referencedMap":[[227,1],[229,2],[230,2],[231,2],[232,2],[233,2],[234,2],[235,2],[236,2],[32,3],[222,4],[182,5],[225,6],[226,7],[238,8],[171,9],[221,10],[163,11],[169,12],[164,13],[162,13],[166,14],[165,15],[159,16],[167,17],[160,13],[168,18],[161,13],[170,19],[158,20],[239,7],[240,3],[241,21],[45,22],[35,23],[44,24],[37,25],[185,26],[34,27],[244,28],[245,29],[246,28],[247,7],[248,30],[249,31],[250,31],[251,32],[252,33],[254,34],[255,35],[156,36],[263,37],[264,38],[265,39],[41,40],[124,41],[127,42],[126,43],[42,44],[78,45],[125,46],[128,47],[216,48],[43,49],[153,50],[214,51],[150,52],[154,53],[215,54],[151,55],[219,56],[155,57],[152,58],[257,59],[258,60],[259,61],[129,62],[131,63],[132,64],[145,65],[217,66],[130,67],[256,68],[146,69],[218,70],[143,71],[144,72],[260,73],[261,74],[147,75],[211,76],[80,77],[149,78],[212,79],[213,80],[148,81],[267,82],[268,83],[269,84],[270,85],[82,86],[77,87],[266,88],[79,89],[81,90],[75,91],[210,92],[72,40],[74,93],[140,94],[220,95],[157,96],[253,97],[135,98],[243,99],[272,100],[271,101],[137,102],[138,103],[136,104],[139,105],[142,106],[134,107],[141,108],[203,109],[172,110],[196,111],[186,112],[188,113],[189,114],[190,115],[192,116],[187,116],[191,117],[173,118],[174,3],[276,119],[277,120],[273,121],[274,122],[209,123],[123,124],[224,125],[281,126],[279,127],[57,128],[68,129],[64,130],[56,131],[92,132],[83,133],[116,134],[199,135],[115,136],[62,137],[118,138],[200,139],[117,140],[67,141],[61,142],[198,143],[120,144],[201,145],[119,146],[63,147],[282,148],[112,149],[223,150],[206,151],[283,152],[284,153],[285,154],[286,155],[287,156],[288,157],[289,158],[290,159],[291,160],[296,161],[292,162],[293,163],[294,164],[295,165],[297,166],[96,167],[97,168],[98,169],[99,170],[100,171],[101,172],[102,173],[103,174],[55,175],[54,176],[109,177],[104,178],[105,179],[106,180],[107,181],[110,182],[108,183],[197,184],[114,185],[184,186],[84,31],[85,31],[60,31],[86,31],[39,187],[65,31],[66,31],[87,31],[52,31],[53,31],[183,31],[88,31],[59,31],[89,31],[90,31],[91,31],[121,188],[202,189],[95,190],[93,191],[94,192],[122,193],[208,194],[207,195],[113,196],[298,197],[58,198],[275,199],[194,200],[205,201],[51,202],[71,197],[48,203],[47,204],[299,205],[178,206],[176,206],[177,206],[179,206],[195,207],[180,208],[111,209],[335,29],[336,210],[337,122],[338,211],[339,212],[342,213],[343,213],[344,29],[348,214],[349,214],[350,214],[351,29],[352,214],[353,214],[354,215],[345,213],[340,212],[341,216],[346,217],[347,217],[322,218],[237,219],[302,220],[303,221],[304,29],[305,212],[306,222],[307,212],[308,222],[309,212],[310,223],[311,220],[312,224],[313,220],[314,29],[315,29],[316,220],[317,220],[318,220],[319,220],[320,29],[321,212],[323,225],[324,225],[325,210],[326,226],[301,212],[327,122],[328,227],[329,228],[332,122],[330,213],[331,229],[333,230],[334,231]],"exportedModulesMap":[[227,1],[229,2],[230,2],[231,2],[232,2],[233,2],[234,2],[235,2],[236,2],[32,3],[222,4],[182,5],[225,6],[226,7],[238,8],[171,9],[221,10],[163,11],[169,12],[164,13],[162,13],[166,14],[165,15],[159,16],[167,17],[160,13],[168,18],[161,13],[170,19],[158,20],[239,7],[240,3],[241,21],[45,22],[35,23],[44,24],[37,25],[185,26],[34,27],[244,28],[245,29],[246,28],[247,7],[248,30],[249,31],[250,31],[251,32],[252,33],[254,34],[255,35],[156,36],[263,37],[264,38],[265,39],[41,40],[124,41],[127,42],[126,43],[42,44],[78,45],[125,46],[128,47],[216,48],[43,49],[153,50],[214,51],[150,52],[154,53],[215,54],[151,55],[219,56],[155,57],[152,58],[257,59],[258,60],[259,61],[129,62],[131,63],[132,64],[145,65],[217,66],[130,67],[256,68],[146,69],[218,70],[143,71],[144,72],[260,73],[261,74],[147,75],[211,76],[80,77],[149,78],[212,79],[213,80],[148,81],[267,82],[268,83],[269,84],[270,85],[82,86],[77,87],[266,88],[79,89],[81,90],[75,91],[210,92],[72,40],[74,93],[140,94],[220,95],[157,96],[253,97],[135,98],[243,99],[272,100],[271,101],[137,102],[138,103],[136,104],[139,105],[142,106],[134,107],[141,108],[203,109],[172,110],[196,111],[186,112],[188,113],[189,114],[190,115],[192,116],[187,116],[191,117],[173,118],[174,3],[276,119],[277,120],[273,121],[274,122],[209,123],[123,124],[224,125],[281,126],[279,127],[57,128],[68,129],[64,130],[56,131],[92,132],[83,133],[116,134],[199,135],[115,136],[62,137],[118,138],[200,139],[117,140],[67,141],[61,142],[198,143],[120,144],[201,145],[119,146],[63,147],[282,148],[112,149],[223,150],[206,151],[283,152],[284,153],[285,154],[286,155],[287,156],[288,157],[289,158],[290,159],[291,160],[296,161],[292,162],[293,163],[294,164],[295,165],[297,166],[96,167],[97,168],[98,169],[99,170],[100,171],[101,172],[102,173],[103,174],[55,175],[54,176],[109,177],[104,178],[105,179],[106,180],[107,181],[110,182],[108,183],[197,184],[114,185],[184,186],[84,31],[85,31],[60,31],[86,31],[39,187],[65,31],[66,31],[87,31],[52,31],[53,31],[183,31],[88,31],[59,31],[89,31],[90,31],[91,31],[121,188],[202,189],[95,190],[93,191],[94,192],[122,193],[208,194],[207,195],[113,196],[298,197],[58,198],[275,199],[194,200],[205,201],[51,202],[71,197],[48,203],[47,204],[299,205],[178,206],[176,206],[177,206],[179,206],[195,207],[180,208],[111,209],[335,29],[336,210],[337,122],[338,211],[339,212],[342,213],[343,213],[344,29],[348,214],[349,214],[350,214],[351,29],[352,214],[353,214],[354,215],[345,213],[340,212],[341,216],[346,217],[347,217],[322,218],[237,219],[302,220],[303,221],[304,29],[305,212],[306,222],[307,212],[308,222],[309,212],[310,223],[311,220],[312,224],[313,220],[314,29],[315,29],[316,220],[317,220],[318,220],[319,220],[320,29],[321,212],[323,225],[324,225],[325,210],[326,226],[301,212],[327,122],[328,227],[329,228],[332,122],[330,213],[331,229],[333,230],[334,231]],"semanticDiagnosticsPerFile":[6,7,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,30,27,28,29,1,9,8,[227,[{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":79,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":271,"length":15,"messageText":"Cannot find module '@jest/globals' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":5193,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":5281,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":5988,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":6301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":6567,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":6630,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":7125,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":7404,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":7504,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":7641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":7770,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8013,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8071,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8218,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8318,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8649,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8815,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":8883,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9235,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9580,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9664,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9730,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9802,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":9961,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10469,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10516,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10579,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10838,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":10906,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":11057,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":11446,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":11493,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":11556,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":11730,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":12053,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":12105,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":12623,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":12672,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13322,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13558,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13694,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13799,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":13931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":14243,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":14283,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":14791,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":14885,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":14966,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":15028,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":15170,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":15214,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":15710,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":15948,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16088,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16169,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16231,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16345,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16393,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":16910,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17174,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17258,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17301,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17596,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17697,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":17743,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18034,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18087,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18184,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18341,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18503,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":18825,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":19827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":19859,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":19991,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20074,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20426,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20510,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20619,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20952,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":20995,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21265,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21404,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21520,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21594,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21786,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":21945,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22024,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22274,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22495,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22623,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22889,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":22949,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":23162,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":23252,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":23417,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":23679,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":23896,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":24181,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":24232,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":24337,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":24385,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":25227,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":25512,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":25569,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":25906,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":25954,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":26009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":26073,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/cwistylewalletmanager.test.ts","start":27781,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[229,[{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":183,"length":15,"messageText":"Cannot find module '@jest/globals' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":296,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":471,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":702,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":971,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":1811,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":1852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":1893,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":1941,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":2011,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":2105,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":2626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":2667,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":2998,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":3074,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":3119,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":3649,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":3690,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":3731,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4066,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4148,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4193,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4909,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4953,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":4996,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":5260,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6065,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6250,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6292,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6353,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6638,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":6703,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":7241,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":7697,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":7748,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":8328,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":8567,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":8636,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":9592,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":9853,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":9900,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":9945,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":10840,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":11071,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":11307,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.callbacks.test.ts","start":11354,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[230,[{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":179,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":223,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":306,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":366,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":470,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":495,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":517,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":707,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":754,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":1129,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":1482,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":1573,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":1645,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":2380,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":2674,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":2746,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":3144,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":3440,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":3504,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":4198,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":4528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":4600,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":5252,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":5555,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":5898,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":6189,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":6256,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":6958,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":7185,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":7224,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":7682,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":7915,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":7959,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":8222,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":8710,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":8779,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":8957,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":9395,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":10142,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":10630,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":10699,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":11691,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":11733,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":11802,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":12232,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":12645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":12707,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":13006,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":13460,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":13669,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":13908,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":13957,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":14309,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":14789,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":14862,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":15852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":15925,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":16637,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":17631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":18418,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":18551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":18624,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":19212,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":19430,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":19964,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":20208,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":20262,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":20948,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":21042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":21203,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":21268,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":22259,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":22699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":22768,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":23364,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":23619,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":23957,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":24462,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":24530,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":25003,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":25129,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":25720,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":25763,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":25996,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":26043,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":26278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":26560,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":26629,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":26922,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":27169,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":27239,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":27308,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":28030,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":28099,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":28593,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.checks.test.ts","start":28774,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[231,[{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":199,"length":15,"messageText":"Cannot find module '@jest/globals' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":237,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":293,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":434,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":563,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":614,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":681,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1106,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1235,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1315,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1510,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1855,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1892,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":1954,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":2683,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":2741,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":2822,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":3063,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":3101,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":3726,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":3773,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":3870,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":5434,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7499,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7702,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7766,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7833,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":7908,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":9126,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10497,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10735,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10798,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10864,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":10941,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":11009,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":12805,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":12856,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":12972,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":13030,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":13111,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":13265,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":15190,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.encryption.test.ts","start":15313,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[228,[{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":23,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":1289,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":5034,"length":7,"messageText":"Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6053,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6101,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6192,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6477,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6781,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6869,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":6951,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7014,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7081,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7160,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7225,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7501,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7594,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7659,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7761,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7827,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":7928,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8006,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8320,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8431,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8582,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8662,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8777,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8887,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":8968,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":9037,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":9110,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":9199,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.fixtures.ts","start":9268,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304}]],[232,[{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":200,"length":15,"messageText":"Cannot find module '@jest/globals' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":942,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":1132,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":1272,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":1351,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":1430,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":2877,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":3161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":3342,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":3405,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":3604,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":3652,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":4879,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":4936,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":5335,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":5398,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":5572,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":5620,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":6647,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":7297,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":7346,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":7510,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":7624,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":7686,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9283,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9485,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9678,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9817,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9911,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":9997,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":10072,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":10983,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":11258,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":11368,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":12038,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":12244,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":12308,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":14556,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":14821,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":14862,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":15413,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":15532,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":15578,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17179,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17399,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17432,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17700,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17742,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17855,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17924,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.flows.test.ts","start":17988,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[233,[{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":188,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":232,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":328,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":348,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":477,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":499,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":528,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":903,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":978,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1221,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1268,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1716,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1789,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1888,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":1957,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":2023,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":3267,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":3315,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":4223,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":4320,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":4505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":4549,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":5005,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":5303,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":5513,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":5557,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":6628,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":7068,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":7138,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":7512,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":7703,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":8250,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":8294,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":9735,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":9938,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":10351,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":10738,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":10782,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.initialization.test.ts","start":11014,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[234,[{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":207,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":375,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":466,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":486,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":553,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":575,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":604,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":659,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":780,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":827,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1221,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1280,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1365,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1506,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1553,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1650,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":1697,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2067,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2146,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2218,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2299,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2357,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2501,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2592,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":2909,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":3526,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":3658,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":3965,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4116,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4219,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4290,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4475,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4654,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4787,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":4834,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5340,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5398,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5516,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5620,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5751,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":5798,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6151,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6520,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6578,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6641,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6783,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":6870,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":7092,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":7528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":7661,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":7819,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":7878,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":8018,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":8103,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":8196,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9108,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9162,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9223,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9432,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9578,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9651,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":9938,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10093,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10281,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10486,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10554,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10764,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":10912,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11095,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11252,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11320,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11598,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":11753,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":12874,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":12931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":12988,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13045,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13103,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13452,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13524,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13588,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13751,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13784,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":13882,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":14842,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":14902,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":14972,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":15018,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":15153,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":15186,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":15236,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":15356,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16060,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16120,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16181,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16249,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16387,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16420,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16473,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":16660,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17231,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17291,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17358,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17496,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17529,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":17625,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18153,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18219,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18349,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18382,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18427,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":18550,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":19140,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":19206,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":19336,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":19369,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":19457,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20109,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20169,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20236,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20369,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20402,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":20493,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21035,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21101,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21234,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21267,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21358,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21867,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21936,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":21984,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22111,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22219,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22491,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22684,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22750,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22878,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":22925,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":23332,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":23540,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":23602,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":23758,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":23898,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24586,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24640,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24704,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24750,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24887,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":24972,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25066,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25517,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25577,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25644,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25801,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":25848,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":26292,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.pmodules.test.ts","start":26504,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[235,[{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":205,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":249,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":362,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":422,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":2758,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":2780,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":3014,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":4955,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6070,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6197,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6274,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6315,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6350,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6604,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6739,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":6871,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":7036,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":7482,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":7521,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":8516,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":8562,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":9094,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":9154,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":9253,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":9407,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":9922,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10380,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10701,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10747,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10899,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":10959,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":11058,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":11305,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":12700,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":12920,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":13023,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":13095,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":13169,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":13248,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":13995,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":14128,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":14594,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":14711,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":15524,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":15584,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":16055,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":16149,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":16375,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":16440,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":16801,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17059,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17120,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17290,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17341,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17682,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":17759,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":18010,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":18060,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":18455,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":18528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":18837,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19132,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19405,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19461,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19550,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19824,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19880,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":19943,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20175,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20234,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20278,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20532,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20591,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":20631,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21036,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21155,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21485,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":21771,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22130,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22197,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22248,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22533,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22598,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":22647,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23076,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23141,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23197,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23503,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23573,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":23838,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24057,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24127,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24178,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24397,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24466,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24784,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24943,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":24987,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25055,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25226,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25270,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25351,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25460,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25499,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25561,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25704,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25757,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25828,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25939,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":25982,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":26045,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":26156,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":26204,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":26466,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/__tests/walletpermissionsmanager.proxying.test.ts","start":26687,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[236,[{"file":"../src/__tests/walletpermissionsmanager.tokens.test.ts","start":66,"length":15,"messageText":"Cannot find module '@jest/globals' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/__tests/walletpermissionsmanager.tokens.test.ts","start":318,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[32,[{"file":"../src/cwistylewalletmanager.ts","start":1438,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],222,182,225,226,[238,[{"file":"../src/monitor/__test/monitordaemon.man.test.ts","start":418,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/monitor/__test/monitordaemon.man.test.ts","start":460,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/monitor/__test/monitordaemon.man.test.ts","start":489,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/monitor/__test/monitordaemon.man.test.ts","start":557,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],171,[221,[{"file":"../src/monitor/monitordaemon.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/monitor/monitordaemon.ts","start":66,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/monitor/monitordaemon.ts","start":770,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/monitor/monitordaemon.ts","start":836,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],163,169,164,162,166,165,159,167,160,[168,[{"file":"../src/monitor/tasks/tasksendwaiting.ts","start":51,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],161,[170,[{"file":"../src/monitor/tasks/taskunfail.ts","start":35,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],158,[239,[{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":149,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":199,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":248,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":277,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":2011,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":3470,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":3507,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/certificatelifecycle.test.ts","start":3557,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[240,[{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":111,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":308,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":351,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":1119,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":1181,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":1861,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":1923,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":2805,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":2924,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":3614,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":3656,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":3769,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":4305,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":4550,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":4795,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":5109,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":5509,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":5983,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":6116,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":6831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":6863,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":6974,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":7732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":8014,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":8050,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":8161,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":8704,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":8992,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":9272,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":9552,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":9901,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":10609,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":10641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":10744,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":11272,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":11550,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":11820,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":12090,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":12429,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":12931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":13156,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":13204,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":13757,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":14193,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":14439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":14753,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":15232,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":15285,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":15388,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":15456,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":16666,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":16797,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":19739,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":19873,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":19941,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":19966,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":19998,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20022,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20050,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20082,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20285,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20628,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":20956,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21036,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21128,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21458,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21581,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21676,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21791,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21888,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":21999,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22290,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22357,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22621,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22714,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":22883,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":23121,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":23174,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":23551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":23716,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":23791,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":24177,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":24422,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":24520,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":25494,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":25536,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":25639,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":25963,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26152,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26241,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26492,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26622,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26713,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":26913,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27106,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27171,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27265,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27583,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/privilegedkeymanager.test.ts","start":27763,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[242,[{"file":"../src/sdk/__test/validationhelpers.test.ts","start":39,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":50,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":96,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":125,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":300,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":381,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/validationhelpers.test.ts","start":524,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[241,[{"file":"../src/sdk/__test/walleterror.test.ts","start":523,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":841,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":881,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":910,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":1131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1183,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1389,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1500,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1541,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1707,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1792,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":1867,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":2005,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2226,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2347,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":2449,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2493,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2664,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2709,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2779,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":2920,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":2973,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3044,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3174,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3228,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3300,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3375,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":3505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3559,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3684,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3866,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3921,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":3999,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4079,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":4206,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4263,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4448,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4590,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":4702,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4751,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4905,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":4955,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5008,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":5165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5208,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5256,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":5481,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5524,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5577,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":5721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5774,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":5946,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6000,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6071,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":6201,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6254,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6336,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6473,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6527,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6610,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6692,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":6822,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":6869,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7029,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7136,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":7247,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7295,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7482,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7531,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7617,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":7724,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":7770,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8032,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8079,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8240,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":8397,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8451,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8549,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8761,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8915,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":8992,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":9149,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9203,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9285,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9497,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9552,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9635,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9712,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":9958,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":9994,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10034,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10121,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10196,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10236,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10360,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10404,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10457,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":10589,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10632,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10690,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":10803,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10846,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":10887,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":11078,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11116,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11163,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":11418,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11461,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11574,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11644,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":11879,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11917,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":11963,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12060,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":12281,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12375,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":12599,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12635,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12687,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":12870,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12913,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/sdk/__test/walleterror.test.ts","start":12963,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/sdk/__test/walleterror.test.ts","start":13123,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[38,[{"file":"../src/sdk/certopswallet.ts","start":188,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[45,[{"file":"../src/sdk/index.ts","start":210,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[31,[{"file":"../src/sdk/privilegedkeymanager.ts","start":496,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[36,[{"file":"../src/sdk/types.ts","start":45,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[33,[{"file":"../src/sdk/walleterror.ts","start":98,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],35,[44,[{"file":"../src/sdk/walletservices.interfaces.ts","start":124,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[37,[{"file":"../src/sdk/walletsigner.interfaces.ts","start":30,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[185,[{"file":"../src/sdk/walletstorage.interfaces.ts","start":364,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[34,[{"file":"../src/sdk/werr_errors.ts","start":89,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[244,[{"file":"../src/services/__tests/arc.man.test.ts","start":180,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/arc.man.test.ts","start":302,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":334,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":627,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":848,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":892,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":948,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":1044,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":1140,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":1292,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.man.test.ts","start":1702,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":1827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":1862,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2181,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2307,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2373,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2427,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2466,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2507,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2905,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":2942,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3044,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3083,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3121,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3319,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3359,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3527,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3566,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.man.test.ts","start":3607,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[245,[{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":125,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":137,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":169,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":235,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":986,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":1194,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":1320,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":1401,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":2015,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":2174,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":2382,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arc.timeout.man.test.ts","start":2508,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[246,[{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":188,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":314,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":357,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":495,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":691,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":735,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":791,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":928,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1314,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1474,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1919,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":1985,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2039,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2078,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2119,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2517,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2554,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2656,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2695,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2733,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2890,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":2971,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":3139,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":3178,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/arcgorillapool.man.test.ts","start":3219,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[247,[{"file":"../src/services/__tests/arcservices.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/arcservices.test.ts","start":76,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/arcservices.test.ts","start":121,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/arcservices.test.ts","start":150,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[248,[{"file":"../src/services/__tests/bitrails.test.ts","start":164,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/bitrails.test.ts","start":201,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/bitrails.test.ts","start":230,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/bitrails.test.ts","start":509,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/bitrails.test.ts","start":553,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/bitrails.test.ts","start":1187,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[249,[{"file":"../src/services/__tests/getmerklepath.test.ts","start":47,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/getmerklepath.test.ts","start":92,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/getmerklepath.test.ts","start":121,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/getmerklepath.test.ts","start":384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/getmerklepath.test.ts","start":426,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[250,[{"file":"../src/services/__tests/getrawtx.test.ts","start":47,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/getrawtx.test.ts","start":92,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/getrawtx.test.ts","start":121,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/getrawtx.test.ts","start":357,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[251,[{"file":"../src/services/__tests/postbeef.test.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/postbeef.test.ts","start":205,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/postbeef.test.ts","start":255,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":284,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/postbeef.test.ts","start":446,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/postbeef.test.ts","start":695,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/postbeef.test.ts","start":1091,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":1137,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":5100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":5231,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":5268,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":5800,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":5932,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":6002,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":6060,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":6101,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/postbeef.test.ts","start":6180,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[252,[{"file":"../src/services/__tests/verifybeef.test.ts","start":28,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/__tests/verifybeef.test.ts","start":212,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/verifybeef.test.ts","start":251,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/__tests/verifybeef.test.ts","start":280,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/verifybeef.test.ts","start":3980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/verifybeef.test.ts","start":4010,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/__tests/verifybeef.test.ts","start":4429,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/verifybeef.test.ts","start":4730,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/__tests/verifybeef.test.ts","start":4766,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[254,[{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":138,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":190,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":219,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":342,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":591,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":772,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","start":953,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[255,[{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":154,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":207,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":236,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":385,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":478,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":554,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":744,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","start":837,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[156,[{"file":"../src/services/chaintracker/bhserviceclient.ts","start":43,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[263,[{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":580,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":620,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":649,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":938,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":1044,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":1150,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":1240,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","start":1330,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[264,[{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":1077,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":1126,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":1423,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":2745,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":2820,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":2953,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":2996,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3126,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3166,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3223,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3308,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3462,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3542,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3802,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3843,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":3980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4021,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4158,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4199,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4332,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4620,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4774,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4843,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":4988,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5040,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5195,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5265,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5423,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5558,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","start":5613,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[265,[{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":508,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":557,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":586,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1089,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1337,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1444,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1687,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1811,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","start":1909,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[262,[{"file":"../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","start":20,"length":9,"messageText":"Cannot find module 'express' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","start":47,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","start":69,"length":4,"messageText":"Cannot find module 'fs' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","start":91,"length":6,"messageText":"Cannot find module 'cors' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","start":115,"length":6,"messageText":"Cannot find module 'http' or its corresponding type declarations.","category":1,"code":2307}]],41,124,127,126,[42,[{"file":"../src/services/chaintracker/chaintracks/api/chaintracksclientapi.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[73,[{"file":"../src/services/chaintracker/chaintracks/api/chaintracksfetchapi.ts","start":27,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],70,78,125,[128,[{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":18656,"length":6,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'BlockHeader | undefined' is not assignable to parameter of type 'BlockHeader'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'BlockHeader'.","category":1,"code":2322}]}},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":18769,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":18786,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19172,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19189,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19380,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19588,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19605,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":19937,"length":6,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'BlockHeader | undefined' is not assignable to parameter of type 'BlockHeader'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'BlockHeader'.","category":1,"code":2322}]}},{"file":"../src/services/chaintracker/chaintracks/chaintracks.ts","start":20164,"length":6,"messageText":"'header' is possibly 'undefined'.","category":1,"code":18048}]],[216,[{"file":"../src/services/chaintracker/chaintracks/chaintracksservice.ts","start":101,"length":6,"messageText":"Cannot find module 'http' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/chaintracksservice.ts","start":151,"length":9,"messageText":"Cannot find module 'express' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/chaintracksservice.ts","start":184,"length":13,"messageText":"Cannot find module 'body-parser' or its corresponding type declarations.","category":1,"code":2307}]],43,153,[214,[{"file":"../src/services/chaintracker/chaintracks/createdefaultknexchaintracksoptions.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],150,154,[215,[{"file":"../src/services/chaintracker/chaintracks/createknexchaintracks.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],151,219,155,152,[257,[{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":613,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":664,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":693,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":792,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":860,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":901,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":946,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":1011,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":1110,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":1179,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":1220,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","start":1265,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[258,[{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/liveingestorwhatsonchainpoll.test.ts","start":196,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/liveingestorwhatsonchainpoll.test.ts","start":253,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/liveingestorwhatsonchainpoll.test.ts","start":282,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[259,[{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":624,"length":5,"messageText":"Cannot find module 'url' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":684,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":733,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":922,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1130,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1223,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1408,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1578,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":1977,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":2006,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":2043,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":2165,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":2335,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":3028,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":3065,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":3094,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":3144,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":3689,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4139,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4424,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4457,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4507,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4557,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4607,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4657,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","start":4707,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],129,131,132,145,217,130,256,146,218,[143,[{"file":"../src/services/chaintracker/chaintracks/ingest/whatsonchainingestorws.ts","start":22,"length":4,"messageText":"Cannot find module 'ws' or its corresponding type declarations.","category":1,"code":2307}]],144,[260,[{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":510,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":560,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":589,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":849,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":940,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2057,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2257,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2371,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2455,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2542,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2860,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":2970,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":3080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":3172,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","start":3304,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[261,[{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":306,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":357,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":386,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":1173,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":1369,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":1420,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":1459,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","start":1562,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[147,[{"file":"../src/services/chaintracker/chaintracks/storage/bulkstoragebase.ts","start":803,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[211,[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksknexmigrations.ts","start":77,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],[80,[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstoragebase.ts","start":769,"length":4,"messageText":"Cannot find module 'v8' or its corresponding type declarations.","category":1,"code":2307}]],[149,[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageidb.ts","start":825,"length":5,"messageText":"Cannot find module 'idb' or its corresponding type declarations.","category":1,"code":2307}]],[212,[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":21,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":7434,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":7686,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":7956,"length":1,"messageText":"'r' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":7987,"length":1,"messageText":"'r' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":9135,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":10205,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":10898,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":11762,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":12572,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":12869,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":13047,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":13517,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":13662,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":13940,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":14057,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":14669,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":14744,"length":27,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":14950,"length":30,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":15274,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683,"relatedInformation":[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","start":15248,"length":8,"messageText":"An outer value of 'this' is shadowed by this container.","category":3,"code":2738}]}]],[213,[{"file":"../src/services/chaintracker/chaintracks/storage/chaintracksstoragememory.ts","start":154,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],148,[267,[{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":570,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":618,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":1083,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2037,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2487,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2525,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2569,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2609,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2747,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2840,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2876,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":2931,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":3140,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":3509,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4025,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4227,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4368,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4467,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4659,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4773,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4872,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":4985,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5084,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5182,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5276,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5390,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5489,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5705,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5747,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5887,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":5984,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":6235,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":6605,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":6865,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":6909,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":7413,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":7502,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":7645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":7786,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":7918,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8049,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8180,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8311,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8354,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8527,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":8898,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9022,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9167,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9299,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9434,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9477,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","start":9642,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[268,[{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":310,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":355,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":384,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":719,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":750,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":803,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1036,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1142,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1215,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1481,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1659,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1732,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":1965,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":2075,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":2148,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":2381,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","start":2491,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[269,[{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":46,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":149,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":176,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":212,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":250,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":286,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":327,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":352,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":401,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":431,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":491,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":610,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":669,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":728,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":788,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":848,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":908,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":968,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1028,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1088,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1149,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1211,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1273,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1336,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1401,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1427,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1480,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1535,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1590,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1700,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1757,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1814,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1871,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1928,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":1985,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2099,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2154,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2212,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2271,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2331,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2360,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2416,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2474,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2532,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2590,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2649,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2709,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2769,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2828,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2887,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":2946,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":3005,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":3064,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":3125,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","start":3187,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[270,[{"file":"../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","start":1312,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","start":1368,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","start":1397,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","start":1484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[82,[{"file":"../src/services/chaintracker/chaintracks/util/blockheaderutilities.ts","start":98,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/blockheaderutilities.ts","start":12201,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[77,[{"file":"../src/services/chaintracker/chaintracks/util/bulkfiledatamanager.ts","start":202,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],266,[79,[{"file":"../src/services/chaintracker/chaintracks/util/bulkfilesreader.ts","start":387,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[81,[{"file":"../src/services/chaintracker/chaintracks/util/bulkheaderfile.ts","start":264,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/bulkheaderfile.ts","start":2074,"length":27,"messageText":"Type 'Uint8Array' is not generic.","category":1,"code":2315}]],[75,[{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfetch.ts","start":46,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[210,[{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","start":184,"length":4,"messageText":"Cannot find module 'fs' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","start":206,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","start":485,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","start":2193,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","start":4209,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],69,72,76,74,[140,[{"file":"../src/services/chaintracker/chaintrackschaintracker.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],220,157,253,135,243,[272,[{"file":"../src/services/providers/__tests/exchangerates.test.ts","start":300,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/exchangerates.test.ts","start":342,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/exchangerates.test.ts","start":371,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/exchangerates.test.ts","start":751,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[271,[{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":438,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":479,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":508,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":819,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":973,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":1653,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":1724,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":1878,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":2376,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":2447,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":2734,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":3748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":3902,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":4189,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":5739,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":5893,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6005,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6038,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6078,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6125,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6361,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6455,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6509,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6843,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6952,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":6994,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":7482,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":7816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":8509,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":8861,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":8953,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":9193,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":10052,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/services/providers/__tests/whatsonchain.test.ts","start":10384,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[137,[{"file":"../src/services/providers/arc.ts","start":140,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/services/providers/arc.ts","start":5000,"length":5,"messageText":"'txids' is possibly 'undefined'.","category":1,"code":18048}]],[138,[{"file":"../src/services/providers/bitails.ts","start":70,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],136,[139,[{"file":"../src/services/providers/getbeeffortxid.ts","start":71,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[133,[{"file":"../src/services/providers/sdkwhatsonchain.ts","start":80,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[142,[{"file":"../src/services/providers/whatsonchain.ts","start":71,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],134,[141,[{"file":"../src/services/services.ts","start":96,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[203,[{"file":"../src/setup.ts","start":39,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/setup.ts","start":382,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/setup.ts","start":1150,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/setup.ts","start":3894,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":3925,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":3998,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4030,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4100,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4131,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4181,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4238,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4337,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/setup.ts","start":4369,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[172,[{"file":"../src/setupclient.ts","start":257,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[196,[{"file":"../src/setupwallet.ts","start":65,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[186,[{"file":"../src/signer/methods/acquiredirectcertificate.ts","start":53,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/signer/methods/acquiredirectcertificate.ts","start":1187,"length":10,"code":2322,"category":1,"messageText":"Type 'unknown' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/storage/schema/tables/tablecertificatefield.ts","start":255,"length":10,"messageText":"The expected type comes from property 'fieldValue' which is declared here on type 'TableCertificateField'","category":3,"code":6500}]}]],[188,[{"file":"../src/signer/methods/buildsignabletransaction.ts","start":91,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/signer/methods/buildsignabletransaction.ts","start":2125,"length":13,"code":2339,"category":1,"messageText":"Property 'lockingScript' does not exist on type 'StorageCreateTransactionSdkOutput'."},{"file":"../src/signer/methods/buildsignabletransaction.ts","start":2201,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'StorageCreateTransactionSdkOutput'."},{"file":"../src/signer/methods/buildsignabletransaction.ts","start":6004,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'StorageCreateTransactionSdkOutput'."}]],[189,[{"file":"../src/signer/methods/completesignedtransaction.ts","start":76,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[190,[{"file":"../src/signer/methods/createaction.ts","start":174,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[192,[{"file":"../src/signer/methods/internalizeaction.ts","start":98,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[187,[{"file":"../src/signer/methods/provecertificate.ts","start":70,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[191,[{"file":"../src/signer/methods/signaction.ts","start":110,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[173,[{"file":"../src/signer/walletsigner.ts","start":30,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[174,[{"file":"../src/simplewalletmanager.ts","start":1289,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[276,[{"file":"../src/storage/__test/adminstats.man.test.ts","start":188,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/__test/adminstats.man.test.ts","start":298,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/adminstats.man.test.ts","start":345,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":442,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/__test/adminstats.man.test.ts","start":719,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":918,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":1010,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/adminstats.man.test.ts","start":1206,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":1254,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":1330,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/adminstats.man.test.ts","start":2524,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/adminstats.man.test.ts","start":2572,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[277,[{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":78,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1127,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1177,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1206,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1411,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1564,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1608,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/getbeeffortransaction.test.ts","start":1844,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[273,[{"file":"../src/storage/__test/storageidb.test.ts","start":27,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/__test/storageidb.test.ts","start":272,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/storageidb.test.ts","start":311,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/__test/storageidb.test.ts","start":340,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/storageidb.test.ts","start":603,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/storageidb.test.ts","start":635,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[274,[{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":205,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":231,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":280,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":387,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":612,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":818,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":2661,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":3130,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":3200,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":5023,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":5492,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":5562,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":6804,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":7472,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":7677,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/__test/walletstoragemanager.test.ts","start":7750,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],209,123,224,[281,[{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":110,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":398,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":441,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":470,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":996,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":1269,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":1847,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":2078,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":2656,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":2927,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":3908,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":4232,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":4803,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":5249,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":5872,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":6476,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":7033,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":7354,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":7967,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":8289,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":8903,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":9224,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":9846,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":10292,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":10923,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":11369,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":11837,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":12051,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":12611,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":13049,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":13528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":13966,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":14960,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":39259,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":39717,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":40087,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","start":40131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],280,[279,[{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":203,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":788,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":826,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":855,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":1288,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":1331,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":1380,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":1909,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":1952,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2071,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2109,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2465,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2500,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2670,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":2712,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":3197,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":3264,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":3535,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":6338,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":6759,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":6857,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":8530,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":9102,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":9153,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/methods/__test/offsetkey.test.ts","start":9250,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[57,[{"file":"../src/storage/methods/attempttopostreqstonetwork.ts","start":57,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[68,[{"file":"../src/storage/methods/createaction.ts","start":131,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/createaction.ts","start":4582,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":4679,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":8750,"length":16,"code":2339,"category":1,"messageText":"Property 'inputDescription' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":9584,"length":21,"code":2339,"category":1,"messageText":"Property 'unlockingScriptLength' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":10259,"length":8,"code":2339,"category":1,"messageText":"Property 'outpoint' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":10296,"length":8,"code":2339,"category":1,"messageText":"Property 'outpoint' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":10434,"length":21,"code":2339,"category":1,"messageText":"Property 'unlockingScriptLength' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":11176,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11214,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11242,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11302,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11451,"length":4,"code":2339,"category":1,"messageText":"Property 'tags' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11674,"length":13,"code":2339,"category":1,"messageText":"Property 'lockingScript' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":11902,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12134,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12461,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12495,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12578,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12695,"length":18,"code":2339,"category":1,"messageText":"Property 'customInstructions' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12745,"length":17,"code":2339,"category":1,"messageText":"Property 'outputDescription' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":12894,"length":4,"code":2339,"category":1,"messageText":"Property 'tags' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":14706,"length":63,"code":2322,"category":1,"messageText":{"messageText":"Type '{ vout: number; satoshis: any; lockingScript: string; providedBy: StorageProvidedBy; purpose: string | undefined; basket: string | undefined; tags: string[]; outputDescription: DescriptionString5to50Bytes; derivationSuffix: any; customInstructions: string | undefined; }' is not assignable to type 'StorageCreateTransactionSdkOutput'.","category":1,"code":2322,"next":[{"messageText":"Object literal may only specify known properties, and 'satoshis' does not exist in type 'StorageCreateTransactionSdkOutput'.","category":1,"code":2353}]}},{"file":"../src/storage/methods/createaction.ts","start":17382,"length":21,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ lockingScript: string; satoshis: number; outputDescription: string; basket: undefined; tags: never[]; vout: number; providedBy: \"storage\"; purpose: string; keyOffset: string; }' is not assignable to parameter of type 'XValidCreateActionOutput'.","category":1,"code":2345,"next":[{"messageText":"Object literal may only specify known properties, and 'lockingScript' does not exist in type 'XValidCreateActionOutput'.","category":1,"code":2353}]}},{"file":"../src/storage/methods/createaction.ts","start":19421,"length":8,"code":2339,"category":1,"messageText":"Property 'outpoint' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":21086,"length":8,"code":2339,"category":1,"messageText":"Property 'outpoint' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":25522,"length":21,"code":2339,"category":1,"messageText":"Property 'unlockingScriptLength' does not exist on type 'XValidCreateActionInput'."},{"file":"../src/storage/methods/createaction.ts","start":25617,"length":8,"code":2339,"category":1,"messageText":"Property 'satoshis' does not exist on type 'XValidCreateActionOutput'."},{"file":"../src/storage/methods/createaction.ts","start":25657,"length":13,"code":2339,"category":1,"messageText":"Property 'lockingScript' does not exist on type 'XValidCreateActionOutput'."}]],[64,[{"file":"../src/storage/methods/generatechange.ts","start":50,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[56,[{"file":"../src/storage/methods/getbeeffortransaction.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],92,[83,[{"file":"../src/storage/methods/internalizeaction.ts","start":152,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/internalizeaction.ts","start":4623,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '{ accepted: boolean; isMerge: false; txid: string; satoshis: number; }' is not assignable to type 'StorageInternalizeActionResult'.","category":1,"code":2322,"next":[{"messageText":"Object literal may only specify known properties, and 'accepted' does not exist in type 'StorageInternalizeActionResult'.","category":1,"code":2353}]}},{"file":"../src/storage/methods/internalizeaction.ts","start":17213,"length":4,"code":2339,"category":1,"messageText":"Property 'tags' does not exist on type 'BasketInsertionX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":17838,"length":17,"code":2339,"category":1,"messageText":"Property 'senderIdentityKey' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":17964,"length":16,"code":2339,"category":1,"messageText":"Property 'derivationPrefix' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":18015,"length":16,"code":2339,"category":1,"messageText":"Property 'derivationSuffix' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":18658,"length":17,"code":2339,"category":1,"messageText":"Property 'senderIdentityKey' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":18709,"length":16,"code":2339,"category":1,"messageText":"Property 'derivationPrefix' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":18759,"length":16,"code":2339,"category":1,"messageText":"Property 'derivationSuffix' does not exist on type 'WalletPaymentX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":19107,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'BasketInsertionX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":19181,"length":18,"code":2339,"category":1,"messageText":"Property 'customInstructions' does not exist on type 'BasketInsertionX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":19912,"length":6,"code":2339,"category":1,"messageText":"Property 'basket' does not exist on type 'BasketInsertionX'."},{"file":"../src/storage/methods/internalizeaction.ts","start":20047,"length":18,"code":2339,"category":1,"messageText":"Property 'customInstructions' does not exist on type 'BasketInsertionX'."}]],[116,[{"file":"../src/storage/methods/listactionsidb.ts","start":158,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[199,[{"file":"../src/storage/methods/listactionsknex.ts","start":158,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/listactionsknex.ts","start":1769,"length":28,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/listactionsknex.ts","start":4182,"length":23,"messageText":"Object is of type 'unknown'.","category":1,"code":2571}]],[115,[{"file":"../src/storage/methods/listactionsspecop.ts","start":27,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[62,[{"file":"../src/storage/methods/listcertificates.ts","start":92,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/listcertificates.ts","start":1682,"length":11,"code":2550,"category":1,"messageText":"Property 'fromEntries' does not exist on type 'ObjectConstructor'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2019' or later."},{"file":"../src/storage/methods/listcertificates.ts","start":1773,"length":11,"code":2550,"category":1,"messageText":"Property 'fromEntries' does not exist on type 'ObjectConstructor'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2019' or later."}]],[118,[{"file":"../src/storage/methods/listoutputsidb.ts","start":107,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[200,[{"file":"../src/storage/methods/listoutputsknex.ts","start":107,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/listoutputsknex.ts","start":2955,"length":32,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/listoutputsknex.ts","start":6188,"length":23,"messageText":"Object is of type 'unknown'.","category":1,"code":2571}]],[117,[{"file":"../src/storage/methods/listoutputsspecop.ts","start":46,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[67,[{"file":"../src/storage/methods/offsetkey.ts","start":93,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/offsetkey.ts","start":845,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/storage/methods/offsetkey.ts","start":340,"length":9,"messageText":"The expected type comes from property 'keyOffset' which is declared here on type '{ hashedSecret: BigNumber; keyOffset: string; }'","category":3,"code":6500}]}]],[61,[{"file":"../src/storage/methods/processaction.ts","start":185,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/processaction.ts","start":5005,"length":4,"code":2550,"category":1,"messageText":"Property 'flat' does not exist on type 'number[][]'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2019' or later."}]],[198,[{"file":"../src/storage/methods/purgedata.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/purgedata.ts","start":53,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/purgedata.ts","start":2044,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683},{"file":"../src/storage/methods/purgedata.ts","start":2087,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683},{"file":"../src/storage/methods/purgedata.ts","start":2167,"length":69,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":2943,"length":67,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":3298,"length":69,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":3774,"length":69,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":5110,"length":58,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":5841,"length":52,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":6979,"length":59,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":7287,"length":55,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":7469,"length":41,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":7646,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":7831,"length":49,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":8055,"length":54,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/purgedata.ts","start":8332,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347}]],[120,[{"file":"../src/storage/methods/purgedataidb.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/purgedataidb.ts","start":53,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],[201,[{"file":"../src/storage/methods/reviewstatus.ts","start":21,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/reviewstatus.ts","start":1704,"length":35,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/reviewstatus.ts","start":1855,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683},{"file":"../src/storage/methods/reviewstatus.ts","start":2311,"length":25,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/reviewstatus.ts","start":2452,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683},{"file":"../src/storage/methods/reviewstatus.ts","start":2943,"length":35,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/methods/reviewstatus.ts","start":3208,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683}]],[119,[{"file":"../src/storage/methods/reviewstatusidb.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/methods/reviewstatusidb.ts","start":53,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],[278,[{"file":"../src/storage/methods/utils.buffer.ts","start":166,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/utils.buffer.ts","start":175,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/utils.buffer.ts","start":193,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/utils.buffer.ts","start":500,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/utils.buffer.ts","start":641,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/methods/utils.buffer.ts","start":911,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],63,[282,[{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":56,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":405,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":447,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":573,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":837,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":974,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":1173,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":1204,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":1925,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":2020,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/remoting/__test/storageclient.test.ts","start":2807,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[112,[{"file":"../src/storage/remoting/storageclient.ts","start":272,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[223,[{"file":"../src/storage/remoting/storagemobile.ts","start":247,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[206,[{"file":"../src/storage/remoting/storageserver.ts","start":254,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/remoting/storageserver.ts","start":308,"length":9,"messageText":"Cannot find module 'express' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/remoting/storageserver.ts","start":378,"length":30,"messageText":"Cannot find module '@bsv/auth-express-middleware' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/remoting/storageserver.ts","start":449,"length":33,"messageText":"Cannot find module '@bsv/payment-express-middleware' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/remoting/storageserver.ts","start":10541,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[283,[{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":290,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":348,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":490,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":874,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":1046,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":1511,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":1605,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":2946,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":3075,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":3149,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":3715,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":3817,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":4537,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":4639,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":6183,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":6490,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":6582,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":7011,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":7085,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":8748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":8827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":8880,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9119,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9162,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9207,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9270,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9344,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9769,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":9845,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11481,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11612,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11851,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11896,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":11943,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12002,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12072,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12559,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12593,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12636,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12722,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12770,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12820,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12907,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":12976,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13031,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13459,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13493,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13536,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13598,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13645,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","start":13755,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[284,[{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":248,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":301,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":443,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":807,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":978,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":1381,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":1475,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":2309,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":2374,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":2805,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":2907,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":3630,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":3732,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":4662,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":5338,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":5421,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":5856,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":5930,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7474,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7553,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7599,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7651,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7713,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7835,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":7889,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8085,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8128,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8173,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8229,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8291,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8363,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8569,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":8629,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":10605,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":10689,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":10735,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":10839,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":10901,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11016,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11120,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11322,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11367,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11414,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11472,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11588,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11662,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11805,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11921,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":11984,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":12725,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":12792,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":12856,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":12920,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":12973,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13022,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13134,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13199,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13258,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13335,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13394,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13453,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13509,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":13561,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14203,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14248,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14312,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14376,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14412,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14458,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14510,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14564,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14682,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14804,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14846,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14880,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/certificatetests.test.ts","start":14932,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[285,[{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":272,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":324,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":466,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":826,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":1062,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":2490,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":2619,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":2755,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":5054,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":5299,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":5481,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7349,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7428,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7674,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7719,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":7859,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":9713,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":9797,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":9998,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10034,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10072,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10176,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10680,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10743,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10805,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10867,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10932,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":10983,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11099,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11167,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11222,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11275,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11324,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11726,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11768,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11830,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11892,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11935,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":11969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":12010,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":12057,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":12109,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/commissiontests.test.ts","start":12148,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[286,[{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":260,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":314,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":456,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":824,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":996,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2411,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2486,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2535,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2590,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2781,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2822,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2889,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":2948,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":3013,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":3067,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4463,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4543,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4592,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4646,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4841,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4882,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":4949,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":5008,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":5072,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":5127,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":5876,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":6080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":6148,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":7221,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":7423,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":7492,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":7969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8007,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8086,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8199,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8243,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8292,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8346,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8419,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8470,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8850,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8888,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":8967,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9046,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9127,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9176,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9230,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9270,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputbaskettests.test.ts","start":9355,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[287,[{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":292,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":346,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":488,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":856,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1028,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1360,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1405,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1493,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1539,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1586,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1643,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1930,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":1975,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":2017,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":2067,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":2117,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":2195,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":2269,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":3099,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":3167,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":4287,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":4406,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":4466,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":5666,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":5741,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":6186,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":6227,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":6270,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":6324,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":7526,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":7606,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":7809,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","start":7843,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[288,[{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":251,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":302,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":444,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":800,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":972,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2240,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2431,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2472,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2515,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":2569,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":3780,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":3860,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":4046,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":4080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":4128,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":4737,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":4796,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":5457,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":5517,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":6194,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":6254,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":6923,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":6991,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":7710,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":7770,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8256,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8300,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8343,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8431,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8470,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8562,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8597,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8648,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtagtests.test.ts","start":8791,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[289,[{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":242,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":290,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":432,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":777,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":1021,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":2238,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":2293,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":2412,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":3544,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":3687,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":4835,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":4985,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7054,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7129,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7166,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7207,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7244,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7281,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7327,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7370,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7430,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7494,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7546,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7609,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7650,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7773,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7789,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7800,"length":20,"messageText":"Type 'number[] | undefined' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":7861,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8067,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8108,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8151,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8202,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8343,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8350,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":8586,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":10186,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":10266,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":10460,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":10503,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":10604,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11496,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11613,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11675,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11726,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11791,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11846,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11899,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":11946,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12001,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12074,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12182,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12229,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12276,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12335,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12465,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12536,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12607,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12680,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12755,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12823,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":12886,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":13776,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":13814,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":13876,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":13938,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":13972,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14015,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14051,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14088,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14121,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14160,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14220,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14261,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14338,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14375,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14464,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14577,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14678,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14741,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14834,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14934,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":14966,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":15052,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/outputtests.test.ts","start":15097,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[290,[{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":319,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":372,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":514,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":878,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":1089,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":1528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":1595,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":1700,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":1776,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":2130,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":2667,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":2714,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":2808,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":3247,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":3365,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":4740,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":4888,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":6268,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":6391,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":7388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":7489,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":7995,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8043,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8096,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8149,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8196,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8249,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8339,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8428,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8477,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8514,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":8569,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9118,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9170,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9223,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9276,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9326,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9383,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9533,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9582,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9673,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9744,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":9781,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":10690,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxreqtests.test.ts","start":10770,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[291,[{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":277,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":327,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":469,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":821,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":993,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":1402,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":2570,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5183,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5223,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5304,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5351,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5358,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5429,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5485,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5538,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5593,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5637,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":5967,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":6009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":6054,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":6532,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":6574,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":6624,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7268,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7326,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7448,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7494,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7544,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7592,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7653,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7704,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":7760,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8328,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8368,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8442,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8516,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8615,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8653,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8688,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8803,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8857,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8949,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":8981,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":9030,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":9142,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":9242,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":10439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":10558,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":11291,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":11404,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":12149,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":12266,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":13015,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":13129,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":13954,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":14027,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":15161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":15213,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/proventxtests.test.ts","start":16114,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[296,[{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":196,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":252,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":321,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":473,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":610,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":898,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1033,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1284,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1330,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1476,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1635,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1736,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":1999,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2052,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2213,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2604,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2656,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":2764,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":3027,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":3131,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/stamplogtests.test.ts","start":3392,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[292,[{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":266,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":317,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":459,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":666,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":814,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":1441,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":1484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":1591,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":1695,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":2543,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":2666,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":3180,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":3236,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":3295,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":3405,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":3970,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":4106,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5435,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5470,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5590,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5691,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":5814,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6028,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6071,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6292,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6435,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6537,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6857,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":6951,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":7072,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":7455,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":7534,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":7827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":7945,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8093,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8151,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8227,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8346,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8544,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":8695,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/syncstatetests.test.ts","start":9016,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[293,[{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":21,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":49,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":317,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":370,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":512,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":876,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1137,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1263,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1300,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1330,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1359,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1401,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1435,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1467,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1503,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1541,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1578,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1619,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1666,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1713,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1784,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":1907,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2406,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2445,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2477,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2514,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2554,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2601,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2635,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2686,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2723,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2763,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2807,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2843,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":2914,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3449,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3488,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3520,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3557,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3597,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3644,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3678,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3729,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3766,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3806,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3850,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3886,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":3951,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4017,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4141,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4374,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4488,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4620,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4705,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":4933,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":5033,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6280,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6317,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6349,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":6966,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8065,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8224,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8442,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8551,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":8800,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10438,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10508,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10540,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10575,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10707,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":10856,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":11484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":11530,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":11676,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":12057,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":12189,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":12678,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":12785,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14020,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14094,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14126,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14240,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14383,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14511,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14590,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14723,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14801,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14908,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":14999,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":15098,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":15197,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":15297,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":15415,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":16760,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":16928,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18158,"length":4,"code":2550,"category":1,"messageText":"Property 'flat' does not exist on type 'TableOutput[][]'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2019' or later."},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18200,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18283,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18324,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18359,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18438,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":18586,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":20169,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":20282,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/transactiontests.test.ts","start":21633,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[294,[{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":360,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":405,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":677,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1104,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1389,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1522,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1567,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1608,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1653,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1708,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1763,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1842,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":1973,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2283,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2330,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2373,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2417,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2461,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2540,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2836,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2884,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2928,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":2972,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3016,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3100,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3191,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3339,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3427,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":3547,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4134,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4204,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4659,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4695,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4741,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4824,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":4923,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":5316,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":5377,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":5536,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":5640,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6248,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6361,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6482,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6584,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6721,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6824,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":6938,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":9840,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":9974,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","start":11206,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[295,[{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":245,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":287,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":559,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":974,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1256,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1377,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1415,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1450,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1485,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1527,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1579,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":1747,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2117,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2156,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2201,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2238,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2280,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2321,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2406,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2752,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2849,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2887,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":2968,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":3009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":3050,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":3174,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":4023,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":4056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":4116,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":4169,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":4251,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":5254,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":5324,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/txlabeltests.test.ts","start":6380,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[297,[{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":235,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":281,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":553,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":956,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1238,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1350,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1382,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1420,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1469,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1518,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1628,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":1976,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2062,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2182,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2562,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2597,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2649,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2687,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2725,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":2854,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":3790,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":3931,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":4895,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5043,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5473,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5539,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5582,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":5689,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6119,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6210,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6462,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6502,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6547,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6591,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6673,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6800,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6880,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":6962,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7039,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7123,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7240,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7878,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7907,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":7963,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":8095,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":8125,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":8284,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9031,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9062,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9185,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9838,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9867,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9923,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":9978,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":10106,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":10136,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":10235,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/storage/schema/entities/__tests/userstests.test.ts","start":10654,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],96,97,98,99,100,101,102,103,[55,[{"file":"../src/storage/schema/entities/entityproventx.ts","start":396,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],54,109,[104,[{"file":"../src/storage/schema/entities/entitytransaction.ts","start":511,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],105,106,107,110,108,[197,[{"file":"../src/storage/schema/knexmigrations.ts","start":76,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307}]],[114,[{"file":"../src/storage/schema/storageidbschema.ts","start":51,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],184,[84,[{"file":"../src/storage/schema/tables/tablecertificate.ts","start":67,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[85,[{"file":"../src/storage/schema/tables/tablecertificatefield.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],60,86,[39,[{"file":"../src/storage/schema/tables/tableoutput.ts","start":69,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],65,66,87,52,53,183,88,[59,[{"file":"../src/storage/schema/tables/tabletransaction.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],89,90,91,[121,[{"file":"../src/storage/storageidb.ts","start":85,"length":5,"messageText":"Cannot find module 'idb' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/storageidb.ts","start":156,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[202,[{"file":"../src/storage/storageknex.ts","start":65,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/storageknex.ts","start":579,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/storageknex.ts","start":2324,"length":92,"code":2739,"category":1,"messageText":"Type 'EntityTimeStamp' is missing the following properties from type 'TableSettings': storageIdentityKey, storageName, chain, dbtype, maxOutputScript"},{"file":"../src/storage/storageknex.ts","start":2367,"length":47,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":3076,"length":5,"code":2339,"category":1,"messageText":"Property 'rawTx' does not exist on type '{}'."},{"file":"../src/storage/storageknex.ts","start":3125,"length":9,"code":2339,"category":1,"messageText":"Property 'inputBEEF' does not exist on type '{}'."},{"file":"../src/storage/storageknex.ts","start":3800,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":4040,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":4202,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":4532,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":5013,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683,"relatedInformation":[{"file":"../src/storage/storageknex.ts","start":4993,"length":8,"messageText":"An outer value of 'this' is shadowed by this container.","category":3,"code":2738}]},{"file":"../src/storage/storageknex.ts","start":5827,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683,"relatedInformation":[{"file":"../src/storage/storageknex.ts","start":5807,"length":8,"messageText":"An outer value of 'this' is shadowed by this container.","category":3,"code":2738}]},{"file":"../src/storage/storageknex.ts","start":8739,"length":43,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":9073,"length":50,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":9396,"length":34,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":10202,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":10733,"length":54,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":11056,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":11402,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":11759,"length":46,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":12120,"length":38,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":12515,"length":45,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":12835,"length":52,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":13146,"length":41,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":13462,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":13739,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":14097,"length":45,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":14465,"length":59,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":14808,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":15157,"length":46,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":15481,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":15820,"length":38,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":16173,"length":52,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":16535,"length":45,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":16954,"length":50,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":17153,"length":50,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":17598,"length":43,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":17911,"length":45,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":18324,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":18527,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":19030,"length":48,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":19380,"length":41,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":19706,"length":34,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":19998,"length":51,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":20244,"length":29,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":37300,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":38514,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/storageknex.ts","start":38829,"length":41,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":39297,"length":45,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/storageknex.ts","start":45386,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[95,[{"file":"../src/storage/storageprovider.ts","start":289,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/storageprovider.ts","start":6537,"length":2,"messageText":"'tx' is possibly 'undefined'.","category":1,"code":18048}]],93,94,122,208,[207,[{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":34,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":66,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":3531,"length":1,"messageText":"'d' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":3577,"length":1,"messageText":"'d' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":3634,"length":1,"messageText":"'d' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":3673,"length":1,"messageText":"'d' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":4126,"length":29,"messageText":"Untyped function calls may not accept type arguments.","category":1,"code":2347},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":16126,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683,"relatedInformation":[{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":16106,"length":8,"messageText":"An outer value of 'this' is shadowed by this container.","category":3,"code":2738}]},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":17693,"length":4,"messageText":"'this' implicitly has type 'any' because it does not have a type annotation.","category":1,"code":2683,"relatedInformation":[{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":17673,"length":8,"messageText":"An outer value of 'this' is shadowed by this container.","category":3,"code":2738}]},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":23659,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":24312,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/storage/sync/storagemysqldojoreader.ts","start":24339,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[113,[{"file":"../src/storage/walletstoragemanager.ts","start":223,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/storage/walletstoragemanager.ts","start":27145,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":27716,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":27849,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":28242,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":28242,"length":7,"messageText":"'progLog' is possibly 'undefined'.","category":1,"code":18048},{"file":"../src/storage/walletstoragemanager.ts","start":30688,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":31032,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722},{"file":"../src/storage/walletstoragemanager.ts","start":31120,"length":7,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722}]],[298,[{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":69,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":121,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":150,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":285,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":316,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":411,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":491,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":572,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":663,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":704,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":821,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":947,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1027,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1108,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1199,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1240,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1357,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1388,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1518,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1598,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1685,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1773,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1871,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":1912,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2046,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2188,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2269,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2366,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/utility/__tests/utilityhelpers.nobuffer.test.ts","start":2465,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[58,[{"file":"../src/utility/aggregateresults.ts","start":57,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[275,[{"file":"../src/utility/format.ts","start":34,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[194,[{"file":"../src/utility/identityutils.ts","start":215,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],205,51,[49,[{"file":"../src/utility/parsetxscriptoffsets.ts","start":34,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[71,[{"file":"../src/utility/readeruint8array.ts","start":33,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[48,[{"file":"../src/utility/scripttemplatebrc29.ts","start":175,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],46,[50,[{"file":"../src/utility/tscprooftomerklepath.ts","start":27,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[204,[{"file":"../src/utility/utilityhelpers.buffer.ts","start":385,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":424,"length":14,"messageText":"Cannot find name 'BufferEncoding'.","category":1,"code":2304},{"file":"../src/utility/utilityhelpers.buffer.ts","start":441,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":459,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":472,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":542,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":589,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1042,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1081,"length":14,"messageText":"Cannot find name 'BufferEncoding'.","category":1,"code":2304},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1139,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1165,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1258,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1297,"length":14,"messageText":"Cannot find name 'BufferEncoding'.","category":1,"code":2304},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1388,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../src/utility/utilityhelpers.buffer.ts","start":1452,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[40,[{"file":"../src/utility/utilityhelpers.nobuffer.ts","start":22,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[47,[{"file":"../src/utility/utilityhelpers.ts","start":52,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/utility/utilityhelpers.ts","start":149,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/utility/utilityhelpers.ts","start":8055,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[299,[{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":370,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":568,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":632,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":724,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":811,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":878,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1290,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1333,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1403,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1519,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1560,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1608,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1664,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1786,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1833,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":1902,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../src/wab-client/__tests/wabclient.man.test.ts","start":2003,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],175,178,176,177,[179,[{"file":"../src/wab-client/wabclient.ts","start":414,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[195,[{"file":"../src/wallet.ts","start":1539,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[180,[{"file":"../src/walletauthenticationmanager.ts","start":269,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[111,[{"file":"../src/walletlogger.ts","start":96,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[181,[{"file":"../src/walletpermissionsmanager.ts","start":409,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../src/walletpermissionsmanager.ts","start":91184,"length":43,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":91406,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":91446,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":92249,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":92322,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":92361,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":92490,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":92895,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93294,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93398,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93449,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93492,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93536,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93611,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93652,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93719,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93792,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93837,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93915,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":93958,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":94027,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":94081,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":94128,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":94198,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":94629,"length":7,"messageText":"Spread types may only be created from object types.","category":1,"code":2698},{"file":"../src/walletpermissionsmanager.ts","start":94689,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":97014,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":97519,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":97610,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":97650,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":100317,"length":4,"messageText":"'args' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":100611,"length":41,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":100796,"length":42,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":100983,"length":42,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":101122,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":101168,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":101239,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":42512,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; label: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"apply\" | \"list\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":102949,"length":48,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":103164,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":103205,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":103487,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":104114,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":35748,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; basket: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"insertion\" | \"removal\" | \"listing\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":104208,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":104346,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":104691,"length":42,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":104897,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":104944,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":105427,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":35748,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; basket: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"insertion\" | \"removal\" | \"listing\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":105466,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":105828,"length":47,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":106039,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":106091,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":106388,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":35748,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; basket: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"insertion\" | \"removal\" | \"listing\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":106427,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":106664,"length":43,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":106762,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":106911,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":106970,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":107349,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":107394,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107439,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107485,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107537,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107622,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107792,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":107837,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":107959,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":108215,"length":59,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":108368,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":108411,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":108497,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":108546,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":108582,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":108841,"length":55,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":108990,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":109033,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109132,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109161,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109195,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109252,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109288,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109501,"length":38,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":109702,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":109752,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":110042,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":110085,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":110127,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":110172,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":110222,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":110411,"length":38,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":110612,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":110662,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":110952,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":110995,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111038,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111082,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111132,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111335,"length":41,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":111539,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111592,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":111882,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":111925,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":111968,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112012,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112062,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112262,"length":41,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":112466,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112519,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":112809,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":112852,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112895,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112939,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":112989,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":113199,"length":46,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":113408,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":113466,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":113766,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":113809,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":113852,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":113896,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":113946,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":114164,"length":46,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":114373,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":114431,"length":11,"code":2345,"category":1,"messageText":"Argument of type 'unknown' is not assignable to parameter of type 'object'."},{"file":"../src/walletpermissionsmanager.ts","start":114731,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":114774,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":114817,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":114861,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":114911,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":115135,"length":49,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":115343,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":115388,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":115464,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":115531,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":115764,"length":47,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":115966,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":116011,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116127,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116358,"length":47,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":116498,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":37962,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; verifier: string; certType: string; fields: string[]; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"disclosure\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":116541,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116582,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116620,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116665,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":116931,"length":52,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":117145,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":117292,"length":11,"messageText":"'requestArgs' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":117641,"length":52,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":117841,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":118226,"length":51,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":118425,"length":10,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":32211,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; reason?: string | undefined; seekPermission?: boolean | undefined; usageType: \"identityKey\" | \"signing\" | ... 4 more ... | \"generic\"; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":118798,"length":46,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":119013,"length":52,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":119232,"length":10,"code":2345,"category":1,"messageText":"Argument of type '{}' is not assignable to parameter of type 'string'."},{"file":"../src/walletpermissionsmanager.ts","start":119429,"length":10,"messageText":"'originator' is of type 'unknown'.","category":1,"code":18046},{"file":"../src/walletpermissionsmanager.ts","start":120264,"length":10,"code":2322,"category":1,"messageText":"Type 'unknown' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":85000,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; satoshis: number; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":120645,"length":10,"code":2322,"category":1,"messageText":"Type 'unknown' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":79641,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; protocolID: WalletProtocol; counterparty: string; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":121068,"length":10,"code":2322,"category":1,"messageText":"Type 'unknown' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":82814,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; basket: string; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":121370,"length":10,"code":2322,"category":1,"messageText":"Type 'unknown' is not assignable to type 'string'.","relatedInformation":[{"file":"../src/walletpermissionsmanager.ts","start":89001,"length":10,"messageText":"The expected type comes from property 'originator' which is declared here on type '{ originator: string; privileged: boolean; verifier: string; certType: string; fields: string[]; }'","category":3,"code":6500}]},{"file":"../src/walletpermissionsmanager.ts","start":123376,"length":40,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":123573,"length":49,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":123772,"length":41,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064},{"file":"../src/walletpermissionsmanager.ts","start":123955,"length":41,"messageText":"The return type of an async function or method must be the global Promise<T> type. Did you mean to write 'Promise<any>'?","category":1,"code":1064}]],[193,[{"file":"../src/walletsettingsmanager.ts","start":57,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307}]],[335,[{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":110,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":160,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":201,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":253,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":415,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":517,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":619,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":836,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":880,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":1168,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":1211,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":1677,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":1720,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":1761,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":2005,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":2135,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":2184,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":2213,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":2991,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/bsv-ts-sdk/localkvstore.test.ts","start":3023,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[300,[{"file":"../test/checkdb.ts","start":16,"length":7,"messageText":"Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/checkdb.ts","start":318,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[336,[{"file":"../test/examples/backup.man.test.ts","start":76,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/examples/backup.man.test.ts","start":102,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/examples/backup.man.test.ts","start":145,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/examples/backup.man.test.ts","start":174,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/examples/backup.man.test.ts","start":266,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/examples/backup.man.test.ts","start":348,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/examples/backup.man.test.ts","start":392,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/examples/backup.man.test.ts","start":475,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[337,[{"file":"../test/examples/pushdrop.test.ts","start":63,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/examples/pushdrop.test.ts","start":179,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/examples/pushdrop.test.ts","start":224,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/examples/pushdrop.test.ts","start":253,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[338,[{"file":"../test/monitor/monitor.test.ts","start":33,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/monitor/monitor.test.ts","start":1048,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":1084,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":1185,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":1532,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":1633,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":2512,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":2616,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":3219,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":3373,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":3414,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":3543,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":4645,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":4759,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":4874,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":5570,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6145,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6322,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6649,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6789,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6836,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":6986,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":7679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":8045,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":8222,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":8575,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":8752,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":8797,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":15022,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":15288,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":15431,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":15872,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":16074,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":16212,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":16374,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":17225,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":17912,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18474,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18517,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18615,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18781,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":18954,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":19267,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":19403,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":19448,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":19510,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":19649,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/monitor/monitor.test.ts","start":20702,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":20843,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":20898,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":21124,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":21302,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/monitor/monitor.test.ts","start":21352,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[339,[{"file":"../test/services/services.test.ts","start":28,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/services/services.test.ts","start":220,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":264,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":332,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":776,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":877,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":1358,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":1402,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":1458,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":1502,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":1564,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":2168,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":2212,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":2268,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":2312,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":2374,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":2956,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3000,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3100,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3162,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":3728,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3772,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3828,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3872,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":3934,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":4606,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":4650,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":4706,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":4750,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":4812,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":5492,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":5536,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":5593,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":5637,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":5743,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":6037,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":6126,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":6428,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":6487,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":6831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":6892,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":7272,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":7333,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":7418,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":7770,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":7821,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":7880,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":8354,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":8398,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":8470,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":8514,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":8655,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/services/services.test.ts","start":8913,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":8954,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9003,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9039,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9154,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9206,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9281,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/services/services.test.ts","start":9335,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[342,[{"file":"../test/storage/count.test.ts","start":189,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":223,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":431,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":1258,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":1363,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":1455,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":1531,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":1626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":1705,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":1793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":1865,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":1960,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2031,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2185,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2422,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2523,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":2623,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2834,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":2969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3057,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3152,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3246,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3384,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":3480,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3552,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3696,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3795,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":3890,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":3969,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4063,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4141,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4231,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4305,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4398,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4475,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4572,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4652,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4744,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4819,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":4914,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":4992,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":5089,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/count.test.ts","start":5169,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/count.test.ts","start":5263,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[343,[{"file":"../test/storage/find.test.ts","start":189,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":222,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":430,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":1253,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":1358,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":1449,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":1533,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":1627,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":1714,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":1801,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":1881,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":1975,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2054,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2242,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2343,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2521,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2630,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":2729,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2813,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":2980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3147,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3243,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3404,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3676,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":3771,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":3851,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4029,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4136,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":4230,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4317,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":4410,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4496,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":4585,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4667,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":4759,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":4844,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":4940,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":5028,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":5119,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":5202,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":5296,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":5382,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":5478,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/find.test.ts","start":5566,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/find.test.ts","start":5659,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[344,[{"file":"../test/storage/findlegacy.test.ts","start":74,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":107,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":209,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":416,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":517,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":607,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":700,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":739,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":785,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":836,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":883,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":929,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":974,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1200,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":1233,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":1332,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/findlegacy.test.ts","start":1380,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1424,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1472,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1515,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1561,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/findlegacy.test.ts","start":1609,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[348,[{"file":"../test/storage/idb/allocatechange.test.ts","start":379,"length":5,"messageText":"Cannot find module 'idb' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/idb/allocatechange.test.ts","start":386,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":435,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":600,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":2256,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":2364,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":2582,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":2622,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":2909,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":3161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":3225,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":3523,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":3779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":3843,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":4240,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":4496,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":4560,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":4956,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":5190,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":5447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":5511,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":5808,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":6064,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":6128,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":6424,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":6680,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":6744,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/allocatechange.test.ts","start":7050,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/allocatechange.test.ts","start":7310,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[349,[{"file":"../test/storage/idb/count.test.ts","start":250,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":288,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":453,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":836,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":944,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":1036,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1112,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":1207,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1286,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":1374,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1446,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":1541,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1612,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1766,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":1859,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2003,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2104,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":2204,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2280,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2415,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2550,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2638,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2733,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2827,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":2965,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":3061,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3277,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3376,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":3471,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3550,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":3644,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3722,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":3812,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":3886,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":3979,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":4056,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":4153,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":4233,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":4325,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":4400,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":4495,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":4573,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":4670,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/count.test.ts","start":4750,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/count.test.ts","start":4844,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[350,[{"file":"../test/storage/idb/find.test.ts","start":251,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":288,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":453,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":836,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":944,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":1035,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1119,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":1213,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1300,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":1387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1467,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":1561,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1640,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1828,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":1929,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2216,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":2315,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2399,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2566,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2733,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2829,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":2990,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3092,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3262,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":3357,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3437,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3615,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3722,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":3816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":3903,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":3996,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4082,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":4171,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4253,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":4345,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4430,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":4526,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4614,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":4705,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4788,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":4882,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":4968,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":5064,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/find.test.ts","start":5152,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/find.test.ts","start":5245,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[351,[{"file":"../test/storage/idb/idbspeed.test.ts","start":32,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/idb/idbspeed.test.ts","start":139,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/idbspeed.test.ts","start":176,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/idbspeed.test.ts","start":228,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/idbspeed.test.ts","start":340,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/idbspeed.test.ts","start":491,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/idbspeed.test.ts","start":769,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[352,[{"file":"../test/storage/idb/insert.test.ts","start":324,"length":5,"messageText":"Cannot find module 'idb' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/idb/insert.test.ts","start":331,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":370,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":505,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":830,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":1031,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":1171,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":1269,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":1517,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":1573,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":1722,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":1832,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2021,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2054,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":2210,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2523,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2574,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":2751,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":2823,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3070,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3128,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":3363,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3415,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3453,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3529,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3745,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":3795,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":3969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4062,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4295,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4348,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":4539,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4637,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4881,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":4939,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":5204,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":5301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":5634,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":5691,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":5935,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":5971,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6061,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6090,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6182,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6365,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6418,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":6642,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6678,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6716,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":6809,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":7013,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":7069,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":7419,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":7461,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":7547,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":7749,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":7968,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8004,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8135,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8337,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8391,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":8676,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8729,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":8813,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":9014,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":9183,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/insert.test.ts","start":9227,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/insert.test.ts","start":9452,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[353,[{"file":"../test/storage/idb/transactionabort.test.ts","start":332,"length":5,"messageText":"Cannot find module 'idb' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/idb/transactionabort.test.ts","start":339,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/transactionabort.test.ts","start":388,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":523,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":848,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":1049,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/transactionabort.test.ts","start":1222,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":1571,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":1705,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":1799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":1835,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/transactionabort.test.ts","start":2009,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":2356,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":2490,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":2583,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":2619,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/transactionabort.test.ts","start":2794,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":3157,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":3291,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/transactionabort.test.ts","start":3384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[354,[{"file":"../test/storage/idb/update.test.ts","start":722,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":761,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":926,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":1311,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":1419,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":1940,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":1993,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":2034,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":2108,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":3524,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":3746,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":4033,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":4255,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":4557,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":4779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":5107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":5329,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":5648,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":6631,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":7133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":7327,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":7547,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":7799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":7897,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":8234,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":8901,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":9406,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":9505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":9794,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":10732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":11234,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":11428,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":11640,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":11746,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":12039,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":12311,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/idb/update.test.ts","start":12421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":12519,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":12882,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":13751,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":14533,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":14632,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":14933,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":15692,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":16309,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":16415,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":16816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":16915,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":17207,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":18228,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":18892,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":18991,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":19287,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":19599,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":19838,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":19911,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":20739,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":21397,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":21544,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":21634,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":21928,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":24109,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":24743,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":24890,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":24980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":25230,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":26241,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":26816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":26922,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":27323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":27422,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":27714,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":28601,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":29281,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":29387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":29788,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":29887,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":30214,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":31286,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":31825,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":31927,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":32310,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":32403,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":32467,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":33657,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":34438,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":34537,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":34884,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":35504,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":36126,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":36225,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":36475,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/idb/update.test.ts","start":37607,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":38158,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":38260,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":38661,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":38819,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":38929,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/idb/update.test.ts","start":39012,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[345,[{"file":"../test/storage/insert.test.ts","start":229,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":264,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":401,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":1105,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":1210,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":1350,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":1448,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":1696,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":1752,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":1901,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2011,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2263,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2370,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2444,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":2600,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2691,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2913,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":2964,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":3141,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3239,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3486,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3544,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":3779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3869,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":3945,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":4161,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":4211,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":4385,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":4478,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":4711,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":4764,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":4955,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":5053,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":5297,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":5355,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":5620,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":5717,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6050,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6107,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":6351,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6425,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6477,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6598,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6781,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":6834,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":7058,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7094,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7132,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7225,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7429,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7485,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":7835,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7877,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":7963,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8165,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":8384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8420,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8458,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8551,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8753,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":8807,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":9092,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":9145,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":9229,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":9430,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":9599,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/insert.test.ts","start":9643,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/insert.test.ts","start":9868,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[340,[{"file":"../test/storage/knexmigrations.test.ts","start":147,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/knexmigrations.test.ts","start":155,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/knexmigrations.test.ts","start":198,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":293,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":623,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":904,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/knexmigrations.test.ts","start":1289,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":1409,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/knexmigrations.test.ts","start":1801,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":1875,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/knexmigrations.test.ts","start":2176,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":2230,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":2284,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/knexmigrations.test.ts","start":2319,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],341,[346,[{"file":"../test/storage/update.test.ts","start":604,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":639,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":762,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":908,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":1809,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":1915,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":2436,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":2489,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":2530,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":2604,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":4020,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":4242,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":4529,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":4751,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":5053,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":5275,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":5603,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":5825,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":6144,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":7127,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":7629,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":7823,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":8043,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":8315,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update.test.ts","start":8425,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":8523,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":8886,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":9553,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":10058,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":10157,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":10446,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":11384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":11886,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":12080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":12283,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":12370,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":12663,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":12935,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update.test.ts","start":13045,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":13143,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":13506,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":14375,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":15157,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":15256,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":15557,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":16316,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":16915,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":17002,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":17403,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":17502,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":17794,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":18815,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":19479,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":19578,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":19874,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":20182,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":20421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":20494,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":21322,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":21980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":22083,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update.test.ts","start":22159,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":22307,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":22601,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":24782,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":25416,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":25519,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update.test.ts","start":25595,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":25743,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":25993,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":27004,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":27561,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":27648,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":28049,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":28148,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":28440,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":29327,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":29989,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":30076,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":30477,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":30576,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":30903,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":31975,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":32496,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":32579,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":32962,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":33055,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":33119,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":34309,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":35090,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":35189,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":35536,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":36156,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":36778,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":36877,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":37127,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update.test.ts","start":38259,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":38792,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":38875,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":39229,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":39387,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":39497,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update.test.ts","start":39580,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[347,[{"file":"../test/storage/update2.test.ts","start":921,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/storage/update2.test.ts","start":929,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":1882,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":2093,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":2646,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":2699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":2740,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":2814,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":4262,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":4484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":4771,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":4993,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":5295,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":5517,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":5845,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":6067,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":6386,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":7836,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":7944,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":8074,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":8586,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":8700,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":8842,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":8884,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9074,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9256,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9369,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9408,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9521,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9634,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9673,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9794,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9907,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":9990,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":11025,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":11527,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":11721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":11941,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":12213,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update2.test.ts","start":12323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":12421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":12784,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":14264,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":14361,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":14480,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":15401,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":15567,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":15708,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":15918,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16231,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16479,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16536,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16724,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":16896,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":17591,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":18096,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":18195,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":18484,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":19857,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":19954,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":20073,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":20344,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":20658,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":20878,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":21101,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":21164,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":21463,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":21716,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":21779,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":22216,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22381,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22487,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22653,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22762,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22797,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22832,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":22933,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23112,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23216,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23325,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23360,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23395,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23595,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23630,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23665,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23812,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23921,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":23986,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24051,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24118,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24314,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24380,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24446,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24578,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24689,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24725,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":24761,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":25035,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":25214,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":25273,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":25340,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":26315,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":26817,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":27011,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":27214,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":27301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":27594,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":27866,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/storage/update2.test.ts","start":27976,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":28074,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":28437,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":29905,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":30002,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":30121,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":30542,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":31252,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":31518,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":31787,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":31850,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/storage/update2.test.ts","start":32240,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":32528,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":32799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/storage/update2.test.ts","start":33080,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[322,[{"file":"../test/utils/localwalletmethods.ts","start":211,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/localwalletmethods.ts","start":2767,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":3291,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4396,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4568,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4701,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4752,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4840,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4931,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":4982,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":5070,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":6302,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":6951,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":7156,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":7744,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":9627,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/localwalletmethods.ts","start":10349,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[237,[{"file":"../test/utils/testutilswalletstorage.ts","start":24,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/testutilswalletstorage.ts","start":50,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/testutilswalletstorage.ts","start":89,"length":4,"messageText":"Cannot find module 'fs' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/testutilswalletstorage.ts","start":133,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/testutilswalletstorage.ts","start":490,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/utils/testutilswalletstorage.ts","start":3117,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":4507,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":4551,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":4599,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":4899,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":4930,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5006,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5037,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5111,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5143,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5227,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5260,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5335,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5368,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5457,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5499,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5560,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5632,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5664,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5747,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5782,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5879,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":5919,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":6022,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":6062,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":8553,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":8594,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":8641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":8675,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":8712,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":8799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":9079,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":35294,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../test/utils/testutilswalletstorage.ts","start":34612,"length":7,"messageText":"The expected type comes from property 'subject' which is declared here on type '{ cert: WalletCertificate; subject: string; certifier: PrivateKey; }'","category":3,"code":6500}]},{"file":"../test/utils/testutilswalletstorage.ts","start":53678,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":61303,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":61347,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":61865,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":62867,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/utils/testutilswalletstorage.ts","start":64779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":64932,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":77945,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":78568,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":79181,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/utils/testutilswalletstorage.ts","start":79806,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[302,[{"file":"../test/wallet/action/abortaction.test.ts","start":32,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/abortaction.test.ts","start":187,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/abortaction.test.ts","start":227,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/abortaction.test.ts","start":290,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/action/abortaction.test.ts","start":319,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/action/abortaction.test.ts","start":347,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/abortaction.test.ts","start":1086,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[303,[{"file":"../test/wallet/action/createaction.test.ts","start":122,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createaction.test.ts","start":401,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":441,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":548,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":628,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":878,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":980,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":2046,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":2807,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":2908,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":3844,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":3889,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":3940,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":3978,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":4019,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":4114,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":4414,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":5815,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":5860,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":5911,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":5949,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":5989,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":6084,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":6993,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7042,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7142,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7194,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7246,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7284,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":7336,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":8079,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":8139,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":8184,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":8244,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":8318,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction.test.ts","start":9041,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":9101,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":9146,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction.test.ts","start":9206,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[304,[{"file":"../test/wallet/action/createaction2.test.ts","start":18,"length":7,"messageText":"Cannot find module 'chalk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createaction2.test.ts","start":41,"length":4,"messageText":"Cannot find module 'fs' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createaction2.test.ts","start":63,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createaction2.test.ts","start":283,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createaction2.test.ts","start":460,"length":9,"messageText":"Cannot find name '__dirname'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":701,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":757,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":879,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":926,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":1138,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":1228,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":2181,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":2608,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":3581,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":5131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":6273,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":6961,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":7006,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":7061,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":7329,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":8257,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":9112,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":9248,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":9364,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":10427,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":11144,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":11813,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":11862,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":12320,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":13140,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":13814,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":14446,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":14496,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":14545,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":14603,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":15319,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":15936,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":15979,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":16028,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":16139,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":16338,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":16439,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createaction2.test.ts","start":17177,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":17766,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":17809,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":17858,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":17969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":18120,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":18806,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":18916,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":19073,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":25345,"length":9,"messageText":"Cannot find name '__dirname'.","category":1,"code":2304},{"file":"../test/wallet/action/createaction2.test.ts","start":28655,"length":7,"code":2550,"category":1,"messageText":"Property 'trimEnd' does not exist on type 'string'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2019' or later."},{"file":"../test/wallet/action/createaction2.test.ts","start":45714,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580}]],[305,[{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":76,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":373,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":428,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":497,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":750,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":1115,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":1216,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":1817,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":1866,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":1966,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2018,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2070,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2108,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2228,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2368,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2511,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2581,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":2977,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3010,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3198,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3535,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3584,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3696,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3800,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3904,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3942,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":3980,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4018,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4138,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4491,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4789,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":4992,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5053,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5262,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5323,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5538,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5599,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":5929,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":6068,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":6950,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":6991,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":7038,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":7072,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":7109,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":7196,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":7480,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8773,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8820,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8854,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8890,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/createactiontogeneratebeefs.man.test.ts","start":8977,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[306,[{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":40,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":323,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":374,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":481,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":690,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":976,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":3839,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":5200,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":5346,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":8209,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":8534,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":9892,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":10038,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":10968,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.a.test.ts","start":11933,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[307,[{"file":"../test/wallet/action/internalizeaction.test.ts","start":85,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/internalizeaction.test.ts","start":275,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":321,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":459,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":726,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":828,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":1514,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":2766,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":3675,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":3819,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":3914,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":4016,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":4338,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":4506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":4685,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":4942,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":6445,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":7673,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":7835,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":7876,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":7983,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":8319,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":8498,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":8672,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":8713,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":8769,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":9105,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":9284,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":9474,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":9697,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":10399,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":10478,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":11383,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":11973,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12129,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12287,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12377,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12420,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12545,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":12768,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":13541,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":13621,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":13964,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":15041,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":15951,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16265,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16356,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16399,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16502,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16545,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16670,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":16893,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/internalizeaction.test.ts","start":17666,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":17746,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":18089,"length":6,"messageText":"Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/action/internalizeaction.test.ts","start":19740,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21349,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21505,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21663,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21754,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21797,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21845,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21900,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":21943,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22113,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22154,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22210,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22563,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22750,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22936,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":22977,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":23033,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":23386,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":23573,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/action/internalizeaction.test.ts","start":23715,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[308,[{"file":"../test/wallet/action/relinquishoutput.test.ts","start":37,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":293,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":342,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":444,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":651,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":752,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/action/relinquishoutput.test.ts","start":1164,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[309,[{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":141,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":282,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":329,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":358,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":448,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":477,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":505,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":1029,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":2698,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":2964,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":3082,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":3685,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":4012,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":4089,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":5969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":6235,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":6353,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":7040,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":7367,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":7777,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":8700,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":8846,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/acquirecertificate.test.ts","start":9199,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[310,[{"file":"../test/wallet/certificate/listcertificates.test.ts","start":68,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":362,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":413,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":469,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1026,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1211,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1282,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1322,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1358,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1388,"length":4,"messageText":"Cannot find namespace 'jest'.","category":1,"code":2503},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1823,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1845,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":1874,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2171,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2232,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2367,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2465,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":2556,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":4815,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":4876,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":4942,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5013,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5097,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5144,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5228,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5563,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":5902,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7357,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7423,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7494,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7625,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7671,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7722,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":7997,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8168,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8232,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8301,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8370,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":8943,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":9059,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":9120,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":9297,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":9391,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":11637,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/certificate/listcertificates.test.ts","start":11684,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[311,[{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":124,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":171,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":305,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":716,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":817,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":1121,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/construct/wallet.constructor.test.ts","start":1370,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[312,[{"file":"../test/wallet/get/getheaderforheight.test.ts","start":22,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":281,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":328,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":430,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":685,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":786,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1229,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1629,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1825,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1875,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":1924,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":2407,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":2478,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":2680,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":2726,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheaderforheight.test.ts","start":2776,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[313,[{"file":"../test/wallet/get/getheight.test.ts","start":163,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheight.test.ts","start":201,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/get/getheight.test.ts","start":289,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getheight.test.ts","start":579,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getheight.test.ts","start":680,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheight.test.ts","start":873,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheight.test.ts","start":919,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getheight.test.ts","start":974,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getheight.test.ts","start":1317,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[314,[{"file":"../test/wallet/get/getknowntxids.test.ts","start":116,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/get/getknowntxids.test.ts","start":128,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":170,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":272,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":487,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":863,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1030,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1124,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1421,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1523,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1745,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":1897,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2033,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2270,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2363,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2787,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2834,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/get/getknowntxids.test.ts","start":2857,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[315,[{"file":"../test/wallet/get/getnetwork.test.ts","start":77,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getnetwork.test.ts","start":123,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/get/getnetwork.test.ts","start":225,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getnetwork.test.ts","start":420,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getnetwork.test.ts","start":521,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getnetwork.test.ts","start":748,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[316,[{"file":"../test/wallet/get/getversion.test.ts","start":125,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getversion.test.ts","start":171,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/get/getversion.test.ts","start":273,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getversion.test.ts","start":468,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/get/getversion.test.ts","start":569,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/get/getversion.test.ts","start":724,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[317,[{"file":"../test/wallet/list/listactions.test.ts","start":32,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listactions.test.ts","start":240,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listactions.test.ts","start":278,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":318,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":597,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":675,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":712,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":976,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1077,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":1449,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":1689,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1730,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1829,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1872,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1916,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":1991,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":2287,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2326,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2381,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":2660,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2845,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2888,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2932,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":2985,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3088,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":3367,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3439,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3552,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3595,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3639,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3739,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":3836,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":4165,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4237,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4350,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4393,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4437,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4626,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":4691,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":5054,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5107,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":5374,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5446,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5559,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5636,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5733,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5818,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5878,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":5962,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":6384,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":6479,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":6801,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":6878,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":6922,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":6975,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7059,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7117,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7203,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":7583,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7660,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7704,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7757,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7841,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7899,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":7996,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions.test.ts","start":8378,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":8455,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":8499,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":8552,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":8636,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions.test.ts","start":8705,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[318,[{"file":"../test/wallet/list/listactions2.test.ts","start":21,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listactions2.test.ts","start":262,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":307,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":362,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":1297,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":1654,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":1744,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":2114,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":2191,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":2584,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":2661,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":3053,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":3130,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":3404,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":3692,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":3994,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":4071,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":4588,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":4665,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":5017,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":5574,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":5651,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":6198,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":6275,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":6836,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":6913,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":7310,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":7788,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":7865,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":8366,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":8443,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":8944,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":9675,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":10218,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":11001,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":11508,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":11585,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":12114,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":12191,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":12565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":13702,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":14216,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":16045,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":16641,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":16718,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":17233,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":17310,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":17732,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":17809,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":18336,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":18413,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":19062,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":19139,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":19685,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":19762,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":20515,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":20592,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":21298,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":21375,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":22167,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":23636,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":24677,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":24754,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":25650,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":26678,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":27881,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":27958,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":29131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":29208,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":30342,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":33007,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":33288,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":37497,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":44349,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":44401,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":46172,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":46529,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":46619,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":47133,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":47210,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":47874,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":47951,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":48615,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":48692,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":49203,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":49280,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":50066,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":50143,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":50840,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listactions2.test.ts","start":50917,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listactions2.test.ts","start":51615,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[319,[{"file":"../test/wallet/list/listcertificates.test.ts","start":37,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listcertificates.test.ts","start":192,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listcertificates.test.ts","start":237,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":339,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":546,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":647,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listcertificates.test.ts","start":1066,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listcertificates.test.ts","start":2056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":2135,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":2200,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listcertificates.test.ts","start":3160,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listcertificates.test.ts","start":3239,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[320,[{"file":"../test/wallet/list/listoutputs.test.ts","start":162,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listoutputs.test.ts","start":274,"length":6,"messageText":"Cannot find module 'path' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/list/listoutputs.test.ts","start":350,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":389,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":543,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":621,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":658,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":920,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":1021,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":2429,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":2523,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":3276,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3352,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":3565,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3637,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3757,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3812,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3862,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3905,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":3968,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":4459,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4531,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4573,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4651,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4706,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4756,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4799,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":4862,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":5292,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":5342,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":5393,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":5533,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":5610,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":5920,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":5977,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":6103,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":6182,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":6501,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":6570,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":6820,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":6883,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":7148,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":7191,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":7554,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":7605,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":7696,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":7957,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":8031,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":8149,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":8457,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":8537,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":8590,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":8693,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":9005,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9077,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9127,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9226,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9277,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9401,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":9759,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9831,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":9944,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":10131,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":10196,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":10720,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":10833,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":11086,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":11144,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":11714,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":11764,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":11816,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12097,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12147,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12192,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12278,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12368,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12458,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12743,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12838,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":12920,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13002,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13084,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13361,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13411,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13456,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13538,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13620,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13702,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":13798,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/list/listoutputs.test.ts","start":14237,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/list/listoutputs.test.ts","start":14655,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[321,[{"file":"../test/wallet/live/walletlive.man.test.ts","start":216,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/live/walletlive.man.test.ts","start":545,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/live/walletlive.man.test.ts","start":571,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":609,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":1545,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":1846,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/live/walletlive.man.test.ts","start":2169,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":2325,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":3073,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":4411,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":4633,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":5078,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":5412,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":9388,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":10490,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":10529,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":11359,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":11583,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":11642,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":12001,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":12122,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/live/walletlive.man.test.ts","start":12146,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":12804,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":13102,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":13549,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/live/walletlive.man.test.ts","start":14664,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[323,[{"file":"../test/wallet/local/localwallet.man.test.ts","start":476,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":516,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet.man.test.ts","start":612,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":779,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet.man.test.ts","start":911,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":1092,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet.man.test.ts","start":1694,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":1936,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":2213,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":2478,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":2870,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet.man.test.ts","start":2952,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet.man.test.ts","start":3545,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[324,[{"file":"../test/wallet/local/localwallet2.man.test.ts","start":75,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":513,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":733,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":774,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":803,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":1058,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":1252,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":1436,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":1678,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":1909,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2090,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2394,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2443,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2549,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2594,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":2682,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":3113,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":4852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":4933,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":5939,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":6984,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/local/localwallet2.man.test.ts","start":7334,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[325,[{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":160,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":305,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":345,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":374,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":957,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":1020,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":1813,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/signaction/mountaintop.man.test.ts","start":1955,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[326,[{"file":"../test/wallet/specops/specops.man.test.ts","start":29,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/specops/specops.man.test.ts","start":302,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":338,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":367,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":463,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":637,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":679,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":763,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":903,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":970,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":1135,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1170,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1252,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":1484,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1519,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1594,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":1780,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1815,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":1890,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":2434,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":2469,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":2506,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":2556,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":2860,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":3336,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":3386,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":3613,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":3822,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":3875,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":3963,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":4192,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":4245,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":4333,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":4587,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":4721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":4770,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":4861,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/specops/specops.man.test.ts","start":5140,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":5274,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/specops/specops.man.test.ts","start":5323,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[301,[{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":304,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":351,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":436,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":520,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":594,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":695,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1070,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1414,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1461,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1551,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1604,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/storageclient/storageclient.man.test.ts","start":1691,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[327,[{"file":"../test/wallet/support/janitor.man.test.ts","start":111,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/janitor.man.test.ts","start":147,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/support/janitor.man.test.ts","start":176,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[328,[{"file":"../test/wallet/support/operations.man.test.ts","start":79,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/support/operations.man.test.ts","start":418,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":461,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/support/operations.man.test.ts","start":490,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":2534,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":3648,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":4794,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":6750,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":9021,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":9979,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":10371,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/support/operations.man.test.ts","start":10607,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":12370,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":13480,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/operations.man.test.ts","start":14809,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/support/operations.man.test.ts","start":15496,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[329,[{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":34,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":348,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":568,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":626,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":698,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":927,"length":9,"messageText":"Cannot find name '__dirname'.","category":1,"code":2304},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":1979,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":2426,"length":9,"messageText":"Cannot find name '__dirname'.","category":1,"code":2304},{"file":"../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","start":6243,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[332,[{"file":"../test/wallet/sync/setactive.test.ts","start":17,"length":6,"messageText":"Cannot find module 'knex' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/sync/setactive.test.ts","start":423,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/setactive.test.ts","start":461,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":832,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":879,"length":10,"messageText":"Cannot find name 'beforeEach'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":1615,"length":9,"messageText":"Cannot find name 'afterEach'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":1752,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/setactive.test.ts","start":2058,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":2105,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":2226,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":2280,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":2357,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/setactive.test.ts","start":3177,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":3292,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/setactive.test.ts","start":4415,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/setactive.test.ts","start":4529,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[330,[{"file":"../test/wallet/sync/wallet.sync.test.ts","start":269,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":309,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":377,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":406,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":434,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1358,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1404,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1507,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1539,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1720,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1752,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":1856,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":2577,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":3571,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":3923,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4045,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4447,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4589,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4657,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4744,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":4812,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5013,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5079,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5158,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5456,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5533,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5608,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5674,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":5745,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":6086,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":6819,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":6896,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":6971,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":7039,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":7112,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.sync.test.ts","start":7453,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[331,[{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":563,"length":8,"messageText":"Cannot find module 'dotenv' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":614,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":882,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":922,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":951,"length":9,"messageText":"Cannot find name 'beforeAll'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":980,"length":8,"messageText":"Cannot find name 'afterAll'.","category":1,"code":2304},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":1515,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":1720,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":2297,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":2641,"length":7,"messageText":"Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.","category":1,"code":2580},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":3160,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":4119,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":4774,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":5647,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","start":6417,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582}]],[333,[{"file":"../test/walletclient/localkvstore.man.test.ts","start":43,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/walletclient/localkvstore.man.test.ts","start":371,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/localkvstore.man.test.ts","start":412,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":441,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/localkvstore.man.test.ts","start":760,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":871,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":969,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1041,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1107,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1173,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1256,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1325,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1643,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1754,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1852,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1924,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":1990,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2056,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2139,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2208,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2512,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2623,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2721,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2793,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2859,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":2925,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3008,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3049,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3352,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3463,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3561,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3633,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3699,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3765,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/localkvstore.man.test.ts","start":3848,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]],[334,[{"file":"../test/walletclient/werr.man.test.ts","start":64,"length":10,"messageText":"Cannot find module '@bsv/sdk' or its corresponding type declarations.","category":1,"code":2307},{"file":"../test/walletclient/werr.man.test.ts","start":311,"length":8,"messageText":"Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/werr.man.test.ts","start":348,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"file":"../test/walletclient/werr.man.test.ts","start":377,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/werr.man.test.ts","start":735,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/werr.man.test.ts","start":861,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/werr.man.test.ts","start":910,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304},{"file":"../test/walletclient/werr.man.test.ts","start":967,"length":4,"messageText":"Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.","category":1,"code":2582},{"file":"../test/walletclient/werr.man.test.ts","start":7546,"length":6,"messageText":"Cannot find name 'expect'.","category":1,"code":2304}]]],"affectedFilesPendingEmit":[[2,1],[3,1],[4,1],[5,1],[30,1],[227,1],[229,1],[230,1],[231,1],[228,1],[232,1],[233,1],[234,1],[235,1],[236,1],[32,1],[222,1],[182,1],[225,1],[226,1],[238,1],[171,1],[221,1],[163,1],[169,1],[164,1],[162,1],[166,1],[165,1],[159,1],[167,1],[160,1],[168,1],[161,1],[170,1],[158,1],[239,1],[240,1],[242,1],[241,1],[38,1],[45,1],[31,1],[36,1],[33,1],[35,1],[44,1],[37,1],[185,1],[34,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[252,1],[254,1],[255,1],[156,1],[263,1],[264,1],[265,1],[262,1],[41,1],[124,1],[127,1],[126,1],[42,1],[73,1],[70,1],[78,1],[125,1],[128,1],[216,1],[43,1],[153,1],[214,1],[150,1],[154,1],[215,1],[151,1],[219,1],[155,1],[152,1],[257,1],[258,1],[259,1],[129,1],[131,1],[132,1],[145,1],[217,1],[130,1],[256,1],[146,1],[218,1],[143,1],[144,1],[260,1],[261,1],[147,1],[211,1],[80,1],[149,1],[212,1],[213,1],[148,1],[267,1],[268,1],[269,1],[270,1],[82,1],[77,1],[266,1],[79,1],[81,1],[75,1],[210,1],[69,1],[72,1],[76,1],[74,1],[140,1],[220,1],[157,1],[253,1],[135,1],[243,1],[272,1],[271,1],[137,1],[138,1],[136,1],[139,1],[133,1],[142,1],[134,1],[141,1],[203,1],[172,1],[196,1],[186,1],[188,1],[189,1],[190,1],[192,1],[187,1],[191,1],[173,1],[174,1],[276,1],[277,1],[273,1],[274,1],[209,1],[123,1],[224,1],[281,1],[280,1],[279,1],[57,1],[68,1],[64,1],[56,1],[92,1],[83,1],[116,1],[199,1],[115,1],[62,1],[118,1],[200,1],[117,1],[67,1],[61,1],[198,1],[120,1],[201,1],[119,1],[278,1],[63,1],[282,1],[112,1],[223,1],[206,1],[283,1],[284,1],[285,1],[286,1],[287,1],[288,1],[289,1],[290,1],[291,1],[296,1],[292,1],[293,1],[294,1],[295,1],[297,1],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[55,1],[54,1],[109,1],[104,1],[105,1],[106,1],[107,1],[110,1],[108,1],[197,1],[114,1],[184,1],[84,1],[85,1],[60,1],[86,1],[39,1],[65,1],[66,1],[87,1],[52,1],[53,1],[183,1],[88,1],[59,1],[89,1],[90,1],[91,1],[121,1],[202,1],[95,1],[93,1],[94,1],[122,1],[208,1],[207,1],[113,1],[298,1],[58,1],[275,1],[194,1],[205,1],[51,1],[49,1],[71,1],[48,1],[46,1],[50,1],[204,1],[40,1],[47,1],[299,1],[175,1],[178,1],[176,1],[177,1],[179,1],[195,1],[180,1],[111,1],[181,1],[193,1],[335,1],[300,1],[336,1],[337,1],[338,1],[339,1],[342,1],[343,1],[344,1],[348,1],[349,1],[350,1],[351,1],[352,1],[353,1],[354,1],[345,1],[340,1],[341,1],[346,1],[347,1],[322,1],[237,1],[302,1],[303,1],[304,1],[305,1],[306,1],[307,1],[308,1],[309,1],[310,1],[311,1],[312,1],[313,1],[314,1],[315,1],[316,1],[317,1],[318,1],[319,1],[320,1],[321,1],[323,1],[324,1],[325,1],[326,1],[301,1],[327,1],[328,1],[329,1],[332,1],[330,1],[331,1],[333,1],[334,1]],"emitSignatures":[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,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,253,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,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354]},"version":"4.9.5"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2018.full.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/mersenne.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/reductioncontext.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/bignumber.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/basepoint.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/jacobianpoint.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/point.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/curve.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/signature.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/polynomial.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/privatekey.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/publickey.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/symmetrickey.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/ecdsa.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/utils.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/hash.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/random.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/scriptchunk.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/script.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/unlockingscript.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/lockingscript.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/transactionoutput.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/feemodel.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcaster.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/chaintracker.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/merklepath.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/transaction.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/transactioninput.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/transactionsignature.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/schnorr.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/secp256r1.d.ts","../node_modules/@bsv/sdk/dist/types/src/primitives/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/op.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/spend.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/scripttemplateunlock.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/scriptevaluationerror.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/scripttemplate.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/templates/p2pkh.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/templates/rpuzzle.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/wallet.interfaces.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/beeftx.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/beef.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/beefparty.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/templates/pushdrop.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/templates/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/script/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/fee-models/satoshisperkilobyte.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/fee-models/livepolicy.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/fee-models/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/httpclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcasters/arc.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcasters/whatsonchainbroadcaster.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/defaulthttpclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/binaryfetchclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/nodejshttpclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/fetchhttpclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/http/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcasters/teranode.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcasters/defaultbroadcaster.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/broadcasters/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/chaintrackers/whatsonchain.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/chaintrackers/blockheadersservice.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/chaintrackers/defaultchaintracker.d.ts","../node_modules/@bsv/sdk/dist/types/src/transaction/chaintrackers/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/messages/signedmessage.d.ts","../node_modules/@bsv/sdk/dist/types/src/messages/encryptedmessage.d.ts","../node_modules/@bsv/sdk/dist/types/src/messages/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/bsm.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/hd.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/mnemonic.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/ecies.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/utxo.d.ts","../node_modules/@bsv/sdk/dist/types/src/compat/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/totp/totp.d.ts","../node_modules/@bsv/sdk/dist/types/src/totp/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/keyderiver.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/cachedkeyderiver.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/protowallet.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/walletclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/walleterror.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/werr_review_actions.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/werr_invalid_parameter.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/werr_insufficient_funds.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/walletloggerinterface.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/validationhelpers.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/window.cwi.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/walletwirecalls.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/xdm.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/walletwire.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/walletwiretransceiver.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/walletwireprocessor.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/httpwalletwire.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/httpwalletjson.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/reactnativewebview.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/substrates/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/wallet/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/certificates/certificate.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/certificates/mastercertificate.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/certificates/verifiablecertificate.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/certificates/__tests/completedprotowallet.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/certificates/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/types.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/sessionmanager.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/peer.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/utils/verifynonce.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/utils/createnonce.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/utils/getverifiablecertificates.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/utils/validatecertificates.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/utils/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/clients/authfetch.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/clients/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/transports/simplifiedfetchtransport.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/transports/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/auth/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/overlay-tools/lookupresolver.d.ts","../node_modules/@bsv/sdk/dist/types/src/overlay-tools/shipbroadcaster.d.ts","../node_modules/@bsv/sdk/dist/types/src/overlay-tools/withdoublespendretry.d.ts","../node_modules/@bsv/sdk/dist/types/src/overlay-tools/overlayadmintokentemplate.d.ts","../node_modules/@bsv/sdk/dist/types/src/overlay-tools/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/storage/storageutils.d.ts","../node_modules/@bsv/sdk/dist/types/src/storage/storageuploader.d.ts","../node_modules/@bsv/sdk/dist/types/src/storage/storagedownloader.d.ts","../node_modules/@bsv/sdk/dist/types/src/storage/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/identity/types/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/identity/contactsmanager.d.ts","../node_modules/@bsv/sdk/dist/types/src/identity/identityclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/identity/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/registry/types/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/registry/registryclient.d.ts","../node_modules/@bsv/sdk/dist/types/src/registry/index.d.ts","../node_modules/@bsv/sdk/dist/types/src/kvstore/localkvstore.d.ts","../node_modules/@bsv/sdk/dist/types/src/kvstore/types.d.ts","../node_modules/@bsv/sdk/dist/types/src/kvstore/globalkvstore.d.ts","../node_modules/@bsv/sdk/dist/types/src/kvstore/index.d.ts","../node_modules/@bsv/sdk/dist/types/mod.d.ts","../src/sdk/privilegedkeymanager.ts","../src/cwistylewalletmanager.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/tarn/dist/promiseinspection.d.ts","../node_modules/tarn/dist/utils.d.ts","../node_modules/tarn/dist/pendingoperation.d.ts","../node_modules/tarn/dist/resource.d.ts","../node_modules/tarn/dist/pool.d.ts","../node_modules/tarn/dist/timeouterror.d.ts","../node_modules/tarn/dist/tarn.d.ts","../node_modules/knex/types/result.d.ts","../node_modules/knex/types/tables.d.ts","../node_modules/knex/types/index.d.ts","../src/sdk/walleterror.ts","../src/sdk/werr_errors.ts","../src/sdk/walleterrorfromjson.ts","../src/sdk/types.ts","../src/sdk/walletsigner.interfaces.ts","../src/sdk/certopswallet.ts","../src/storage/schema/tables/tableoutput.ts","../src/utility/utilityhelpers.nobuffer.ts","../src/services/chaintracker/chaintracks/api/blockheaderapi.ts","../src/services/chaintracker/chaintracks/api/chaintracksclientapi.ts","../src/services/chaintracker/chaintracks/chaintracksserviceclient.ts","../src/sdk/walletservices.interfaces.ts","../src/sdk/index.ts","../src/utility/stamplog.ts","../src/utility/utilityhelpers.ts","../src/utility/scripttemplatebrc29.ts","../src/utility/parsetxscriptoffsets.ts","../src/utility/tscprooftomerklepath.ts","../src/utility/index.client.ts","../src/storage/schema/tables/tableproventx.ts","../src/storage/schema/tables/tableproventxreq.ts","../src/storage/schema/entities/entityproventxreq.ts","../src/storage/schema/entities/entityproventx.ts","../src/storage/methods/getbeeffortransaction.ts","../src/storage/methods/attempttopostreqstonetwork.ts","../src/utility/aggregateresults.ts","../src/storage/schema/tables/tabletransaction.ts","../src/storage/schema/tables/tablecommission.ts","../src/storage/methods/processaction.ts","../src/storage/methods/listcertificates.ts","../src/storage/methods/utils.ts","../src/storage/methods/generatechange.ts","../src/storage/schema/tables/tableoutputbasket.ts","../src/storage/schema/tables/tableoutputtag.ts","../src/storage/methods/offsetkey.ts","../src/storage/methods/createaction.ts","../src/services/chaintracker/chaintracks/util/dirtyhashes.ts","../src/services/chaintracker/chaintracks/api/chaintracksfsapi.ts","../src/utility/readeruint8array.ts","../src/services/chaintracker/chaintracks/util/heightrange.ts","../src/services/chaintracker/chaintracks/api/chaintracksfetchapi.ts","../src/services/chaintracker/chaintracks/util/validbulkheaderfilesbyfilehash.ts","../src/services/chaintracker/chaintracks/util/chaintracksfetch.ts","../src/services/chaintracker/chaintracks/util/singlewritermultireaderlock.ts","../src/services/chaintracker/chaintracks/util/bulkfiledatamanager.ts","../src/services/chaintracker/chaintracks/api/chaintracksstorageapi.ts","../src/services/chaintracker/chaintracks/util/bulkfilesreader.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragebase.ts","../src/services/chaintracker/chaintracks/util/bulkheaderfile.ts","../src/services/chaintracker/chaintracks/util/blockheaderutilities.ts","../src/storage/methods/internalizeaction.ts","../src/storage/schema/tables/tablecertificate.ts","../src/storage/schema/tables/tablecertificatefield.ts","../src/storage/schema/tables/tablemonitorevent.ts","../src/storage/schema/tables/tableoutputtagmap.ts","../src/storage/schema/tables/tablesyncstate.ts","../src/storage/schema/tables/tabletxlabel.ts","../src/storage/schema/tables/tabletxlabelmap.ts","../src/storage/schema/tables/tableuser.ts","../src/storage/methods/getsyncchunk.ts","../src/storage/storagereader.ts","../src/storage/storagereaderwriter.ts","../src/storage/storageprovider.ts","../src/storage/schema/entities/entitybase.ts","../src/storage/schema/entities/entitycertificate.ts","../src/storage/schema/entities/entitycertificatefield.ts","../src/storage/schema/entities/entitycommission.ts","../src/storage/schema/entities/entityoutput.ts","../src/storage/schema/entities/entityoutputbasket.ts","../src/storage/schema/entities/entityoutputtag.ts","../src/storage/schema/entities/entityoutputtagmap.ts","../src/storage/schema/entities/entitytransaction.ts","../src/storage/schema/entities/entitytxlabel.ts","../src/storage/schema/entities/entitytxlabelmap.ts","../src/storage/schema/entities/entityuser.ts","../src/storage/schema/entities/mergeentity.ts","../src/storage/schema/entities/entitysyncstate.ts","../src/storage/schema/entities/index.ts","../src/walletlogger.ts","../src/storage/remoting/storageclient.ts","../src/storage/walletstoragemanager.ts","../node_modules/idb/build/wrap-idb-value.d.ts","../node_modules/idb/build/entry.d.ts","../node_modules/idb/build/database-extras.d.ts","../node_modules/idb/build/async-iterators.d.ts","../node_modules/idb/build/index.d.ts","../src/storage/schema/storageidbschema.ts","../src/storage/methods/listactionsspecop.ts","../src/storage/methods/listactionsidb.ts","../src/storage/methods/listoutputsspecop.ts","../src/storage/methods/listoutputsidb.ts","../src/storage/methods/reviewstatusidb.ts","../src/storage/methods/purgedataidb.ts","../src/storage/storageidb.ts","../src/storage/storagesyncreader.ts","../src/storage/index.client.ts","../src/services/chaintracker/chaintracks/api/bulkingestorapi.ts","../src/services/chaintracker/chaintracks/api/liveingestorapi.ts","../src/services/chaintracker/chaintracks/api/chaintracksapi.ts","../src/services/chaintracker/chaintracks/api/bulkstorageapi.ts","../src/services/chaintracker/chaintracks/chaintracks.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorbase.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorbase.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorcdn.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorcdnbabbage.ts","../src/services/providers/sdkwhatsonchain.ts","../src/services/servicecollection.ts","../src/services/createdefaultwalletservicesoptions.ts","../src/services/providers/exchangerates.ts","../src/services/providers/arc.ts","../src/services/providers/bitails.ts","../src/services/providers/getbeeffortxid.ts","../src/services/chaintracker/chaintrackschaintracker.ts","../src/services/services.ts","../src/services/providers/whatsonchain.ts","../src/services/chaintracker/chaintracks/ingest/whatsonchainingestorws.ts","../src/services/chaintracker/chaintracks/ingest/whatsonchainservices.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorwhatsonchaincdn.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorwhatsonchainpoll.ts","../src/services/chaintracker/chaintracks/storage/bulkstoragebase.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragenodb.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstorageidb.ts","../src/services/chaintracker/chaintracks/createdefaultnodbchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createnodbchaintracks.ts","../src/services/chaintracker/chaintracks/index.mobile.ts","../src/services/chaintracker/chaintracks/createdefaultidbchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createidbchaintracks.ts","../src/services/chaintracker/chaintracks/index.client.ts","../src/services/chaintracker/bhserviceclient.ts","../src/services/chaintracker/index.client.ts","../src/monitor/tasks/walletmonitortask.ts","../src/monitor/tasks/taskpurge.ts","../src/monitor/tasks/taskreviewstatus.ts","../src/monitor/tasks/tasksyncwhenidle.ts","../src/monitor/tasks/taskfailabandoned.ts","../src/monitor/tasks/taskcheckforproofs.ts","../src/monitor/tasks/taskclock.ts","../src/monitor/tasks/tasknewheader.ts","../src/monitor/tasks/taskmonitorcallhistory.ts","../src/monitor/tasks/taskreorg.ts","../src/monitor/tasks/tasksendwaiting.ts","../src/monitor/tasks/taskchecknosends.ts","../src/monitor/tasks/taskunfail.ts","../src/monitor/monitor.ts","../src/setupclient.ts","../src/signer/walletsigner.ts","../src/simplewalletmanager.ts","../src/wab-client/auth-method-interactors/authmethodinteractor.ts","../src/wab-client/auth-method-interactors/personaidinteractor.ts","../src/wab-client/auth-method-interactors/twiliophoneinteractor.ts","../src/wab-client/auth-method-interactors/devconsoleinteractor.ts","../src/wab-client/wabclient.ts","../src/walletauthenticationmanager.ts","../src/walletpermissionsmanager.ts","../src/index.client.ts","../src/storage/schema/tables/tablesettings.ts","../src/storage/schema/tables/index.ts","../src/sdk/walletstorage.interfaces.ts","../src/signer/methods/acquiredirectcertificate.ts","../src/signer/methods/provecertificate.ts","../src/signer/methods/buildsignabletransaction.ts","../src/signer/methods/completesignedtransaction.ts","../src/signer/methods/createaction.ts","../src/signer/methods/signaction.ts","../src/signer/methods/internalizeaction.ts","../src/walletsettingsmanager.ts","../src/utility/identityutils.ts","../src/wallet.ts","../src/setupwallet.ts","../src/storage/schema/knexmigrations.ts","../src/storage/methods/purgedata.ts","../src/storage/methods/listactionsknex.ts","../src/storage/methods/listoutputsknex.ts","../src/storage/methods/reviewstatus.ts","../src/storage/storageknex.ts","../node_modules/dotenv/lib/main.d.ts","../src/setup.ts","../src/utility/utilityhelpers.buffer.ts","../src/utility/index.all.ts","../node_modules/@bsv/auth-express-middleware/dist/types/src/index.d.ts","../node_modules/@bsv/auth-express-middleware/dist/types/mod.d.ts","../node_modules/@bsv/payment-express-middleware/dist/types/src/types.d.ts","../node_modules/@bsv/payment-express-middleware/dist/types/src/index.d.ts","../node_modules/@bsv/payment-express-middleware/dist/types/mod.d.ts","../src/storage/remoting/storageserver.ts","../src/storage/sync/storagemysqldojoreader.ts","../src/storage/sync/index.ts","../src/storage/index.all.ts","../src/services/chaintracker/chaintracks/util/chaintracksfs.ts","../src/services/chaintracker/chaintracks/storage/chaintracksknexmigrations.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstorageknex.ts","../src/services/chaintracker/chaintracks/storage/chaintracksstoragememory.ts","../src/services/chaintracker/chaintracks/createdefaultknexchaintracksoptions.ts","../src/services/chaintracker/chaintracks/createknexchaintracks.ts","../src/services/chaintracker/chaintracks/chaintracksservice.ts","../src/services/chaintracker/chaintracks/ingest/bulkingestorwhatsonchainws.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorwhatsonchainws.ts","../src/services/chaintracker/chaintracks/index.all.ts","../src/services/chaintracker/index.all.ts","../src/monitor/monitordaemon.ts","../src/index.all.ts","../src/storage/remoting/storagemobile.ts","../src/storage/index.mobile.ts","../src/index.mobile.ts","../src/index.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/@jest/types/build/index.d.ts","../node_modules/jest-mock/build/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/jest-message-util/build/index.d.ts","../node_modules/@jest/fake-timers/build/index.d.ts","../node_modules/@jest/environment/build/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/jest-snapshot/build/index.d.ts","../node_modules/@jest/expect/build/index.d.ts","../node_modules/@jest/globals/build/index.d.ts","../src/__tests/cwistylewalletmanager.test.ts","../src/__tests/walletpermissionsmanager.fixtures.ts","../src/__tests/walletpermissionsmanager.callbacks.test.ts","../src/__tests/walletpermissionsmanager.checks.test.ts","../src/__tests/walletpermissionsmanager.encryption.test.ts","../src/__tests/walletpermissionsmanager.flows.test.ts","../src/__tests/walletpermissionsmanager.initialization.test.ts","../src/__tests/walletpermissionsmanager.pmodules.test.ts","../src/__tests/walletpermissionsmanager.proxying.test.ts","../src/__tests/walletpermissionsmanager.tokens.test.ts","../test/utils/testutilswalletstorage.ts","../src/monitor/__test/monitordaemon.man.test.ts","../src/sdk/__test/certificatelifecycle.test.ts","../src/sdk/__test/privilegedkeymanager.test.ts","../src/sdk/__test/walleterror.test.ts","../src/sdk/__test/validationhelpers.test.ts","../src/services/index.ts","../src/services/__tests/arc.man.test.ts","../src/services/__tests/arc.timeout.man.test.ts","../src/services/__tests/arcgorillapool.man.test.ts","../src/services/__tests/arcservices.test.ts","../src/services/__tests/bitrails.test.ts","../src/services/__tests/getmerklepath.test.ts","../src/services/__tests/getrawtx.test.ts","../src/services/__tests/postbeef.test.ts","../src/services/__tests/verifybeef.test.ts","../src/services/chaintracker/index.mobile.ts","../src/services/chaintracker/__tests/chaintrackschaintracker.test.ts","../src/services/chaintracker/__tests/chaintracksserviceclient.test.ts","../src/services/chaintracker/chaintracks/ingest/liveingestorteranodep2p.ts","../src/services/chaintracker/chaintracks/ingest/__tests/bulkingestorcdnbabbage.test.ts","../src/services/chaintracker/chaintracks/ingest/__tests/liveingestorwhatsonchainpoll.test.ts","../src/services/chaintracker/chaintracks/ingest/__tests/whatsonchainservices.test.ts","../node_modules/fake-indexeddb/auto.d.ts","../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageidb.test.ts","../src/services/chaintracker/chaintracks/storage/__tests/chaintracksstorageknex.test.ts","../node_modules/@types/cors/index.d.ts","../src/services/chaintracker/chaintracks/__tests/localcdnserver.ts","../src/services/chaintracker/chaintracks/__tests/chaintracks.test.ts","../src/services/chaintracker/chaintracks/__tests/chaintracksclientapi.test.ts","../src/services/chaintracker/chaintracks/__tests/createidbchaintracks.test.ts","../src/services/chaintracker/chaintracks/util/bulkfiledatareader.ts","../src/services/chaintracker/chaintracks/util/__tests/bulkfiledatamanager.test.ts","../src/services/chaintracker/chaintracks/util/__tests/chaintracksfetch.test.ts","../src/services/chaintracker/chaintracks/util/__tests/heightrange.test.ts","../src/services/chaintracker/chaintracks/util/__tests/singlewritermultireaderlock.test.ts","../src/services/providers/__tests/whatsonchain.test.ts","../src/services/providers/__tests/exchangerates.test.ts","../src/storage/__test/storageidb.test.ts","../src/storage/__test/walletstoragemanager.test.ts","../src/utility/format.ts","../src/storage/__test/adminstats.man.test.ts","../src/storage/__test/getbeeffortransaction.test.ts","../src/storage/methods/utils.buffer.ts","../src/storage/methods/__test/offsetkey.test.ts","../src/storage/methods/__test/generatechange/randomvalsused1.ts","../src/storage/methods/__test/generatechange/generatechangesdk.test.ts","../src/storage/remoting/__test/storageclient.test.ts","../src/storage/schema/entities/__tests/certificatefieldtests.test.ts","../src/storage/schema/entities/__tests/certificatetests.test.ts","../src/storage/schema/entities/__tests/commissiontests.test.ts","../src/storage/schema/entities/__tests/outputbaskettests.test.ts","../src/storage/schema/entities/__tests/outputtagmaptests.test.ts","../src/storage/schema/entities/__tests/outputtagtests.test.ts","../src/storage/schema/entities/__tests/outputtests.test.ts","../src/storage/schema/entities/__tests/proventxreqtests.test.ts","../src/storage/schema/entities/__tests/proventxtests.test.ts","../src/storage/schema/entities/__tests/syncstatetests.test.ts","../src/storage/schema/entities/__tests/transactiontests.test.ts","../src/storage/schema/entities/__tests/txlabelmaptests.test.ts","../src/storage/schema/entities/__tests/txlabeltests.test.ts","../src/storage/schema/entities/__tests/stamplogtests.test.ts","../src/storage/schema/entities/__tests/userstests.test.ts","../src/utility/__tests/utilityhelpers.nobuffer.test.ts","../src/wab-client/__tests/wabclient.man.test.ts","../test/checkdb.ts","../test/wallet/storageclient/storageclient.man.test.ts","../test/wallet/action/abortaction.test.ts","../test/wallet/action/createaction.test.ts","../test/wallet/action/createaction2.test.ts","../test/wallet/action/createactiontogeneratebeefs.man.test.ts","../test/wallet/action/internalizeaction.a.test.ts","../test/wallet/action/internalizeaction.test.ts","../test/wallet/action/relinquishoutput.test.ts","../test/wallet/certificate/acquirecertificate.test.ts","../test/wallet/certificate/listcertificates.test.ts","../test/wallet/construct/wallet.constructor.test.ts","../test/wallet/get/getheaderforheight.test.ts","../test/wallet/get/getheight.test.ts","../test/wallet/get/getknowntxids.test.ts","../test/wallet/get/getnetwork.test.ts","../test/wallet/get/getversion.test.ts","../test/wallet/list/listactions.test.ts","../test/wallet/list/listactions2.test.ts","../test/wallet/list/listcertificates.test.ts","../test/wallet/list/listoutputs.test.ts","../test/wallet/live/walletlive.man.test.ts","../test/utils/localwalletmethods.ts","../test/wallet/local/localwallet.man.test.ts","../test/wallet/local/localwallet2.man.test.ts","../test/wallet/signaction/mountaintop.man.test.ts","../test/wallet/specops/specops.man.test.ts","../test/wallet/support/janitor.man.test.ts","../test/wallet/support/operations.man.test.ts","../test/wallet/support/reqerrorreview.2025.05.06.man.test.ts","../test/wallet/sync/wallet.sync.test.ts","../test/wallet/sync/wallet.updatewalletlegacytestdata.man.test.ts","../test/wallet/sync/setactive.test.ts","../test/walletclient/localkvstore.man.test.ts","../test/walletclient/werr.man.test.ts","../test/bsv-ts-sdk/localkvstore.test.ts","../test/examples/backup.man.test.ts","../test/examples/pushdrop.test.ts","../test/monitor/monitor.test.ts","../test/services/services.test.ts","../test/storage/knexmigrations.test.ts","../test/storage/storagemysqldojoreader.man.test.ts","../test/storage/count.test.ts","../test/storage/find.test.ts","../test/storage/findlegacy.test.ts","../test/storage/insert.test.ts","../test/storage/update.test.ts","../test/storage/update2.test.ts","../test/storage/idb/allocatechange.test.ts","../test/storage/idb/count.test.ts","../test/storage/idb/find.test.ts","../test/storage/idb/idbspeed.test.ts","../test/storage/idb/insert.test.ts","../test/storage/idb/transactionabort.test.ts","../test/storage/idb/update.test.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/diff/index.d.ts","../node_modules/@types/jsonfile/index.d.ts","../node_modules/@types/jsonfile/utils.d.ts","../node_modules/@types/fs-extra/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/jest-diff/index.d.ts"],"fileIdsList":[[194,236,654],[194,236],[194,236,476],[186,194,236],[194,236,478,479],[194,236,478],[82,94,96,97,100,108,111,115,118,124,126,146,147,165,170,174,178,181,185,194,236],[61,147,194,236],[90,129,194,236],[148,149,150,151,194,236],[90,129,148,194,236],[90,150,153,154,155,194,236],[161,194,236],[152,153,154,155,160,162,164,194,236],[90,150,153,154,194,236],[153,194,236],[163,194,236],[150,194,236],[90,194,236],[90,150,153,194,236],[156,157,158,159,194,236],[147,153,194,236],[59,61,62,194,236],[61,62,194,236],[119,120,121,122,123,194,236],[70,77,78,194,236],[147,175,194,236],[94,147,175,176,194,236],[175,177,194,236],[147,194,236],[90,183,194,236],[182,184,194,236],[90,92,147,194,236],[116,117,194,236],[166,167,168,169,194,236],[90,94,95,97,194,236],[94,166,194,236],[167,194,236],[58,194,236],[53,194,236],[53,54,57,194,236],[54,57,59,194,236],[54,57,58,59,60,61,62,63,64,65,66,67,79,80,81,194,236],[54,55,57,194,236],[54,194,236],[54,55,56,194,236],[54,61,194,236],[54,57,59,60,62,194,236],[54,57,59,61,194,236],[52,54,194,236],[54,57,82,194,236],[54,62,194,236],[54,59,69,72,78,194,236],[179,180,194,236],[94,147,170,179,194,236],[68,69,70,71,83,84,85,86,87,96,194,236],[69,194,236],[54,68,194,236],[71,85,194,236],[70,77,194,236],[70,71,72,78,194,236],[88,89,95,194,236],[61,69,70,71,77,87,194,236],[82,90,94,97,194,236],[54,61,70,71,77,87,194,236],[171,172,173,194,236],[125,194,236],[65,75,76,77,91,194,236],[92,194,236],[65,77,194,236],[77,194,236],[74,77,101,194,236],[74,102,194,236],[102,103,109,110,194,236],[74,77,108,194,236],[75,101,194,236],[75,194,236],[112,113,114,194,236],[98,99,194,236],[77,98,194,236],[73,77,194,236],[101,194,236],[101,104,105,106,107,194,236],[72,74,75,76,77,78,91,92,93,194,236],[65,75,194,236],[65,72,73,74,75,76,78,194,236],[71,194,236],[82,90,127,194,236],[90,127,128,129,130,131,132,133,134,135,136,146,194,236],[82,90,194,236],[140,194,236],[137,138,139,140,141,142,143,144,145,194,236],[90,138,194,236],[90,140,194,236],[90,135,194,236],[194,236,282,286,510,511,514],[194,236,520,521],[194,236,510,511,513],[194,236,510,511,515,522],[194,236,508],[194,236,286,503,504,505,507,509],[194,236,654,655,656,657,658],[194,236,654,656],[194,236,251,286],[194,236,249,286,661,662],[194,236,249,286],[194,236,504],[194,236,506],[194,236,517,520],[194,236,249,279,286],[194,233,236],[194,235,236],[236],[194,236,241,271],[194,236,237,242,248,249,256,268,279],[194,236,237,238,248,256],[189,190,191,194,236],[194,236,239,280],[194,236,240,241,249,257],[194,236,241,268,276],[194,236,242,244,248,256],[194,235,236,243],[194,236,244,245],[194,236,246,248],[194,235,236,248],[194,236,248,249,250,268,279],[194,236,248,249,250,263,268,271],[194,231,236],[194,231,236,244,248,251,256,268,279],[194,236,248,249,251,252,256,268,276,279],[194,236,251,253,268,276,279],[192,193,194,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[194,236,248,254],[194,236,255,279],[194,236,244,248,256,268],[194,236,257],[194,236,258],[194,235,236,259],[194,233,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,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,284,285],[194,236,261],[194,236,262],[194,236,248,263,264],[194,236,263,265,280,282],[194,236,248,268,269,271],[194,236,270,271],[194,236,268,269],[194,236,271],[194,236,272],[194,233,236,268,273],[194,236,248,274,275],[194,236,274,275],[194,236,241,256,268,276],[194,236,277],[194,236,256,278],[194,236,251,262,279],[194,236,241,280],[194,236,268,281],[194,236,255,282],[194,236,283],[194,236,248,250,259,268,271,279,281,282,284],[194,236,268,285],[194,236,502],[194,236,279,286],[194,236,516,519],[194,236,378],[194,236,379,380,381],[194,236,379],[194,236,517],[194,236,505,518],[194,236,510,512],[194,236,510,517,520],[194,236,248,268,276,293,294,295],[194,236,509],[194,236,288],[194,236,248,286,287,289,290],[194,236,291,292],[194,236,287],[194,203,207,236,279],[194,203,236,268,279],[194,198,236],[194,200,203,236,276,279],[194,236,256,276],[194,236,286],[194,198,236,286],[194,200,203,236,256,279],[194,195,196,199,202,236,248,268,279],[194,203,210,236],[194,195,201,236],[194,203,224,225,236],[194,199,203,236,271,279,286],[194,224,236,286],[194,197,198,236,286],[194,203,236],[194,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,225,226,227,228,229,230,236],[194,203,218,236],[194,203,210,211,236],[194,201,203,211,212,236],[194,202,236],[194,195,198,203,236],[194,203,207,211,212,236],[194,207,236],[194,201,203,206,236,279],[194,195,200,203,210,236],[194,236,268],[194,198,203,224,236,284,286],[186,188,194,236,309,523],[194,236,450,523,525],[194,236,450,525],[186,194,236,450,523,525],[186,187,194,236],[187,188,194,236,309,375,410,440,441,442,443,444,445,446,447,448,449,450,464,465,473,475,484,495,496],[187,188,194,236,309,315,375,392,404,410,426,440,441,442,443,444,445,446,447,448,449,450,464,465],[187,188,194,236,309,315,375,410,421,440,442,443,444,445,446,447,448,449,450,464,499],[194,236,497],[194,236,300,397,410,419,496,534],[194,236,297,298,300,306,308,311,377,397,410,427,428,429,430,431,432,433,434,435,436,437,438,439,454],[194,236,296,297,298,300,308,311,359,377,397,410,440,471,472],[194,236,304,309,311,374,427,440,453],[194,236,427,432,440],[194,236,427,440],[194,236,392,427,440],[194,236,308,427,440],[194,236,427,440,454],[194,236,305,427,440,451],[186,194,236,300,311,317,318,321,322,427,440],[186,194,236,374,427,440,451,453],[194,236,440],[186,194,236,497],[194,236,297,298,299],[186,187,194,236,297,298,299,300,301,302,308,454],[194,236,297,298],[186,194,236,297,300,303,306,307],[186,194,236,300],[186,194,236,297,300,308,453],[186,194,236,297,454],[186,194,236,404,406,451,497,534],[186,194,236,534],[194,236,407,451],[194,236,451],[186,194,236,451,497,534],[186,194,236,311,410,534],[194,236,451,495],[194,236,424,451],[186,194,236,300,306,307,308,346],[194,236,309,311,397,419,485,489,534,561],[194,236,300,304,306,307,308,342,346,397,491],[194,236,300,305,306,311,341,345,423,534,557],[194,236,249,251,258,560],[194,236,308],[194,236,300,305,336,342],[194,236,300,305,334,336,342],[194,236,300,306,334,342,393,394],[186,194,236,300,305],[194,236,300,305,336,341,345],[194,236,305,342],[188,194,236,297,300,304,305,306,311,333,334,336,340,342,346,393,394,395],[194,236,251,300,305,306,309,311,397,410,419],[194,236,300,304,305,306],[194,236,309,337,339,341,395,397,400,401,413,414,415,418],[194,236,296,309,337,339,341,395,400,401,413,414,415,485,487],[194,236,309,337,339,341,395,400,401,413,414,415,417],[194,236,309,337,339,397,418,422],[194,236,296,309,337,339,397,487,489],[194,236,309,337,339,397,417,419],[194,236,424,485,487,488,489,490,491,492,493],[194,236,421,422,423],[194,236,300,305,307,334,336,337,339,341,342,343,344,346,393,394,395,396,397,398,399,400,401,413,414,415,416,417,418,419,420],[194,236,296,309,336,339,343,401,485,487],[194,236,305,311,415],[194,236,279,305,309,311,336,339,346,412,413,485],[194,236,300,305,336,342,344,345,393],[194,236,300,305,309,336,337,341,345,346,393,398],[194,236,300,337,400],[194,236,305,309,336,337,339,346,393,398,412,413],[194,236,305,309,311,336,398,412,413,414],[194,236,300,305,342,394],[194,236,309,399,413],[194,236,309,311,399,413],[194,236,309,399,412,413,415],[194,236,300,308,311,411],[194,236,300,308,336,337,339,411],[194,236,305,309,344,346,418,485,487,557],[194,236,296,309,346,485,487],[186,194,236,300,304,305,334,336,343,344,345,346,396],[194,236,296,309],[194,236,281,304,305,309,336,341,342,343,346],[194,236,298,300,305,308,336,339,342,343,344,345,346,382],[194,236,296,298,300,305,308,311,336,342,344,345,346,357,466,486],[194,236,296,309,487],[194,236,298,300,305,308,336,339,342,343,344,346],[194,236,296,300,308,341,345,346,485,487,561],[186,194,236,304,338,339,345],[194,236,336],[194,236,340],[186,194,236,298,300,304,308,311,333,334,335,337,338,345],[186,194,236,304,309,334,336,337,338,339,340,342,345,346],[194,236,309,336,341,345],[186,194,236,304,308,309,334,336,337,344,345,346],[186,194,236,298,300,304,334,336,337,344],[186,194,236,311,337],[194,236,249,258,334],[194,236,345],[186,194,236,297,298,300,306,307,308,311],[194,236,409,425,494],[194,236,409,424,425],[194,236,409,421,425],[194,236,300,306,307,308,311],[194,236,410],[194,236,308,404,405,534],[194,236,297,311,376,410,411,471,473,534],[186,194,236,297,300,308,311],[186,194,236,297,300,308,311,314],[194,236,298,308],[186,194,236,309,359,451],[186,194,236,297,298,300,304,308,311,314,402,410],[194,236,297,308],[186,194,236,297,298,300,303,304,308,311,403,404,405,406,407,408,409,411],[186,187,194,236,296,298,300,311,376,377,410,440,454,464,465,471,472],[186,187,194,236,300,311,376,377,390,410,440,464,465],[186,194,236,300,377,410,440,454,464],[186,194,236,348,454,464],[186,194,236,298,300,311,312,454,464],[186,194,236,297,298,311,312,464],[186,194,236,298,454,457,458,464],[186,194,236,298,454,464],[186,194,236,298,454,458,459,464],[186,194,236,300,377],[186,194,236,392,471,473,534,574],[186,194,236,300,359,410,453,454],[186,194,236,359,390,441,473,557],[186,194,236,472,501,534],[194,236,359,374,376,377,390,391,453,466,471,481,483],[194,236,359,374,376,377,390,391,453],[194,236,359,374,377,391,453,498],[186,194,236,328,451,579],[186,194,236,309,311,324,331,377,471,473,534],[186,194,236,309,311,359,374],[186,194,236,298,303,304,311,319,323,328,329,330,331,359,454,464],[186,194,236,297,298,327,359,451,454],[186,194,236,298,311,319,359,454],[194,236,298,303,311,316,317,323,324,329,330,348,349,351,353,354,357,454],[186,194,236,298,300,303,311,316,318,323,325,329,346,359,454],[186,194,236,300,303,304,384,390,454],[186,194,236,300,303,304,311,323,353,384,454,471],[186,194,236,300,323,359,454],[186,194,236,300,392,454],[186,194,236,298,300,304,311,329,386,390,454],[186,194,236,303,304,311,329,330,386,454,471],[186,194,236,298,300,303,311,359,454],[186,194,236,311,324],[186,194,236,298,300,303,304,310,311,313,316,317,318,322,323,324,359,454],[186,194,236,296,297,303,323,324,351,354,454,471],[186,194,236,296,390,454],[194,236,296,297,303,323,454,471],[186,194,236,296,390,392,451],[194,236,298],[186,194,236,311,375,376,481,534],[186,194,236,297,298,299,300,303,308,317,329,348,352,355,375,452,454],[186,194,236,298,300,303,308,317,329,348,352,355,452,454],[186,194,236,297,298,300,359,375,454,464,477,480],[194,236,362,501,534],[194,236,361,501,534],[194,236,363,501,534],[194,236,365,501,534],[186,194,236,367,501,534],[194,236,366,501,534],[194,236,364,501,534],[186,194,236,318,501,534],[186,194,236,319,501,534],[194,236,310,534],[194,236,373,501,534],[186,194,236,296,368,501,534],[194,236,368,369,370,501,534],[194,236,369,501,534],[194,236,371,501,534],[194,236,359,454],[194,236,311,348,360,454],[194,236,298,311,349,360,454],[194,236,311,324,360,454],[194,236,303,311,360,454],[194,236,311,329,360,454],[194,236,311,330,360,454],[194,236,298,311,351,360,454],[186,194,236,297,298,308,311,316,318,360,454],[194,236,298,300,311,317,359,360,377,454],[194,236,298,311,318,319,352,360,361,362,363,364,365,366,367,368,369,370,371,372,452,454],[186,194,236,300,303,311,319,323,360,454],[194,236,311,353,360,454],[194,236,298,311,354,360,454],[194,236,298,311,355,360,454],[194,236,318,319,360,361,362,363,364,365,366,367,368,369,370,371,372,373],[194,236,298,300,311,360,454],[194,236,296,297,298,300,357,471],[186,194,236,309,392],[194,236,303,316,317,323,324,329,330,348,349,350,351,352,353,354,355,452],[186,194,236,451],[186,194,236,451,453],[186,194,236,298,300,311,357,359,382,383,385,387,388,389,453,454],[186,194,236,296,298,300,308,311,357,359,453,454,466,467,468,469,470],[186,194,236,297,298,300,303,304,308,311,317,320,321,323,325,326,329,330,332,347,348,350,353,358,374,454],[194,236,309,311,356,453],[194,236,303,311,316,317,323,324,329,330,348,349,350,351,352,353,354,355,357,360,454],[194,236,309,357,452],[194,236,482],[186,194,236,296,298,300,303,311,314,316,317,323,324,329,330,348,349,350,351,352,353,354,355,357,452,454,474],[186,194,236,309,359,374,376,453],[194,236,304],[186,194,236,309,321,451],[186,194,236,309,359,453],[186,194,236,462],[194,236,310,311,312,313,314,474],[194,236,304,310,311,312,313,314],[186,194,236,304],[186,194,236,311],[186,194,236,298,300,302,304],[194,236,446,448,534],[194,236,444],[186,194,236,444],[186,187,194,236,297,298,300,308,311,312,328,377,440,442,454,455,456,459,460,461,462,463],[186,187,188,194,236,444,448],[186,194,236,297],[194,236,472,501],[186,194,236,501,534],[186,194,236,298,300,308,311,318,428,429,432,433,434,437,440,454,534],[186,194,236,497,534],[194,236,451,471,534],[194,236,534],[194,236,382,390,451,534,557],[194,236,390,451,534,557],[186,194,236,534,557],[194,236,390,451,453,534,557],[194,236,296,497,534],[194,236,472,482,497,534],[194,236,453,497,534],[194,236,296,453,497,534],[186,194,236,332,501,534],[186,187,194,236,249,258,296,297,298,300,303,304,308,311,312,316,317,323,324,329,330,348,349,350,351,352,353,354,355,359,376,377,390,391,410,440,454,464,471,472,473],[186,194,236,451,534],[186,194,236,375,497,534],[186,194,236,249,258,505,534],[186,194,236,320,497,534],[186,194,236,309,326,359,497],[194,236,451,534],[186,194,236,346,534],[186,194,236,258,451,534,557],[186,194,236,258,534,557],[186,194,236,472,497,534],[194,236,309,501,534,621],[186,194,236,309,472,501,534,621],[186,194,236,501],[186,194,236,309,501,534],[194,236,497,534],[194,236,501,534],[186,194,236,304,309,501,534,574],[186,194,236,472,501,534,574,621],[194,236,296,501,534],[194,236,428,432,433,434,451,472,483,501,534],[186,194,236,300,621],[186,194,236,297,298,300,309]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"95f1023b824c2c511c48f1201e2d1188bcb0ca1138a309a870b956d2e92e44ab","impliedFormat":1},{"version":"ee10d504b584bcba97138a91e7f60c176b3a6ab54da5063323fe2bd16dd8b80b","impliedFormat":99},{"version":"8d3b45a44034c5907cd25313ffbb45126162be336997abbe817995085b7c91e8","impliedFormat":99},{"version":"bac06f0ef492849a9bd9a03a1c33632c7c40f78b73617ed54cc284558a47fa8b","impliedFormat":99},{"version":"5a8fbbf318a89f37881f0e5851279794a17a9a6a042593509c0461644e13bf5b","impliedFormat":99},{"version":"47ff6368d2a381cd0a8f84cd2c5f5373ad1bb5562ee36e0e9f6d41e7cf4d7504","impliedFormat":99},{"version":"a4c6f4c695934a03210c76494e00619fcb1352efda6b9619b78dbb1601d15eaf","impliedFormat":99},{"version":"8c20e4ae0f10e9edb5f71a0f8ebd416f221af6e60d5e30197b3a8229b4a85b39","impliedFormat":99},{"version":"194d5d90d7829b15100cde8cd4caced653517be46c1f2f98729cf746c8a4f74a","impliedFormat":99},{"version":"76b5c947e552b85476921091854435179e02d3b83168c08b41fe21478f8a541b","impliedFormat":99},{"version":"123f95a7e5f2ec8fc2fde54ccb03f9b680ddc4d0563ed613279d341c3072c9ee","impliedFormat":99},{"version":"7d343dd56203d245346365d49500bbc84ff5ece2272887f8971e98d5bd91e28a","impliedFormat":99},{"version":"ab3d8d79d3b0b83eb081d3ee2e9be47f863c69cfc30c3ba1743edd12285c0524","impliedFormat":99},{"version":"09c34342a53eb9d868e1fac94fa1e29387bf86997a916819b199c39a5b6a9aaf","impliedFormat":99},{"version":"6efa332e0d6718007a77432482a82b2265805abb1aec7c5d4b15113885c64cd5","impliedFormat":99},{"version":"c23197755b10f04340af2838b53d66073ff7661325eb2d97a0f0f91a7b95b72f","impliedFormat":99},{"version":"d7520ad8621111bb484bd4fcf06ec19c8f5c2dcfa938d41a0288d59b15fd1930","impliedFormat":99},{"version":"46c0230476c149252b9eddf0a97d521a5af223e497c76d349537a0fe84869cdc","impliedFormat":99},{"version":"fce720ce28d9cd1b3158a73c5a5f0d0575259ad24d10c50f84934aa3001d76c9","impliedFormat":99},{"version":"30072e54d199fb4007c422ee88003cbd1b9fb755b8e2bdfef50543706d7ecf3d","impliedFormat":99},{"version":"c4b26ce240c1eea17878c80a29d66bae16bbd3a07e98e034ea2e6813a186ebfc","impliedFormat":99},{"version":"768d6fbec410216bfef9030b317eee914b19081c9905fc727401bc28e70d6ec5","impliedFormat":99},{"version":"1913c2a3aab411553472debac3779ee8731335b9210389653eb0890736a064fe","impliedFormat":99},{"version":"a25857b36a7dbcc54348ee8d099fc55d3a3b45d9296308d1294d3b722dc4fef3","impliedFormat":99},{"version":"0a98803b154c2712bf98d0caac403e98eb6e19b1d8e8a307ae1a884c5bbdb2c3","impliedFormat":99},{"version":"cf9989ae2885a8e7771f7efebeb1bcd7b8614a2d301380db93c92a0778c714e5","impliedFormat":99},{"version":"ecd3042692f4347151d735976bb6c54558e41b5db45585cd78ff25f787a508e2","impliedFormat":99},{"version":"a05969bf179536e8f0efd22882c9f89c683ea1349599324aa0f1c84ab6e0f3a5","impliedFormat":99},{"version":"9e2872a41b028df5b4d8b4312aa3c7422023f64da0cd028839e71b928f8cb0b5","impliedFormat":99},{"version":"f693c9344140bddef763721786beb8adf4918ff56ce3689e676539019b9e1f65","impliedFormat":99},{"version":"6276b619e67e4179d99b79545337f71bbcf68e8fca88aabcf712b270418d6846","impliedFormat":99},{"version":"5fa74362e154b545c9492c0352faeebec2d850b9c8f02916187448a2a8427d4e","impliedFormat":99},{"version":"dbfc8224f4e3c3881c6bbf339bfc57e5977f5171d2ae2534fcf21c747e663587","impliedFormat":99},{"version":"09092b330779f81a908a158791b23149862014fd673a853b960fd0c5a469709c","impliedFormat":99},{"version":"3704fe6d03663d0e2c6548c3d7c216d0d9e8418e2ddd7d2c83180f2bf764abf9","impliedFormat":99},{"version":"43a05fe9314ec192cc2227c2bd88ffd9ef90a45e9de1107f21a1bb6afde616d6","impliedFormat":99},{"version":"1261bf631f704be468073c07439f0bd68913e08694b4dc2390d183c4f570b5cd","impliedFormat":99},{"version":"12c9b1ea1ae11de506502a96c2ec2b8a538767a48614d092f41f69993a29442b","impliedFormat":99},{"version":"a37b7973ff24a9e93f2128971ad9efcf3f27c0bd76c917864ff10ba115e499f1","impliedFormat":99},{"version":"a14fe38f740bf201891751e6732f8d8f5e60ca6cf7c341506e694643bf0cb53b","impliedFormat":99},{"version":"c3742ad1924256d3beac600082de5a865daeb9761d69470d577647d6c79756e0","impliedFormat":99},{"version":"8551a8dc0f0b22c5e49c7a4a486d72c0fe8af1b6e25010c16a0d4fee331149c4","impliedFormat":99},{"version":"58dc31843fe9c84b7236e1b5cf25ec190fc15b95053ba69cdaf044fed9e8f261","impliedFormat":99},{"version":"12785a4c90407235092c4a3eef9087241b12aa735968f772bbefdadf9d74d56a","impliedFormat":99},{"version":"e0bf192521bbd62eb7a12678159074313bf808dddf4bc2e763c848651945e55f","impliedFormat":99},{"version":"0463a5b5a96657253bb32d7c7e1f0d7feaba9c57c69eebf77b54ea0e86ac0a5d","impliedFormat":99},{"version":"fd3481783c58cb990c049e7511263056ea8a20f6e21ff0e7b4102e201d769570","impliedFormat":99},{"version":"4f2a15d6f9061c0c49a9df3185fe62c9088ea9c9731fd8acce2de9117e2a704c","impliedFormat":99},{"version":"51546db1de881dc776508ace4892c32f287ce2224de71285822b20c3583947f4","impliedFormat":99},{"version":"db6eb99354dadbddd9975993c942b415116e1f5d2034cf882056f2a7cd499fe2","impliedFormat":99},{"version":"72a477a7f0179f84b392df10f2ed08cb67b30a16d58ab8c87d09bef6b17f551b","impliedFormat":99},{"version":"7a4a66611d5a080307daca60e015e535d48c4687f913fa4ad7fbb8fa71045bb6","impliedFormat":99},{"version":"b224de5aeb2acf4fd301f5030560f31610b82fefdfb355e4425498c491951653","impliedFormat":99},{"version":"c8488535fd09dba338c1c899828f7bfc1e8a54c77e548efef2684a81f5351c10","impliedFormat":99},{"version":"69deecd6f6efcb80ebdd77d819d7dddeb3541802b238022603470114acb89f6f","impliedFormat":99},{"version":"c4e3715fc40756d61ec62b47fc0896a9ff772e0046f752426cf4ea48d5fef7e1","impliedFormat":99},{"version":"da597cc61807fab850837b1d08bdcae5be97a5972d3e78ffc62d260b0dde4c24","impliedFormat":99},{"version":"2d8f2a0d8ca4970c21a15d3348aab6f2f2eae476e3f3c2c7807fb9f2f8cd6e34","impliedFormat":99},{"version":"a540bb94a35ac699901767ac76d1849bdec26b1fcd140404c9a2df1acf05c529","impliedFormat":99},{"version":"e00abf3bb0675feedaf861b05db472d40c7c81d9fd0c44253efb899df16c6c65","impliedFormat":99},{"version":"dc7d6816e92cc8b0da5e998d06fe5558b6be9a835b790c218ef7763607c84a59","impliedFormat":99},{"version":"cab8545c2062190ad482486a05f189cbcd305b4a4eccaf200190264568bbdec5","impliedFormat":99},{"version":"0b4f3a52332edbda9cbf9317e5817936b78319297cd28eadd1bb78995142c4e1","impliedFormat":99},{"version":"98f4620993c45eb46777d140d55937b6549d1b9e137f0bce57bd881e4f48901b","impliedFormat":99},{"version":"65bc85413aacca698e38491a3331133ebb4b5392526e9be581114f772a4bcc4c","impliedFormat":99},{"version":"391158f9180951ec4af103e34d2243ac9ce31c1eeef6cd6eac4755a86b73af33","impliedFormat":99},{"version":"c6a51ab4d7691202f12dfa90944af70e7ec00bdeea05697b4ca8b616f5795246","impliedFormat":99},{"version":"a83755673215e98d6897bf61b9817aceaf00a70a50c23c6020933455efa97a65","impliedFormat":99},{"version":"d9041299b48c1ab821e043c676db220d33da2a2de21caa08b420d538d2216d3e","impliedFormat":99},{"version":"1c908b4ad88b1ce60d06f75da008fe07a6e90e3e43bfd22f63e4511b5d738f74","impliedFormat":99},{"version":"4b101e717eebbf638567c83aa0793903a9bc334db6c8538cb9bc241285386a8d","impliedFormat":99},{"version":"9e2cad7495ecb2e414704a5806ab3ecb7ac58f3f19c88eb495e8a0eaf4dd1e93","impliedFormat":99},{"version":"5667520a47fee076d03d3ec3e6421b7ecc05e5c47150f4fc292ef241f67278e4","impliedFormat":99},{"version":"fb053400344daba92e3d53cc8832be6c960206f1a9397f362bf42879291d8071","impliedFormat":99},{"version":"13237bb35de2b96847871b0cabf5a89be3fa7c8b26b230addbd70ddafc1e0080","impliedFormat":99},{"version":"00a267ebf3c84dcbf17771b21ab8ab1712571a947dd7065c33bea1af9e9bd9cc","impliedFormat":99},{"version":"a5e0e1cc1a0200919e418fb36b353d81aa820624d2e44bf16405ef8af54fb737","impliedFormat":99},{"version":"046445eb0abaec036393766e28b7717948b3ff89c25d8404af037fa2fcd9d573","impliedFormat":99},{"version":"992f660e765dc858e1bab1b05addc6729b272812f93d68c3e78c17afb22103e9","impliedFormat":99},{"version":"b6d576b6e3fdcf15ddc56ea6b97ede9fe08ee88f490c42a3e3bebb52bd0306bc","impliedFormat":99},{"version":"dd8450c6f6f0cc02a74c018a992f13e95a15b113edaf0706e6a9158e7913c7ba","impliedFormat":99},{"version":"4b23eaca729453e3b90c7514ce2de7fcc8b6230578fb0fba27f04cd80416efaf","impliedFormat":99},{"version":"f4c27e0a598d46576541f3556757d28599a6f3a0402ac7a442c5bb30e37e2b2b","impliedFormat":99},{"version":"b002fe318488918b9bfdc1b7f550f82f2be728bc062eab910037649fb2b1fd10","impliedFormat":99},{"version":"f437de93152c3134fbd5970a31e2b5869e387800de9aeb1c3fc7bc652e24dfd0","impliedFormat":99},{"version":"0f1a62a9302ac128d13fa4e9049ca64f3a74aab0fb21163351e2ad57e97aeb1b","impliedFormat":99},{"version":"f999aa14ee42f1a412dde57e0c0180a3fb5fbbab4ef2b51f918324352b6a7d1c","impliedFormat":99},{"version":"54efdfb8d827319fb32520c7ed49d8342daa65a103c537b235d9396fe2527221","impliedFormat":99},{"version":"83f7d124702ba00e87626bc5fa0eeba29fb10fb56b40262761031b6267ecd9ee","impliedFormat":99},{"version":"eb9d9cfe1084c9fe70184ab56f33a45d3178e8af6a582b6022576ad8b8135287","impliedFormat":99},{"version":"0a55ad43bd564c4b39e4295f07eb9691ca150d0dcaf36164c10c1401d501f3b1","impliedFormat":99},{"version":"42bbfbd8d8721b553f2e2d81fd9ce818baff577a973048c037bb36e1fa76e53c","impliedFormat":99},{"version":"920819e696f196d752a12d172a1fa59a486147bea4f3f703ce482bb099b69602","impliedFormat":99},{"version":"24d3ca9095a78b22151c4c966945710edd21e00206901d15d6f7e60a3e1cb9e0","impliedFormat":99},{"version":"0a083cd70b635200e16d965edb93e3103ad3755af0acbdb4a639d036d97c3723","impliedFormat":99},{"version":"4f5747ea6f6ed17a0b3bfb4a9c57a51fe00d6a46a7fe062c72d4b3ec797b65ac","impliedFormat":99},{"version":"219ee2ccc5cdcb3caeacd941f0b0cbc508fc3db1004f26515cff53377560a864","impliedFormat":99},{"version":"ce2fb1365cd5c327ca612ecb010fe1e454681f337234e97fe17c7765fec507cb","impliedFormat":99},{"version":"e3fd07a06d7d7326bd723c3a85b6455a81b1f103b924907d435a58cc42db728a","impliedFormat":99},{"version":"341e9a3be1765ae55d7246198d7de3c9566e708100ea3051c457fcf5d38377a3","impliedFormat":99},{"version":"3a5768d003130b38ccd8cd7e1f75857a254aa5f0b7de70a2b1ad338f64091ab5","impliedFormat":99},{"version":"586e3081144be98f0146a7d549a54b7f83230f1c0a764b39a1a1bdc6114303d6","impliedFormat":99},{"version":"75d411fe92607d44f8490bf06349bb4117853ba8283b09babc43507d32fc708a","impliedFormat":99},{"version":"cf887924ec96afaa0a46fc559e6c42aee3d4aafdf5f9ac51362465c8f2e5fa27","impliedFormat":99},{"version":"077a8ca02a22fdd4e2cdfe88136dcdd76ebe8cf54948535b089731a3f0fe345b","impliedFormat":99},{"version":"70febc544a7ef0c8a70235ef4f07f220b3709e637b93c8500f43d243f82b1611","impliedFormat":99},{"version":"b8eaa608e4db503a53928197abe86f99405a7c704d48dcfc22ee96c7bee8952a","impliedFormat":99},{"version":"a1614782946b785078ff8de40795e9d102e01192b749859c30beffe8f0ddec52","impliedFormat":99},{"version":"2788df2c625d15a4e807805f1390cd294b2dc6a90ff8ab743d6b60d955a4fa05","impliedFormat":99},{"version":"d7051dece9ce9e76fb268a2b8902f5e60826ef5e5f34eb9a61c378a2fefd557c","impliedFormat":99},{"version":"68c00d9198ae362ceb5a6ea6e8659e5088f08aa09db3cc75ac53e7a077929e19","impliedFormat":99},{"version":"b489af13ef4e32f95ebf76cf15338b0c0c30f99f49bd0e3ca891cdb466a8c285","impliedFormat":99},{"version":"f3ccfc021bdab9025ed936dc85cc63e6d174717338519e978a30c6469465a839","impliedFormat":99},{"version":"65c3ab9adf13a2c83139e7f9064411c7021be6e606eace8afa42b63592c2bb58","impliedFormat":99},{"version":"230713c03ad237525cf4c5a37bc41f53183134829b361b5e5a26c9379ca5a03b","impliedFormat":99},{"version":"61f9a3b7e21ef6a9568ae9379d6e41eed98347222bd25877dad680b9779431d2","impliedFormat":99},{"version":"caaa659f107a943ab5236191dbf05345b0e184c45510b9d80db13d7cf78ffeea","impliedFormat":99},{"version":"79d22e07afbf87b0eab025fc1f2b66e84a91ed1d30b58f2a58c6783c66ffacf0","impliedFormat":99},{"version":"1eb4afd1acdce3ead8b271cec93d5bc6305bb06ed771dbd2226371c261d0619a","impliedFormat":99},{"version":"563466f57392b13ebe61f85aa241032923b715e2a1c519a7ac48e2cb2b432c8e","impliedFormat":99},{"version":"44e9df3a1d185b624536d261d7b3e0ea163b12584e05408d707ff1e474078998","impliedFormat":99},{"version":"37017debb8794d065c1b9b669e186197ebbeb61755b09d977056fc8ce91b79d6","impliedFormat":99},{"version":"c986f265cd3226368a29d6b588d1301c92ee91a79a4a24bc3e4b0406644621fa","impliedFormat":99},{"version":"573a539974d619d84a4ed3430423edb766f8267cd454c7eec08ccc7b0ad888d1","impliedFormat":99},{"version":"024b647b01f39f2e3c8d32213efb45217b7d6a52c24d53fa027d066a7d68a9cf","impliedFormat":99},{"version":"d0d106831c178eb48e580e59a5aae5d50242efb7d7bbc853e9b1e46883716573","impliedFormat":99},{"version":"8fbd1b1011fbfdb27ae45c4e4399b88fe1b69bd9ff49d02cf231a2074f7790f0","impliedFormat":99},{"version":"d7c6f86517821d1e6dd79f23a2a95ec7e0f227a2ea79c6f02376d6d0f2fa66c5","impliedFormat":99},{"version":"cbf915e6ab69a496c3a3f20247ea5ad80d88c78f30c54dd9c6214295a9391359","impliedFormat":99},{"version":"12776e0fc4fdeb89fbe33c9410c89f86cbc0e25c496742683c99670164c6de32","impliedFormat":99},{"version":"e63a926fd54a4802c193b2321a37d5bbdda70e5d35016b6c1f20a8d8cb2841cb","impliedFormat":99},{"version":"2614cf3ba44d4505a2b4f282982f5aae9f631031ad2a962c53a093df1c6704f0","impliedFormat":99},{"version":"9af8fc0e708cf668242c991888d1cbeb85066d2ffb18896048c48407005337ad","impliedFormat":99},{"version":"5645aabc7272a748079f3daebe1216b5a16a1df008dc8197c8767aa866aaf087","impliedFormat":99},{"version":"548f4b518ab0c47cdd2ecb3c5c54cb043d5db0bceebd8a6d8ce4970cf923d42e","impliedFormat":99},{"version":"adbbb0133d6d9a18c7fb7c7cf1befa39b2de658a8789e6bfe31be4cb6a1c352b","impliedFormat":99},{"version":"cbb2a227d105dd7c82923d4a3fd2870afe60851ec95d1835ddb8f605ee2af72f","signature":"591b4d6590f6deb0fe810686c319ca75819c8832f8649be6a6e56dd4ae1a6462"},{"version":"a0a18ef94dbd252991570220c1b2b2fe9700ff5f1b62ee3467aaf49e0cecf9ad","signature":"25a5471c76e4c69130b02ac602f43b442d577f32cf0829b697619d7833fde6d2"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"2b7b4bc0ff201a3f08b5d1e5161998ea655b7a2c840ca646c3adcaf126aa8882","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b326f4813b90d230ec3950f66bd5b5ce3971aac5fac67cfafc54aa07b39fd07f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ee692acba8b517b5041c02c5a3369a03f36158b6bb7605d6a98d832e7a13fcc","impliedFormat":1},{"version":"ee07335d073f94f1ec8d7311c4b15abac03a8160e7cdfd4771c47440a7489e1b","impliedFormat":1},{"version":"ec79bdd311bcba9b889af9da0cd88611affdda8c2d491305fa61b7529d5b89ba","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"eec1e051df11fb4c7f4df5a9a18022699e596024c06bc085e9b410effe790a9a","impliedFormat":1},{"version":"d83f86427b468176fbacb28ef302f152ad3d2d127664c627216e45cfa06fbf7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a2f3aa60aece790303a62220456ff845a1b980899bdc2e81646b8e33d9d9cc15","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"0be405730b99eee7dbb051d74f6c3c0f1f8661d86184a7122b82c2bfb0991922","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"a5890565ed564c7b29eb1b1038d4e10c03a3f5231b0a8d48fea4b41ab19f4f46","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7172949957e9ae6dd5c046d658cc5f1d00c12d85006554412e1de0dcfea8257e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"66e4838e0e3e0ea1ee62b57b3984a7f606f73523dfdae6500b6e3258c0aa3c7d","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"7c54c4b7f7752b0315f14b9ae63f00d7a3f39308e598c670d8a96afdcb8e0a4e","impliedFormat":1},{"version":"9f559e612c27cce4bc181decc88ba90b00e5be42b6ed7fe9316d6c61476d7439","impliedFormat":1},{"version":"03dfcf3d00c60a769e705eb5b080c3674cd59ae830ee7ad82aed8f1883f60f06","impliedFormat":1},{"version":"ca8cec5a09c4323e1fcd9e0f0f84727c9b0818802fabae4ecf7f42a380483037","impliedFormat":1},{"version":"92d06124389a259ec6f17fa490dd2da4a8aff8fd9055047036e63211793a556b","impliedFormat":1},{"version":"aa8c0e10f176c156cfea40f5acdbc08cb44a43ba5411c743be645743ed3b1c02","impliedFormat":1},{"version":"b1bf7de0413303c8bd9424cf4955b433606e90eb31339202c8bffdb1dec982e9","impliedFormat":1},{"version":"979a151b6741901c83c365c97b7e55dcaccd92402fe6095dedd7be206bb23bae","impliedFormat":1},{"version":"ec982ebee52d26bdc7a7520612216c9c55e7a44e6fe0f654fb26e6ee41bc16c4","impliedFormat":1},{"version":"706132295c6d7639a0de0deaca13aa2ed5b823495dfebb5fc6a6c396ae324a7f","impliedFormat":1},{"version":"73cb03a664c792f355dec7fc55694ac7579e3b1f35759854f29d35ead1a687e3","signature":"26912afa128e47732acc5fbed0152d229b8b8e16553acb72e800d5d0b029c292"},{"version":"faf0fbd9c639721e2149d176e79bf8513fa011f000da281fe1de72f7132fcc7c","signature":"b14e6558e97e699b26bab5e65001db58f7880207902f4624ee41bbbd1c2869a4"},{"version":"e7914bec964066fefa186ddcb18ef800e66568872191f468c0511a566904da54","signature":"ef78f329841ea384601002220442ab1f26ec73c2bafc4f1fc33a45804ee7fdac"},{"version":"a733224100cb3dbe590734e30dc4a8526711486f2928659eda4b3860c83b79ce","signature":"e01216144e356f1590cda7b70942503ab7606936e75265a7fe8d8e31c4cb4fec"},{"version":"f430ed2bdf8aef82d74e659b1e85e80c8e2751b575afa43631f4ac8a60a4aeb3","signature":"dbc14ab703ca259e565cd6ee906255aac866cf81edfec46e430d4f80a0891211"},{"version":"f0c2b9ab7329e088b50dd52dea5d32f3c8e5a8fd8a8c702d2e4f3a0d18c3b799","signature":"05760f6729bc2a6f58eb3392fc1b6094e30c2a721990e5ab42de85a5490e01d9"},{"version":"5fdd14fb83f3409c6799c034ab70b25f894272a6a1d92ac31ec63a2ceb8ad9e9","signature":"f7969807cd2e92640e5e553c13620043059b18121864e507380fd8dc567f7dde"},{"version":"d43ddaa6a90b5e639f22f415834843fa4e9d76b42a9d2210e5ca5f0ba69e108c","signature":"b3873cf39605b713c2e8aabb3e14c4e4081c222604f52fd752d14a5097bc980c"},{"version":"da21ebc7d5f4445b9b1cc64f2c651e67e89717cb564eceb5a2ba24146505a4c2","signature":"4821eb0cff445243ab02916be8f7aba4e26b9c278602ca3d54ef3683a6c7d90c"},{"version":"e9fc22173c0da8482b28e76e297ece5ae5318188c82700e171fb62e497ba981a","signature":"35e5658be195631b5182b020ed8322acd5c348f59f7fe1f09c90d4f98ec50222"},{"version":"e938acd4533773e1955400701e7c36437e793fec091b63967cf7e2e075c0e6ac","signature":"29e02bafe571c682dc2b1ee3149457adbefb9dbfe7d063d0695428ae176f854d"},{"version":"cefadde0a9965ad213492ab563b751ca2cbd3b4b76f7fb651e0b27e5bfec0e99","signature":"ef212200c0ab10a45542a799907fdb9f818f55740c11a3b25419326337a866bc"},{"version":"dc875e0886ba4a6375322d302b1b0a8e00c4df863af82b80414cd5483956e373","signature":"52255835f45d30a2cb0baec733a74d0174b65a0aa8b0b7d4bb0c54a2963ab706"},{"version":"e242b83ae32b1962eedb0c314d8112a3c753991b791f2630d24811839a3cefff","signature":"a66c26b1d19ab9029842244df9aa69f95e367f75879262a238cafd863c3d2b6b"},{"version":"aff3ba79aab8045e4b4dd3584810261621abbd4f0e0529db357fc89027e70db2","signature":"d511482a1b11e575a28a7f72c6f8a2641a6f75eb2c9141dfde046250f21d2aa6"},{"version":"a2a6e511b5e2e234b26316e02d1c944bc01d61abaa2eb7874f41c2fcd396707f","signature":"9d62ca53a881685f979249fbd3e897fb9497855f3ab0ac5f933843547e776bfa"},{"version":"047de194a1da4c44573c5cdf492067d7deae1d174905fcc24d0336d578d13169","signature":"09def5bca63838b34e4e025d2d86496d9c83c779370d4d0473455bf6672f99dd"},{"version":"2c18f67e261080e21ec15d88d548678273c1dfce3966a00bfa2e84c0075a4340","signature":"4f9c78ab860e014c0fdfe44c8b86c5d6ad681f254e7248e14bc3430e6b5cef1c"},{"version":"a3a405cc89d52cb205acdc9e49fd74391a69acd3df946c1920ea51715de78743","signature":"f434da77eb33be77448560d9a0d3907a735cd4f8f17f3d79adefe2302c430bf2"},{"version":"7c1cb219fe47d51236fb87eea8f2ebdbc60f25e1e5e239d9449e3f8b3ed7a194","signature":"e68ff51c75c83f3715a96fe67fced56a722a393c84b663cb07a5c45a3cbbc8f3"},{"version":"1eb88ddfeb73ade400318446b2047ca942bcc5924b6304364bcfe04ef9122898","signature":"fa788c696610938f4702ee700d76b1fd23baff20c26cc91429e7e3c65d68043c"},{"version":"d599ea0b4a11aef166e8d3eedbe851e7b0a4f71b6d8922c8298bfb37c43d0ae5","signature":"78a4e7a739e5e6f2a93bdfd146f0995097a6980b71caf7270f9bf98c01f898ee"},{"version":"c108777a954774e91a7e63565af5ab0c524eb183f8ac74a16203c68094d6b369","signature":"a6a61731befdd1cdd414978ec5ccaed7d7eb6ce111ee17ec3871ab5943129d35"},{"version":"ea67d2c63b5d7554dad50ae93a7085eed0e79a8d16fb4255f85db58d5e0c4c9d","signature":"99bd3332ae9210ec9d12ef7b7978fd7af3779efcc7e0983ecc442fdf056b769a"},{"version":"69abd8e81e95f220d43b989b392440fdf310174828ed6eb18002492ae795e3de","signature":"4d378bca46b2f57095e238f9d225e8b058987ab7e5b4ba876ea86cc40af1b5c9"},{"version":"8e482a5da2f1d11e135fd6a741033f91d9d4550f13f0f6b0716cbd2ab02ef1e5","signature":"5dc927e8398c1539a1a5335866c0943ad776d90a16af0dc5de784b66f3e4ff9d"},{"version":"7dc5c54a43e3655f1a886c2bc5dcb6ff4cfcb659a671872e3bfa1eb2454588f9","signature":"ad55919c89f01b6b3b6eeec011d43d5805acc0a3c95d31099216a2698e06b559"},{"version":"96e2a238c5bcca64f346031bd8fa6a162c71b71d6fd097ef47dcc5bdb1f9387b","signature":"dc41800d4357e04315999ed16f365ce99dca9ed4ca4cf628e8d16065b682dcb3"},{"version":"9a0014983f665d922b526242dcd7d5eef82d6b10162b7af21d46fde00ff48c14","signature":"06166d2ce63f763fde21f0ab6e5c997093e2cfcb94fcfd105ff648524820b7a3"},{"version":"dd6b08a3db31d842aa22a15eb3d1e590e8e6483e25b02a262a2497c15eaeb052","signature":"3fe623babed66f31ff1c097eaaada03af5d051abbb54d77ccd3cbf9791faabcc"},{"version":"aab961f5fd3d552138450bdf557b39140158e02ed35acaac9058a188f9b78e5e","signature":"0fd16e204914ea74b6bc9755ec9f29910651a40631f1a1b89eca14bb24dda351"},{"version":"6bcdb1035268fe3ad09faca7c4e27d3668e0eb6340ea9a4d7c4373829fa42a4c","signature":"57c401b5396d0705ef581f541e82db509fdba90f1f6b49230a9387723f04e8af"},{"version":"8176ba4bcd3e2d3991670cd18710cade7c3e48f09d68bdb8d53d0980b612b069","signature":"499b43ef5eccfd4888588eced2cea77d355335e0cadb8a979950b571a986dc58"},{"version":"0029d4cb67f1ff797f2d2c6b75b5855ffa7243787e6dda5ac9136ccb176a36e3","signature":"c974863a38ecda00ea78ee5e3e552d4f76cb7d7bb87082bfa1775d16ed7fc005"},{"version":"8e567bd8a580be7d207227b1e50577dfeb53a0510d8e4b884e90d12a070653f8","signature":"17128b7b6bd5b837e3e3a6531c9516c53b9c3790b15fe0600b18e1c5107c74b3"},{"version":"5e3ee8e366bd8e233ff73c4dff12674468cdd6f40449a24dee44ff057bcfd873","signature":"1d78e05b2c2e0a058e812d0b43272c31b4c100dbe378352d5b50f337ddac44e8"},{"version":"0f1a5c9b3e18907576895ba8e1cf303b723c59452f90029f9da08ba59557e77f","signature":"4c175d6c5b75f3b7efe7f271256f0ff56d2464790f77dc7b746a8e36f06931c6"},{"version":"cebe2527721ee643231c45be3a7c8b7ee94619f98e75558e9a1d50fb5445a04e","signature":"34cb83ef3ee919b930fdbbae7d994e0936bdaf4f0143cfd5b25719114ac1468b"},{"version":"b5d0a1580f0df40f8001e5b5afd27e7f0ffca85749f8335b0459a96acc0b6411","signature":"3db80965a37f046aa521b5ef1e6521c84d665cbcfcde10bd7eeae9aea8597fa0"},{"version":"4b714a9a2d3b100bfdcd00bb83fde1412f3288af6e40ef6d538b2a265b686b85","signature":"07607fdfb3704784164f1f30bfaf758ccb09ebc417a7d8a36e2b39b3287366bb"},{"version":"3d15886236fbc23596e57f7d12adc184063a7843fdd65ac69174227d1573aba2","signature":"e3d3d039dade328c04e6c891071eaf36a4a5bc6557e5ea23c92d84c823441892"},{"version":"25699bffa76a7412a5fbcf24d0af6d51a1d3c3529f2c0aadf1d1c2c302c36e4f","signature":"33727707a790c2e4ef1b5cc1d1590611b2c196d45b0b561254db7ca121be4808"},{"version":"0279c2d3f10a9b037534a4c86cde12f960bfc4c48782d88fd7e3fd7ab84db75c","signature":"6e719dce3efc53e18c340ca4a0ffbaecc4d0e552007e0579dfe93dc1b14ee332"},{"version":"605adaf90afe4a885fc09c8531c14bf6767c3fd762aa9be6bc93a9dc7aeafa82","signature":"30c439de9195ba67ef65c0109ea5edea81338fd1c431a8cc8c12083fb4062de0"},{"version":"65b232ffe0ed8528426a89cb227a34f1eebc1dd121ae84fda2df14ae8b64e12a","signature":"ee024e09443e7ac8fcf4d79cb257b641ec8626b0d1ceb7eaadb9eeb34b294597"},{"version":"24c7b51211d5b20b627f99fe069924d10059aeb40463711df7c224a73c8e44eb","signature":"d7a97f9cb4c9482de19ef467ac05f48d5c64aaae61f092f01e99689cb8bad39c"},{"version":"b6e91d7a9ce3ecdbd7f05359f79ec8391d68b294db8049551242e5f47bb74061","signature":"0e307d510dc41a2f3a731987c408bf21d74f90b2bd319b3053a6d302018fdf6a"},{"version":"61fc33e545c6999277e7134997a58840c829a39177c164650439e126dda45870","signature":"cc5af52122e1f73600e0bae3e12895da618761cff06550f3723ecacaaead27a7"},{"version":"da1872f85d9c360e9fb90a52bad2d5718c58fbafeff0db3bb74837dcba88e9a9","signature":"f5446a15c0b838dc1a47596ea1d61aabd9bfa0d012da073ba95872d536c66666"},{"version":"9005906fcab6498389baa9a509da8d30e67c1d1bb7e5b3f0c09a1ba2e28ff556","signature":"4f6d14272bcf715cc2ece28a21fe21b75575480020721cbaa946827bb7e00aa6"},{"version":"ade2bcb893c7101c02172b1e7613b0c8bd37c3afe28b738f9fe22509a130d32c","signature":"4bbd44c4365bfef4858e4492ce9fc184ea61bb651b1f5818e08ad3eedeb1c952"},{"version":"b6c9a7628b3e8850d25d66bf493f146dcf1a54d97ed1dd070c68c3b929036a9a","signature":"eb12f350b57fd326d317b29519e67245b76de7d6f2aa6665a1e9459a9672f5fb"},{"version":"8393a3c2472b2e1b9dd0c897762be69c3ddd47c6206939822189889569022842","signature":"9606b818076d48189054ea40c4f70cd393ba2f8b719c15cca17290bdb7f02d98"},{"version":"ea972b0062d03be3622aa090da5517d76cc9da49a53aee634ab64c7f5578a47e","signature":"cd81eb231244b4e2a783627cfe3680b58bc20504da866acd9a6a56594c5f6c80"},{"version":"1642e719b8f78d770def5783d57d589004247f6e049c268677850b367f41510b","signature":"5f245d922377278c95d4937ae110a40c7c63dc9785a7578c73ddbd15d69b04e5"},{"version":"0320d636755abe63830e5851a85b7f47fd3c4009c2911a21e8e6b820573252d7","signature":"1a18c7a4c07e8f68a9378d08c8c217070d5bae92cf427ca1f228d3bdda1af429"},{"version":"734b6e46829046b51237ba388797a35e053a3ddc402453bca89575a38e4f9ac1","signature":"0edcc0322b212dcef2092a4b94bc13aff691bbf8b508ae3bddf0b6f29a9abf23"},{"version":"b3fd58f232b58dcfc73c344784b9b587feb8870b3b725971a4800fd15c9583a7","signature":"8932aa2de62e60cc261e27669062c17e18978a8d8dffee9ea763fc8161ac2c80"},{"version":"a48f8c30438c9bb9550a3167f4b03d2811b40e53dc253da3548fa5959e30fc18","signature":"2a3820e65000cda0b90a7ebae6fd52aed6209536dc34f40c4cb076637df43fe1"},{"version":"87435540f699dcf4acfbebae18541dd27f27215c4c4c60a392db17d4a10d4b06","signature":"f4f794e8e6a5d71e503cc471caab42a0e715c6f067565fa4cbce71392c0ee620"},{"version":"77162f3eba26bae8fa4c3ac75982dca48c87b1154521180c771e451e7644b55b","signature":"83a73c7a53972541a9b872b5a8654b2407eb6d263a4d17d876db423c522bbf0a"},{"version":"fdfe6ee49fecbfd6eb29eb4b023c4e3bc63e88c56b6a3fdce11d681bf180a798","signature":"ff64186e58c9c00b2b5afca31fe6fe9dd750ed97eae40606129b013e6aa79118"},{"version":"ecae5b8c46644f37d97373b8b11df4c09ad7af4eee60954425c63f1c9b6b8d6a","signature":"5eac14f8d4f4d22f7ee83fa6ab607ac87ef79d78231f3d16b9fff32105537a1b"},{"version":"730ce58a9497abe1dff8cadfb39666e6a7c848a91c26988d510fb7fdb8b593ec","signature":"18a61f103797c946735f3ada858d173ee4643c8740061718284d6f5c22c93319"},{"version":"8b92d82b3bbca96a7165ab43f587f344c158211f2c64dc4b3299bfc6d09d183e","signature":"fbbfe328dceb67208bb030c72ade7408f717abb389f2de0cc388cfa4b0de625c"},{"version":"3a61dd08241baf2fc2064ecc8423801e574059fdcdd63ba1370d4d6356201029","signature":"77926d5471b63458371e7a79e197579b3033f2651b6a435766542a941d02fb54"},{"version":"7e5efaeee9c1bf54d850b36c68f712d011d783f83e63efd1b97525db90503b1b","signature":"2b7528d7a880597eda4106c79d4dbb8183b15bfb8a7652f86868e3010d822ec3"},{"version":"0c5e2acbcc1a4f8f4afb53f0e0d3cc1013b95167e4df89f95c46ef12ecddaf11","signature":"b464a06b82ae9cdb9116e0c46f8a43d5af933d8a69d7f7fd4dd84be1de2d1f65"},{"version":"f01a661155b602b49b119b02a0ac9e0056fa6efaf20a6dd7ee068dcedcd1d9ae","signature":"d1a35df57aeb0226069fece9bb489867f6c100ed799d7b30927c4613c84e855d"},{"version":"33ce38f2f4a77a8188895a831619a07cec9b69f27a01082130c3a8c3315c87b2","signature":"90650adda9d7f43644522d41b9c40aa15d2d85239fe6fcd2afdd57e7553c6e8d"},{"version":"3ce6d013b36b72e30d630f85d9c190e674b82fa04dfeec6e005eae2d8c96a7a1","signature":"a293cf880fc400ecc396d8d91615ef5b30c03805ef8001c6be097086e4040701"},{"version":"f6b52b05334fcc6def7f40e2b94fa1c6034d61a0399eca68ba2fc3f97774d4f2","signature":"e3f64e78aec69a08ba8d30f6022b1c4f2c9810db23642a4131699bbc06b1e94f"},{"version":"49c48678011909d1d17f6447a416b89a99140d08fdd7d6cbafcf589e9e2ea777","signature":"79889079ec6d6b3691d5466d3dd47014796c75f678a3bcdac8c6be8599e1430c"},{"version":"45ace1ec04bdaacfa542e0f29b6157ae1c6609734a4ac665082ffed07930635b","signature":"b937c4052d655886b7d6be9c513437a38d5e393346dc5d0e30a1a29e4b8b1299"},{"version":"c484cb506b8cae3b352971b84e500f2f696f53cb735014bbd32fb5a60c63d63c","signature":"3576fd07e319a28dfb14982782754dba3c654e0679105729feca0792a6737030"},{"version":"08151186ea9ccd248dc9392e684dccef5131e3541cbc09c82391763d5e911ff6","signature":"3c7ff082d1f266aecdd0b47d8c073f2775918f41714c36f835e47dbe0332833f"},{"version":"a16eaa9f8e57e1d81a9ee2954474634cd5aa3ba04fc2d4b4d5f5bcc2b0e1eae8","signature":"39b926515959cd1949a502b619cddb0730832a73701d4b37b860b0e5e6e7efc6"},{"version":"a4aae089dd2d9313b4b0d5b737a8b113f0b5e7f6803c01d629068f67106e49ab","signature":"cf0f8704bdbfa4594894eef0a2380a2c2539b455f7bed977f1c4fa00d0470caf"},{"version":"5d8d6e9c699f970ccd70229050bc2e94a14acd818ebeed3c86c4da6902784478","signature":"a1ae662a46c019c393baafe3ae1bd351072c73ca4ce58aca55aa0c182ffcaaf3"},{"version":"338190629884bfedde3824a496242d41ab194d0729aa5fb136f5f3c7d42ec251","signature":"c55d993742a8c154e908b1c5a6e0eafe4dcea8ad97fa010878958540865e25ab"},{"version":"80f0b17cae9bc2156a70e5b3d5b6c6c170b829663ec36098cbfb38b28c313f7a","signature":"f0061f697539436022980908690424e61b90990b7b4bdadb9a3ac4dd9457363a"},{"version":"6eec0b712ee4fa23cdd367f5d866d6719b7c8812bc46c623668ed6072587ee80","impliedFormat":99},{"version":"34200a82ddb7fdf868d86595bf9729aac18a0e2795034431550551d0a31e7e9b","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"1ab59b972136fb41d90d704d6faeaa695fcc51be2bcd390e3d44f7d8fa055edf","impliedFormat":99},{"version":"349525a7d8bf34108f80e7dc66139b8cce06cd30dfc7c63c8b6e5631865e0789","signature":"90641f16861c91adc241f230e4511bd6be0a6f13a5684b0a2610eec874453053"},{"version":"5f42935d8a575bf5ce956baba0237d462d577f65b869d8b9328c21c2aece260e","signature":"a4f1ec11a6a7636a99615c416af704f1022ba152ce84c5779fb00e6f9fc8f846"},{"version":"23381b0e5f9a6ea20e52f190a9c7fc1e7895f463f389ef4062ec371080e6e80a","signature":"2582f9633a5c8489d9323cd26f870d18d64100867b20dcf9b33a24484cee2b83"},{"version":"2b47cc2bd413cb660d40ad858a43b6d2c6b1c57aa61f546d1c7b096494e1ee9c","signature":"8c118e908f8f3463e41fbdb6b1d2298ee63cc83c04f677735084ab3efd9c68e0"},{"version":"5988369166e7f285f6021ecb478c1de8e361747990747e05ae6ca06528caeb1a","signature":"6289d94950c214945a39bf3d7fee8b8de68278b698ad3962c71cea74d59fc76e"},{"version":"d0b7e21d4d4bf09da601067c424016e9fc9edf4f7c8368f8affc7aade0e70509","signature":"1ea1a0386e7df1b0094e4deb4dfbca8ddeb0dc251679c07abf02bab716d768a7"},{"version":"281aca4d2ec19f61081d0e743212d23b31cf5aef78e36879f4dc53d7a9f08453","signature":"e6f180a9689675525e93250a1eb078eae62bb04332045659ede2a5cd1a727264"},{"version":"9ecd050e17d85c6a785e21bdf1a175f0d6f0ddc4c04809ea2dbe433f48887e63","signature":"fd540ba9d9ba3c72784deab4ced6c712921bf57c5c417b9fee57301283e6db20"},{"version":"e91544a7106bd1c6cd948ee22bd878af0611b8f5f80afde988db45bcf267c87a","signature":"35eb422c3b59829453b9a298ea5dc0fb8555eb23e980a9a8514458074d949d71"},{"version":"334921c4f5b477b0f4239fcb0eb718e204203ae86823e077af77c9edff67d904","signature":"5ddb0bc6969dfc4afbcea20592785e27811beeec03f50976b60633490f7ce818"},{"version":"4dda09f95bd199700725b8e9e29369b865048bf8773abf81cb9943426b2f663b","signature":"19ac90bddfb140b380d36fbeb969a58557d83af2a260038a6979b42f831ece49"},{"version":"e67f3bae761a06ba1da223d8d6d1789336f1ffb15a9cef7cef5d3da7cdcc08f9","signature":"0fb3ccc647618a002060a57c952249ab02242571e67bd8499c46bfdef17eafff"},{"version":"41a720f9a8a3c644386f4c12b4fe35fc959d1e7132649c0fb6dfb617e614f9e8","signature":"d75f9ca79ac50014970102a6b42996cb8f116efbee6f43c596127fbc079a29ef"},{"version":"1f0b5ee56ceac38e31dd003bc14548182743855f0c83bd84b375a1667ee3e6bd","signature":"cf469ad398c70c43f48162fc43186bbc77c96747a22fcaa109e2cb061b1fd135"},{"version":"e73b62e0f2d27fcc182efd2981aad281d755f224cd413316c04510988b56f618","signature":"e6ae5e1ee6cb9e67bf80763788ebbde698851a2707502ac2d8f42a37b38f0b08"},{"version":"0df5fcd40f19ae8d741bf2a264a6dd63421530d89a958ef63ccda81f250a6e53","signature":"fbc251867a410059c2272f1c21f90508bcf7c7059704af7dc340aafabff36687"},{"version":"f2ad2e9e91ebd0b9eb66c501a4c0fe0f38c1b3c6afdd163fb5ed8f2195130018","signature":"eaad18c4f8dbcd3fb7b83fa1461e0dce7db8c2ce7d152c769055ddfa769fe5b3"},{"version":"60860ba72229a5a679cfd941975b2c1d25cf3fa4efa428cb502bd05a731c7fdc","signature":"bd55558abb18aa8dc1aa4a0e378e28241b72d327a35a259c7682f9bfa053c219"},{"version":"be3685e63e9874bbc80392e05b6d13c0c137cc891e3757ead4aec17b84bd32b0","signature":"cf73562b908d7e35bb893e2fcc2ce328ca4441971bd986ed2d2c7693e86cceda"},{"version":"8e5e7ca97562a082174b7f6268b7faadb798b5e831ea244863ff89cfb922de37","signature":"b8d4bfbc1d57418be7b28a7b55a67d72f74c2001ed63c2998d144bc228e4821c"},{"version":"e3a270999adf6c543f5d90d88d286df6e314f2d2838e8969231a61d57c89734c","signature":"a4262f182dace72b91401bbdddea8cd71c9acfc736f4d94a75b2ee7363dd240b"},{"version":"2212382b187d1678551760e73db22da8228080a64da3b7b2e1e165b967e8baf0","signature":"50857f442f5238be723595b1be7e313d12d785f23b8d6a08f3f2e4f94fd94014"},{"version":"21a8371244e7d2704793056f1fde90c2d160776a54d651b83a02832cfcbb087e","signature":"e59c8ed67961dac5560c5b74f1f943f4638f1aa0a9817c2279f50b109ba1cb4b"},{"version":"1d2b5d77437db567309d7cb1c0eecbc4b3e318055aa8d1266883fd7902538d9a","signature":"a9d0ee0a960f4a654d6a83cf5aa546668a91060fe2e4c6774d3ccad2d93b40ff"},{"version":"c47c543d06f9a5a27a6c0132d453b682bc8f0035b1e7fb784b1b427e334c737e","signature":"3f041c30fe58bda6a543ce5053aaa4e6545bc575da5e715148459c237d0c4aeb"},{"version":"72f27d9a8570ea9c9bcae89eab0c69cb8f293347315861b7b5495c691abc5329","signature":"c3ded4dc4209562a14d7849792b0d1b17c35d61d329abf9095b7a83c19ffed63"},{"version":"23f33043cbdb1340f97aa6254d8bb49fcbf8c93ff707ca6f286cf51555cacf38","signature":"e30bd91daa6884b02b94695636239df7780ce2b96b089c986580e8ab6274429c"},{"version":"c3de14541d7d33cbfb3a1eae7f19735d7d47972036895aa629da7931bf2d3bbf","signature":"5c25ec05138469a7e89e2585205744a7b8a5b169c771be8bb9f910c6927e3662"},{"version":"979e199e1562e22872ec58d571d516a2f360938337338e7b9525046d6b8d7a7e","signature":"9a4f9f18cacfc24e69eea5f930d23e3d0db175e3b3854a12e8b6444a269c2495"},{"version":"5a83a5fd2356d852269cd3a281d1e623b92d85448e9523c52a2ba2a01e774f6f","signature":"ee1b26d9ddc553d90ab174a720c391116607a9adfe49254b824fcafcd2886580"},{"version":"6a29774d4539e4f5cbba5ea0f7d7f9f5e5e7b6e0c4e66bb96743a1a7e1066b80","signature":"d81464701764517488c385bec39f99d10a1f66674c8c5274bdbcbdd0206b009a"},{"version":"e2b9cc5e2c4ce4bbe526bf635b8183b79b83225f6e3aa08adc9f2a5464791c9e","signature":"ea1e4f11add11dec0ccf65769bd82acf0c447462ca4340b951bc88490226c6ee"},{"version":"0389d6a8e7a8db5b7e57eb7e451b065bf72cde866c9a57b1c8784144a5a423be","signature":"b784cfa727ec4c4236a5c52114d7ad92da8f1891f493041de96065f2b757a57f"},{"version":"11e6fad5b5db2a5bdfbf2d137735ac2d145a4c322036cc7f10503c9cfcc7e0a6","signature":"0ac78c4e8cb60b09b84422e9959e06af8d60152baea78fc39001b3b1624deb67"},{"version":"43b8bdf6195d27ceca8f769ff1052300334cb2729253311e0f8a7f7762e58b00","signature":"56cced9d660e6b51d3578fcdb0052e4890e345d57c63b4de3bb6e9ce8c8f3f9c"},{"version":"f7359927435edb6027064c2d076f21f49c9490bdf777a5147882c1d609cc8be0","signature":"f91b51353069efcf0f2aea3bdb3d98f09c537a1521955631d4203643931b11e3"},{"version":"0136ebe7c83054a044138976a1f209ba34ba3cde9ba2a7db9811aa0653695f58","signature":"55a376436546b9d6d925278317de8d8708803a002fd835f49df0fbae4f9fa2c4"},{"version":"c808bfc9f6b166cf989a13b280e70896e3fb3785a178ef63c2c3344b0830f0cc","signature":"7b041e616713e2aafbdf5035e14a72412d34cda9320f850cd06fa2b9935f8ba6"},{"version":"b84c092789c13af0757a0b8dc435b9e3c0405ea79819e6ce726cef4779315704","signature":"8920ad55e3cfb2c1d198957c6ab48789bb772f46fe87bbff1698013071e9b523"},{"version":"1bb6e500e7681a7b0d0d2d5dc58f0c9e9c8185d1bc9002a81914017e3aa2267e","signature":"b084b7097053dd4ec6b02a413ccfc3ef114b3652119f5e76fd80a3f2826778a3"},{"version":"904c265386feea1ff8869e8ae38e4da84e76ee55fbd04f01e321bef9356c938c","signature":"63663385fed09953b1902fe7032a3e5fa97b1e6bcbb3f396113f610b0ba1cafc"},{"version":"52f3461da00bc7525b577aa46a98ef141fad9b82a9c16e56b1ec985566e8cdd5","signature":"1fda160fcdc1258598bb82754b97241bf6d77244699800b3ebfe34b665103f47"},{"version":"da88ca52851671ed65784ad625e8e11e5596c27240b935e36fa1619c6fcc1879","signature":"321bcc391374ff0caefc0e7b8978b75d358fb24af3dcdb66fffded2f0a9b7b5e"},{"version":"df8eb2d959bb423b00d62b0c1fd333f6415b42cc23dcdc6b62215538ed76984e","signature":"8148e36e0de116881f3553174c70191171828238d31a26b246f84c6b183c48ed"},{"version":"e025255bc0b021f3bc3eb56242f648b6e899accca1ca3f0c6b371e179d0c1cff","signature":"e66656ce50c456f182577b4704fdac09bdf929b82d8f06ba41e372e2e09be3a0"},{"version":"87a58bc0440c330e04c20eb140acf10c038d0e58414c959d1d6caf642bdf587c","signature":"cb811b5b6b73e429ec0d91ee23f96f467f0c56dc66af2a29a0ae7797d6411a37"},{"version":"757c2ae1c9fd9920763ca9dda0d7a4ced286bcde0c98f2c25673bffaf9c3e1a4","signature":"4be6ac2333782a8b681f7a5705552e2576f8fddc2fa37eea4d51e7ccbebb994f"},{"version":"b5cd29a28fc673f22eb888867c2b4c94208e57c980058ada62e24151f0f6dd8f","signature":"540c899decc6dc78d526d31d04ad82fee10474ba39c59a3e6a5e7372d3465fec"},{"version":"249ed5d3ca9b1123596569ffbe0964c1d641f37b3a1fb4837c0135b6d9657198","signature":"f4a0faf403f5489e7d6f09a874cc2bb6960444bc3e02076dc14fdf8686424e16"},{"version":"023cc42ea1bb71b72b908990572cdbece32cb258ea0173e35699b451dd27e6a8","signature":"07aa35d01ce4a1cab1c7fe269aae01f202859ecd99b36893ce2094149661a591"},{"version":"0d43d31a754c3eb41b26ccf92d780a1c27d6b3535728f6093e94e4fa661fc1ed","signature":"271e99e0c324e26bd278648011a83173922c480a731fab912b58af5dfe0cb8dc"},{"version":"84933a2f6ebc5537dcfa73b3b94fbf4fab498057d7debe6a7cdce0bc41683ca3","signature":"e3bbf32f4dae016fa6f2ff1fdb645249d8852cb2aa2151aaf00c0c452312d57b"},{"version":"096fd133645b67bb754a5fe1c20b80d309986435eebb7b8e5895cddd6e6b802b","signature":"0be76a2f21df0e0a304019f018418cbf583c49ce019a9a8a369b6cd0a94614ef"},{"version":"b66b6fb7d903a76aa4a121ad59a0f43a0afa881a85697f4ea2ea809ac0a8f083","signature":"ee155fcc8f4dcadf471955f1ea38659e372ee0cb846560cda2151520b885ac5a"},{"version":"410ebaaadb0f4802a06c56989df7fa76dfa7626e28ec2c9b28c98025842ee710","signature":"ca2b423a3ef4ff9917f6da407d2a4c62723977a07a2f8ed89b8cf7f817db3cf0"},{"version":"9f6e56184f4448fc232eef2ffdf1eea806857c71b2922f7b89043459d7913e8a","signature":"a8cad6211b70c8b08acc95c8179af84628d6a5919be513e473e396cb63bb9ca0"},{"version":"c44a4cddef6a49b640c940382cc3c6ea14303b5930ed6fdbe94a30aa71aa3fb8","signature":"039a6a342389add854b565f941334c39d91c5d85b393bc5a7c874e1643d5a973"},{"version":"ff42045388ccae2f43b79d1486b876a03f12b183ce36d809bada2ff060593e2a","signature":"18268a822da909628186667d5bc3191b7755a169fe5729ac692dfc5fafad1c2a"},{"version":"bf74a88ebb37063a2744f7e7069afa4e4bfe7256b1ce34950b53aabcb71cf5d0","signature":"834f79dde69fea27e456fd6d860c42ffb7d03b3ae9bfaa986b01314d68daedea"},{"version":"e42883d6e388801139c5b055d747be8c795329f0ae7700f4c854757e3fcb5ca3","signature":"379554d1868bccadbefd8a7763ecb824422fbaead25b5eaccbd742bba73b10bb"},{"version":"6a07e11f9436d7c73e71c512fceeef30e00d5a9e8f16267e521115998677d0b0","signature":"2f6bb652fe8f9a76b6129adf9fb9a6675cb43a6803bf1635b612856102a27fe6"},{"version":"2dcf98f509f06606108416e29d168387d033c5a64b2509c87a426b05a0993010","signature":"1b53ce68d99fdc7e8235816e6767ea71aaa6c84e88904d8624c6c849426c55ac"},{"version":"1b8f8e57013a3f062a658e3eac57a87cb1490adc954bee8d1dcdeddde57f5571","signature":"0735e6db231599fb8694da48bbd4d3135051c67c566356629589827536cc6f49"},{"version":"df3f3d58dcd816424bde8ee0f67c44bb0f991b8057f158d51ea204ac32dc67c2","signature":"c80a905538b838311fdba8b6db11962029a0a2796f817dd38b83d8c88e7e80a3"},{"version":"3af9b588acf640438b7614b003415e8910b9c4fc8b8b6c8177072049cb9d894c","signature":"b41f0022b1b83652b5c213a230243ff61305b1ef1e3170d62e9dda1236fc20c1"},{"version":"ff6cb13aae76fab2ab2c3c324e6f3755c064bd214203a9e9c26264f7d6f34858","signature":"ae390e10603d9f9c86985e73f6f60974c3d206f5de5b0eb9bddf90bc1563f72f"},{"version":"c6005ba24e2710ed0d652ab2b62330ba7089031d019e325eae14c63b0ce60877","signature":"1755e7597c5adf89fcf41ab095f8bd0a054f7ea6e4a4232d47eb4bb767245d27"},{"version":"b3c2006b1f8203088e0836a281bf1618d7ce4da21bf57851080d29434442fe7c","signature":"153312d5a138938653b99d157539faaf4a5820bd43903956ab3f03ee897b9127"},{"version":"d13ea54ce64b49e59f650bb47810b302395729f4372e5b9679c4ac5227810c0b","signature":"d0441c94a025a4f961d4b2e7e66393440df22bd519163615fff8b26b6d29a4dd"},{"version":"e49c67d9bdbe17ea69b0124b3325c5fb2603582e12c61eea215705d4c6308fd6","signature":"317c2656e8f955167468c62b40ef8ee4fa9064f137c512a9aa19b081ac0ac580"},{"version":"eea37122f2a5b229337d0fba63b2ad5b2d600ffe15a9839e42f277303ac76193","signature":"d3ee31d90664b9484f0839ebe02c3563bccdd1cb39a1ba4f0d1690e1d3ec79b6"},{"version":"8aec960866d733b968974ca9460bd8ad119b6bb612c6679be7267779f47f5fee","signature":"8f0c26d54e029a38357a4b14f3aaab0bbd6eb54e9cf18094ad8809ada6c9fd60"},{"version":"8b08fea1cc1bf8ce4e1bf28e1ccf2f1068f1d37fe96f89c5a2bf12d60b66da8a","signature":"6b0a9e459eca1a052504880b6ba9d84c6d075a1689fea1a7a89c53636f827fcd"},{"version":"5d0c4ac6956ab3c747da060bfaa879531b62b801368b06487c0f0da1decb5ede","signature":"c9bb1d5ca0e5b9610e6c1bd929f70243dda3d88c74c393c739306d132986905b"},{"version":"1c37a730fd26b3c1a7cd5e9d827b058f7abb3da6030200315fc64b8d44a4defe","signature":"34670c3a8e897e8c7b0afdfbe736ace9533624e6f4c944736de252aa0495fb12"},{"version":"08cabcb8bcbbf79b4f635598a7ad6a9c9bb8ff5b2721159d79ca50d5569d7de5","signature":"064d830375455e0a666c367dad2c725c2439a9761152a64fc1467c656e48cfc5"},{"version":"ba69b433acb4e1c0d8d040cd22233b720344459ac43f09bcf0206021dfa37566","signature":"ef06b8b817120ff8cc261bcc65fe36d32b96b2c670ec11b1af8287855d33151b"},{"version":"c9fa455a762b42231098941636ab5e315d6b85e8ae29a36f926c5bf206de84f9","signature":"97b0f7e4453bb3ce9d85e861e1614c5843932676fc6b10f7cc8a5580257ac965"},{"version":"1f9bd12188f70a7d16e40d00b79c7cd202cde44e55b7c15b3541b26de5eeeb5b","signature":"4c9a236b21afa36c8307d69dbf13e0078f6fed91137186610767ad210e7d9544"},{"version":"3471e36b170580165fc525fa8a67149a292e2e076b04c7b7ad9d95284e6da7dc","signature":"5d4518b98c777830d557579c93491b4ee1c2c5557831a39170afc3e7a4223930"},{"version":"ed22b0dd255008a1dc6204bb7b99e0506af49d96f8e15377466a8f5c38d12600","signature":"eea7fe50a4747ae002ab861c59cc3bfa128da6933d5961f6352919f8b897b6a0"},{"version":"5e5f1d2dd9b2b656da2f877d0107849f3fa9bc5b3751e902ad402de26e2d5914","signature":"e965dff8d258d36d7ea140ac0210b08cbf96effdf54d8ffc1c8c92bab55aa023"},{"version":"a5f8fcea3fd88e260d3d19a33e26e1c196d130fd7f8bc8c6fbedb450a8c20976","signature":"46009b8c00bd67c38f2013293bfd5823f546b8b98851a35c91d415afc60eacbf"},{"version":"94307d8d69d9f1e70758027f4a2947e9a21f5c4b31150499c00671b5783e0f56","signature":"9fd6463ed10f7c42a8376183065631919f2e84f31fe99e157e6d518f21df75f4"},{"version":"1a60ba0e8b56999b33dff6c7c1a24bfaf8e6b63b1ecd663c224be2fc19b689db","signature":"b09161ed2865852e4ed7fe83fb698287c426efb26fd70da853e52f8dbf8ffc89"},{"version":"841ee7a20e644937d2fe26ec39d0c87a84ebc39802241c0a8d0234fb4b4a15ac","signature":"441f316c1251c2f5b6ec63f7c1e7fa88adf36824c77296457c79370d61103259"},{"version":"8957089d034c69a339d4822e1c2cbf8694a1de3c1d8487aa88dbe727cc3442b5","signature":"8bc05202e3e73ce616e240362903ada5e1e61894879ce2c828344aa5a089e61e"},{"version":"257315bfb9329d3bbd5818b307b496e064eddbb8d1fc367dfba8ce5996faf8a1","signature":"30f6db8030228f7234f8fa43bd0b22b370f8f6836e4f82b5649121862081134a"},{"version":"cafb92b263ec120a519fb3f9ebe0e2be60a13fea35a1e666d5d52f2ab66bac59","signature":"96616134093d795c95fd8223f78c5cae5bda72130ce964def51a9766d28fe8dd"},{"version":"0c5f112b6d3377b9e8214d8920e1a69d8098b881d941f2ab3ca45234d13d68de","impliedFormat":1},{"version":"c026a652ea9f7996bc1fdade688e1d69628785d188a040411de8281600bbb254","signature":"33d5e6abc5e99cca67e6416c0bde5e3783b0e458721249a907a529e0f374129a"},{"version":"5baf5725fb6078e2b5fcab4987793eb75eb2c6a304d2987648356bd39e82ae5e","signature":"3a42684f26cb0bea5d26ea54c8466f78530ab3b49fa2ced1f7b62b9c4b3d5215"},{"version":"f87330e9e708089ec1b2e91dedb74b2f11da77498dcd71f0f0107bc068b9361b","signature":"02512c99da16195171368da2f211af263ace1c5e64e73a6e586000a58bbc0de4"},{"version":"fa1c1903a5a2432dae0dc720d2d5bb394a315d9eb9b4b4ca6c56b5494d96b6f6","impliedFormat":99},{"version":"486f138814ebf07bb1a916eff118ebd4a11b78dc5cb9458b773138427bfbd479","impliedFormat":99},{"version":"9c255c6bd680e45b2c13fd380d7f085990966237376df4c96884623215f364cb","impliedFormat":99},{"version":"a89b6eb3e3dc5e077e3d964290ecb6f6a8c632875c924966e61d55acae36b07c","impliedFormat":99},{"version":"079c4ecb58382932e83577353a9871adec6cb5a02ef153f6b2da9655e05d3247","impliedFormat":99},{"version":"5ad7899393a8147eb0643dd0002af042781ac4123eaaa9db28b2c325f86fba29","signature":"e586d7e8abd5ec9fd16bd59545d8201f4fda47fcc98c5e79cd6853bd0d267de7"},{"version":"7846fd15b45a2dc15c94ebaddd44eeb9602fc9f076e245fdbfedb63b1ccde00c","signature":"a6e87f0ea498f04ed531d3409797ca08067077031b9bea3f622cb7e5b42fe668"},{"version":"a51f232f42e32abe90c1675253ccfece967e043883f340d0d11aef7a27a50841","signature":"96888b5969854649813c19c370f7203776b6cd18aa52393f5ccd23b073d9976a"},{"version":"50d962f40672e6d3a4f15c97fdaff64d5cbe086f867b1f7ab87f602558bdbefd","signature":"cec1353bebec07b2734ce17a20c2c8fb17668b5a87a3add830840d1c2c5df03a"},{"version":"2bcab7ecb42e5c2e7631f024675d8e587db554ee0ee645af7792cdb596d89ba7","signature":"fff6a04272ec93c1b3458c5340028dac49dd398ffd75e1807a570ca2e1bfaa9f"},{"version":"1d9813dad91422f613af5eb17cf46952487a23fa37d01a0d7b07a37250a1421f","signature":"c1e148c5b541265da750b538c857bd92e206e7122f049f924bde9bec85ebec51"},{"version":"198ccaab1b18c55ea35c92a210500ec30f05740dae531a3376600897b239a2f7","signature":"63fb78c64bcc3f14822124a09abb930af39c6c0aadb11ada5f9338a822c927bf"},{"version":"0734de13f62b19911a00090d523fa0f6e79fd816919b24ca141316db3c639915","signature":"e5a816732cfbf6d8d643e6206e3a6fbbc4fdaf534a0f7599b157c9a317984094"},{"version":"e884fae30f5b2515a4194dc64ccc607640e3dcc5b83c3f41951054045104a444","signature":"3acf19280775807471362b09994c0f00f64ed24079d5e1d46c83e5a953dc5354"},{"version":"3810038865bce0eab3edc470d463d70d848d4c08e3a439989b0e438d3de1e16d","signature":"00e17b425acd39446a0460894a67d5961884cc11ec364149c0de1c2b3c69ffaa"},{"version":"84336daea2c661e946142bb97a5f296513aa33edf50b34245b791fe88e821a4c","signature":"6bf07672a59adaa594cb57030bda988cb774614bf585adb51c7d1a7ee367a933"},{"version":"f1a67f47103c253ba24402bf66719d33415af0c4bc31236454ffadac2f408e17","signature":"80c3f2efbc56e1c3deba23369d7e952d96e4193abda221d61bb2d3f862038ca5"},{"version":"98cf45e1085c68a0c093b56fdc1356e33a964c011912c5bc573989a4320e69f2","signature":"2e1d3d39e7dd27befcbd4f15cf853a7a0a054c653537e71b210ca4c6adec9109"},{"version":"49847aa87e2d9fd8b598826e8d9d2785be660491e488e2acd478b22f54360611","signature":"40366f56cd210f76125e38a6de9e113e988f9fcfe9fd34c07603437dd6dcf7e5"},{"version":"24a36071f9b036a911d58ac2fc451ba5c35a80c4c7f639d547aa707c18ab3eb7","signature":"421ef6966a7fc053086b653734fa54bf499080de33016046f9c265079d0637a1"},{"version":"c8e06d799696c305d4c69a8548252121828c130ba50e75111e3e6ba5ad348abb","signature":"a776d8d16937ff270af68d6983b78e34060f18f7cbf8fda65ef65a5bf60a1671"},{"version":"93958669f451794d558a9e47cabf7322edff1c150c48f7d449154bea904570e0","signature":"a80e7ee6b5a61e44c63bae11d8ff7c1e4585f7c21bbd377e02dc2610c63dd7c2"},{"version":"e2497f3d210fed1dd92ebc65006b2e392d4d7309bf2984a16c9b9705f6a9bdd9","signature":"055e5621706749b9d8167376adfc78aee0bea30b0c41e3cc6a0b08738e2a6b91"},{"version":"f808536d0fde0c849bb20f044116824dda196a6fc1dd83d96d7f98e5b12486b1","signature":"a76d9a842634d5ec2acee4321af6a8c140bdcb00f01ef4716056a19f52cc6630"},{"version":"da29ec2763628200ac909c3bab0b22b0240354744fa20ad7e13380c1971dda1c","signature":"4c5bc83ffa64368c638ec3eafbd51eae7f30898a1f73f7497e67add7211405e1"},{"version":"5b475e5335a8b0d9346411cf689446f610a6387951ebb305214556dce157a7a4","signature":"6b6c0ac36c79ab7cf916fc4d40a12cf021dd7e7722f11062aed82b461b4030a6"},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"e00243d23c495ca2170c9b9e20b5c92331239100b51efdc2b4401cdad859bbef","impliedFormat":1},{"version":"41ea7fd137518560e0d2af581edadadd236b685b5e2f80f083127a28e01cf0ac","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"6fa5d56af71f07dc276aae3f6f30807a9cccf758517fb39742af72e963553d80","impliedFormat":1},{"version":"819dddfec57391f8458929ca8e4377f030d42107ff6ec431e620b70b0695d530","impliedFormat":1},{"version":"701bdef1f4a13932f64c4ce89537f2c66301eb46daf30a16a436c991df568686","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"ac5f598a09eed39b957ae3d909b88126f3faf605bd4589c19e9ae85d23ef71e3","impliedFormat":1},{"version":"92abba98a71c0244a6bcdd3ad4d2e04f1d0a8bcae57d2bb865bf53d1ac86e3d0","impliedFormat":1},{"version":"d2afa0d86bc6f2e72c1cf2ecb2372bf1b0f002493706a81f2b9a3ee4f944e219","impliedFormat":1},{"version":"b244e8df6dee741a2cf8a82d603909326abe628a8395eb5b701d7b1a760bdc33","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"11454e670472321c502dfd054a8303c8608e4dac22c4bd4232ea2f376021a71f","signature":"dd269483df93124d2fccd801d2f5daed57c6bc2625314942110daab5060348f0"},{"version":"191aabf0a9bca397c501a5fe5192e97d9925d0718d0ee1a8c239011d722b737e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2570d4f8e55d6476ab393edf16cb839693bdd404b83a176ee8756fa30602edcb","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3718631fa892976ee9e7722ab3844453f3bb31b87fbd39cf924418346e7c697c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7503ffe2865cf4665695497c90bff403e72c2138a6628bf887dab8d0712c0fb0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7b9ecca8089595d2af364a611f2338a0f84672416e25ab9b6542e2f954134b04","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"039afb8e3274080e50a6300345ea03e51ea1ba788a7f3b898beca42b7b131f59","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8ca3dfc101dd8f30b475954324ef261e8429c1be07486a3c55ae2c94e793bcc8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d52b0f9593018176d4c1277cd0f6e29f6c6e6a586430130842a142afa06b4e7c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2ba223eeb09baef21540930e705ece2d137fa594dc13959cc102140e39a6e3a5","signature":"579758b6a7d22ec00c0e3670c09fa3e9d451f552c8dd06d1bd16d49990aa6c6b"},{"version":"e8656b7d06ea152a31b2cbb5d61763785db9f8a02ee46d8f568bdb6e324a5927","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2a0d2f7b71b2f8ab98e246a73187d83d6882bfaac6667298fe50b66b51fec1fb","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5ae56614fb4dd8b5025edd139b0bf99b602c36542d283fae4d03af83b46c5ef2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8e05bbc0122cbb4aae5213be71719b8cc85a43514a17d4102bee7dd541ec0048","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"27c3a5f23fbb79390759811a63e43d8d3177478a71f34e6e00cc430326d9ee44","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1e6ce4e71dca7ca50d689a725a98ac0ba566fac43345b7ad7a1fb19a2b1889e6","signature":"5ba663fdcd4f38dbfec6b510f6936aa2c40b15beff3b5011dd75a2fe13d3b569"},{"version":"70884e460105669babf6810cb4b92df28cba665cfc4691f1c1244b8f4c4b822c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0659e0a05de2abf29e7da5de037f31d664ca14d2d7f513a9d0fdb6dbd0ea8439","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"dff0393490c966f8704040fb26b4e06defac593d3424fe1f9d6fb3ddfaaf14b2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"712703436f6eab9c62de4f2544083efc24df883ba20b99767caccc6307af9f11","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0a29e02ae340b9a12f0d1651565ee14077b8aa2d986c71a5a81f5c8ebe042317","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0d612ea36d2831cedfe6ee5daf952fd29af849bf74a9a41387302eace040e825","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9f28afc5b4457a77bdd6cdfb06fe8ee22536318fda4e2ec43ab81eed1f9d71dc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"4de751526e2f8bcc23fbd52b858c80807b62adc3a5bf034f19dbe989be35e044","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a7da3ba6730a0292505f1d7f5e745bd80ad6cf3376b03c127ce2b81221ad5ff0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"53100fc8f4e83a89cc4e91ccc5dac3ca91c67930e5ed1ba0364a32a3402d5bca","signature":"c448f81f5fe87b79ab642ce929db2bb5f4e7d0564fa07ea2396bd30835911c57"},{"version":"d831e59fbe940d4c1041c5718168c86ad2d4533783d5056a9d197e5fad7aadaf","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c430124d9211354c72b9f94f6a610490d48f7b2c6b5ef0ea077682d0f4e336b8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1de6fc82bd5bc7e276de0881a0ad23b19ed6e62105789cf7bd2ecfd07dd151e5","signature":"f66c68baaa3e8d74031158c2788b0bba98b1a369156a633add550e736618eab2"},{"version":"5846995aebfa945833dac2598129ed0bdc4571fdb978e27737e831ee81ca6d26","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a531f69294cdea7e295a6b821a108f2dd6a15c8461e83c080f2269230968ab1f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cfd6807015e1abaca2c0daf2a0a0536b1470ee0fa3bfb48ca04fa4c93e9ae955","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1e75fcf97bdaa08cda7f54196ac97f4cee497af18ef723e6c2a48a39a670ce47","impliedFormat":99},{"version":"0f702d0a5790481cddf452a3bad18fc24ee4b9fcaa2efa1e5316bb7dcb09584c","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"1f2ad37ae1e1e0fa357855c7d250a1b5aca60b7a340478eecc217c797b5e401a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"d77872634438ddef35908f7176faaf6b8078c136999d2ae536a9c30f568dab93","signature":"c422744057f37316ae1836ec6b97ae8cd18b36f8a4a78e14da54c511b437c274"},{"version":"22b41110a03d147578a4f74783040b2cd29e8f4ec0be0d75457bb4ee40695838","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ccc3edc14f61f94e25aa6cbc9a661d3987b69150f0e65bb519b0a7cbe4afcc0a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a71b6ffaf7aca117798c2d90176814d5f2b8b0583406b0e4c871f1ed5a5a8e7e","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"775faf0e053a9e2a91a1bb3be5335b2b6e8d9e90c7dc3b8f774241dd5b035a35","signature":"b09ef0ed99ca75e2065831e5510a5ef9f6ccad99c3f1d335264d332e7f86f943"},{"version":"0754a9425f0b91354765e42f87707aef831b7d484c2e7a3b96438391ccf29da3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bde74e39eebb7d4fbd30e2561eab3c0f9455d7d7c2f644b59c50a1efefbd6740","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"692160b4000861b73ca46f4218a7ea51e4948b86828afe9eccaa198457462724","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3654dc81e408c8ccef25df44e3f452d99fe9caa9e89999c9bad80b14c99c8597","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e30cc712d69aa131f354312843cce73cf2d5d25aa931ee9631d3870af47f402f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c4b41f1a4b7638a3fdad81a54825c16dd5cacca2f67feac7749e0356c3612369","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e562676dd701ae445314904e753fde72777d4f3fdb405c1e183072b3bb40e6ac","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"13632e05505ca96972ca24867386e68d32e64012fa036d24f7c4c8aaddecde80","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2b958dfcef4bf302fc77cb819bf7f9707f16af472309e0379947fc097f4ed60a","signature":"831edfce56bdc368f78e84e5c0915b679e3e0651d3ac45e58bbb614204a1db30"},{"version":"71b4976d8f65cc2446cdb4f21ceba925982c07ee6deff7f59fdcffd110e317ff","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"647cce30d3bf58a21a368b276aeba0f338102384a991e39ddfbd089bf92f5ce7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"89a5d715c52292c64dabae8e21307d62a596e3f5238f8bf92d6613e409601df4","signature":"8b784f5be846d82403d9919c86943da4d9766a091188fa1da4a7aa27d338cf95"},{"version":"83e68fdff00a3cf859f7d43f7352de4fccc8ae940ecf35e315a22b86f22060f8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"818fc46ef350037fe98f8661294a57669213419efd879946ab03e3669706c6cc","signature":"e83431a93b590e9b6297350e7dca3101bd0141a207c058266cc4c4bb30ba2d35"},{"version":"2c8db0964d3df2ad1e927a88b7ee998069f8c23955abb31fb6cc093272eef6a5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b704e0e56845f97d62ede3116532ab4c3837148033eebfb58d516efb1f1787db","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e58252042e62abc53557fc82af79ad7399c15366afc5ba0b99d6c3b7ae20bd44","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7ab56c890f0d07eaa6409c3a33c99a6c4cebe9212fd1a87f32883d5bc31c2ed4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"12ad3781e1b9186334bd37955e77e3b4195dfca604ad82a82087ad2d68ccfc96","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d83e4d868cc5017b43e8966b42e5faef14a0e4b7b64fe182d42b1bbff61d53c6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"797097db864d88c6e5262e4d70ffc390f93cff8df9869c2d47c21930da473f92","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bd0e7bf0a8fe3cce4ba0ad016a57c50f345d67b8b705e8ffdfa209a7bff4d505","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"aa7a03b7bd919a41228cdbdebdb171e2bd38bb9e24f0e9e1e7d12f77c61a5bb5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0844e71deec8c4ad63ebeeadce544728adc57d3e72c85367938356602a157085","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9737f4c2faea275a2691d8fff099bc5fd30ddc5ef3c90565d78a23a3f4f4deb7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"4366a92f712022e591dea4163840c36a15818f4d5f927e65a537f2b73b93d8cc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"30b5a8cfac290f8a8300a28c5135d3a115ea7a853cf71e3d279fe706022bad5c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"94b88397bba39b5bac421f26029b4b9a42b05788bde01ace2b88027e685a7205","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"af95edeee50ec3d534566a6088336609983f5d9a0ca2ee74e4f6f492d6b054c8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c83b8c977dac8abb45bc779797b2e4a592bcd90c17312151bf523a18b9befaa9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"686dc8b8bcdf981ea916b93a65920586d20395a9623a17f3b82bf79c2abf36d1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"47df1889d3600a492ce901a6b03b2e7faf091d497b0895a147aa5b88e4505a30","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"705a499edc34b9a1ac052ec277341b8e5158301e0680c088183f0057cd40be1d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"98f6ea9cfe008239ea6a32341af70e1637ad6e5531590f993c257124f70efbda","signature":"aaecec5c7826e8b235d667e7fe0f05b70c2cff9ab9280f8f2b600075ed5a742b","affectsGlobalScope":true},{"version":"aa627b9874b9e75be9e2cc1add1bf093084dc03ab230b246e10c848b0753484c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"31221b5eb450f5876c69f1206fcacf72d1f64a6af5dba092613980767c4c1d57","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"24ee89bc26a93ab11ecd92c1b4864d662f09919b5dbbc79f9e438c3848771e3e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3c0ae2eb073def875af7f3c7694ed8a00278c14faaf834c49f98d8c75d6a260e","signature":"7ea4cc76b12a6b8353f28131e6e93faaeb1591b85711293261f95612a0733169"},{"version":"d4eb916c682dda2107bf4dcaa47ec365c0e71d47fe585a9029729c9194d11697","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"436c48668d4bbf5046c2a00f67bae60ac2397e3727b330787e55e9a0311740b1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d30d18d42e1fe77fddc8fbf1cd188f3bcc5a107a880a15baba313c37fe71654e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1097afe5effcd8613a2db93f929fb9c441d6cb79185a32150bb1a8f9ab188ee2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c660def2dcf5d13a71769e3ff35791ab534edf456b6e4593da3ef86e448ad18c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0b76fe2cff821019343b3237443e99ac38766d50238895e2f1911f63c010799b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"62e7b6905c40aab572ca8f2a04cf84870c874a7f1de635604a1bf918e79cd452","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3e8dca6e209fc311d07bad12334c634e83bfd830e2f19b17bf6f21444959a2dd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"99c37326e7fb82caa970a72e29f2d6221d977091233cf01f0412c6eaf7de2e11","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"598178490f2e801f9ee51337228241930576f793ccc42f9d6e2f612d4cdfc980","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0b900f25a6721eeded0dd2ff79f0105d5296fb0db42b69f0c960c7ea9d05571b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1c8d08c8bc1f6756fe7099b4145e9bfc5feb419805aad21ad6631970a5c5ce9a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c4fbdf432eefcacec382a0334dfd6b8d04db298a51c1b4472e230ddbfbebbf7e","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"ea8e5d5c86a193aff8a88716bcd2eab601ecfe4f8e332a752611e22590f8acdb","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"748aac6880da50342f3da1a1629703e10b1ef02d6d645a15b329a541f41f12e0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"88e43a3429bca65efe2809bc3332403c59247131aa49d155887c2331e84258e2","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"94631e292c43e840614db73f7a77267b9a474ccb81cf87f2d873cfc0da21e132","signature":"16f1a7c5177d4d1a5a040f7cfd5c8c4005e7ae81f30a21eb08035525dadd9c6b"},{"version":"d3db12713251b1fbb7d7aa315e75651f21725c04e12bbb6db1cbd839c3ef571a","signature":"a5230cc3a6cd15c80b6b6729cad94b28232d49418b54895d5b944c1f2aa4e581"},{"version":"5e4b9fdcee44f2595a49c6f56eb7c0945fe8647dfee18ef9ca809d66874e787d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bad012d868eaf038dd4eb7111bf9cc130d54e09ccf55a76fcbe4fa000518472f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e83bb6ebd5e0780c5d2913e8477c64b276927780f08c474324e8de3882123b70","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"11d4c38ddfa109eab84d6eae463adbfe2a6b9f8c137821f2e9099b7f7f6b21c8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1bbe5f0e3b3a07620a4272b3dd1e5e04446c6102e026c47236acea18eeb344c3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"194a2a7d2dac0cc279324647fc57f1430eac5ace21c61861b876274157523f5e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"81b94da141b40d43fce60ef645421e633966eaef3e1e451ee763ed45374d84c8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cfce7bc48480935b5871bf135107b1eaa225ff70cc546608203af16246144e3d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5a6dae955ae57804e345b4ef84ea67cc83ea9e6c5a3ab6d5f810265efc4ab6a2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ff0a26fcfaff5f3c5b638dc2097b396ecdb80c0ebf475b2656ab3d865e6ff88e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"795df7cd0927404f4ddd72aff1697537a189df86a1901b5d83a8fc1c51102850","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"4efc4ce992c2c5aef9f39b708ae32ae25bdff23a890e7e0d19067d8fdd08fce5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ae34c2f557104a51d6ae8ba8fd71f12f36bfd35f8100383398a4c461f39fa229","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2cfa1c648992e750905105ee46f23232043d224cf8e861c5342cd53370dfe559","signature":"ab3c69774a8174f840828f89c93f7640dbf175724a3cf56985025185643677af"},{"version":"9b00a88dd1cc096d2cdeed4e41de6bad18104d82c8baa58ffa9902ad924b92f3","signature":"f3143f5de764ea365f9d0b1f9b54c390465a0f04c825f6a736ed002ff87da8f4"},{"version":"138d2be8b8c3cf77ea0ea3203c13caba7032af5ea0ec91085da8641259775c75","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5650afe833c9a9776a47984db2cbf16cab8c1528a2bd791a46f72240cc492570","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3099b5e21f4847a9e32e0b13cd2c087c4a767b21212ca149fc8e5f863d1d8ac2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bccf0691916be24573fef7e4bd27e259b8a1627c24489eeaa42ef8d98e0e8a00","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3b25320bd818a5cb3486125b806adbfc87ec4ec4f09bb1c77bf405546315a520","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f7d4897012d50948b30bb2038ec8f0afb50a0a4be884a0712fa3e69c000fc1bf","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a517a027f5ceb3b40137512542be064610bbbdc328ae5a19f154945e429b1388","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"860a91e8394481825d63720e1c8ec9dc147b87cf9e61bafade79ae0b1e655efd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d816ba56f3e3c349c5243c238a69e35d8d2d0afdf463ef9211b28fab480f6b26","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3502ae3b987ee4e99e9cc05644ceb222181970f20ac986a27a640be7ec58799f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b33b42419fa932e6dcc5199db0196b3f127e2aa1644291534a97b69d21f24641","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"4665a9a73bf7f0cbab9056589267950eb29fefb4519d73af96e573535feda997","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"98b9d0e51b3bfa085a542a235398ee424526a838c70294afeb8d34b24d165ed8","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"d3cc9fc3d7e4c5bfd182170e22145fecd5dc5ef7304e07b02137a8a256afa628","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"ca7c6c0d4d9b0bfe3b4486bda0cbb8eed6438950df0b22c81909f6ce6f49f2a9","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"4fc70a527745d7fda0bdf3a5ea91d61505a70f6eee2b92294ada7a03e7d6f305","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"63cd4ba4703509fbbf3f2b86bb33afa53d753a5c3cb26f6752c714a33b8df534","signature":"b49fd5d5843c0fc5362222331c9848c9bc0f56fbe08dccadc27b9c227b9875d9"},{"version":"a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"fbe7eb4fe6af8f00d604ed48e81c894edc10e7d58b71767a404fcef1fe6e254e","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06","impliedFormat":1}],"root":[187,188,[297,377],[383,471],[473,475],[481,501],[524,556],558,559,[561,653]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noImplicitAny":false,"noImplicitOverride":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"referencedMap":[[656,1],[654,2],[477,3],[476,4],[480,5],[479,6],[478,4],[186,7],[151,8],[148,9],[152,10],[149,11],[150,11],[161,12],[162,13],[165,14],[155,15],[154,16],[164,17],[163,16],[153,18],[157,19],[158,20],[160,21],[159,22],[156,19],[119,23],[122,24],[120,24],[124,25],[121,2],[123,26],[176,27],[177,28],[178,29],[175,30],[184,31],[185,32],[182,19],[183,33],[117,24],[118,34],[116,24],[170,35],[166,2],[169,36],[167,37],[168,38],[55,39],[54,40],[58,41],[64,42],[66,2],[82,43],[56,44],[52,45],[57,46],[60,47],[61,48],[62,49],[67,2],[53,50],[80,51],[81,2],[59,52],[63,45],[79,53],[65,45],[181,54],[180,55],[179,30],[97,56],[71,57],[83,2],[69,58],[68,2],[86,2],[87,59],[85,60],[84,61],[96,62],[88,63],[95,64],[89,65],[70,57],[174,66],[173,2],[172,19],[171,2],[126,67],[125,2],[92,68],[93,69],[91,70],[74,71],[102,72],[110,73],[111,74],[109,75],[103,72],[75,2],[113,76],[114,77],[115,78],[112,76],[100,79],[99,80],[98,81],[73,71],[105,82],[104,82],[107,82],[101,2],[108,83],[106,82],[94,84],[76,85],[77,86],[78,60],[72,87],[128,88],[147,89],[127,90],[129,88],[144,19],[143,91],[146,92],[145,93],[140,2],[138,2],[142,94],[141,94],[137,19],[139,93],[136,95],[90,2],[130,19],[131,2],[135,2],[134,2],[133,2],[132,19],[515,96],[516,2],[522,97],[514,98],[523,99],[509,100],[510,101],[508,2],[659,102],[655,1],[657,103],[658,1],[560,104],[660,2],[663,105],[664,106],[504,2],[506,107],[507,108],[666,2],[665,109],[661,110],[662,2],[233,111],[234,111],[235,112],[194,113],[236,114],[237,115],[238,116],[189,2],[192,117],[190,2],[191,2],[239,118],[240,119],[241,120],[242,121],[243,122],[244,123],[245,123],[247,2],[246,124],[248,125],[249,126],[250,127],[232,128],[193,2],[251,129],[252,130],[253,131],[286,132],[254,133],[255,134],[256,135],[257,136],[258,137],[259,138],[260,139],[261,140],[262,141],[263,142],[264,142],[265,143],[266,2],[267,2],[268,144],[270,145],[269,146],[271,147],[272,148],[273,149],[274,150],[275,151],[276,152],[277,153],[278,154],[279,155],[280,156],[281,157],[282,158],[283,159],[284,160],[285,161],[512,2],[502,2],[503,162],[505,2],[472,163],[520,164],[557,2],[381,2],[380,2],[379,165],[382,166],[378,167],[518,168],[519,169],[513,170],[511,2],[521,171],[296,172],[294,2],[295,2],[517,173],[289,174],[291,175],[287,2],[290,174],[293,176],[292,2],[288,177],[49,2],[50,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[51,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[12,2],[11,2],[210,178],[220,179],[209,178],[230,180],[201,181],[200,182],[229,183],[223,184],[228,185],[203,186],[217,187],[202,188],[226,189],[198,190],[197,183],[227,191],[199,192],[204,193],[205,2],[208,193],[195,2],[231,194],[221,195],[212,196],[213,197],[215,198],[211,199],[214,200],[224,183],[206,201],[207,202],[216,203],[196,204],[219,195],[218,193],[222,2],[225,205],[524,206],[526,207],[527,208],[528,209],[525,2],[529,207],[530,208],[531,208],[532,208],[533,209],[188,210],[497,211],[451,212],[500,213],[501,214],[535,215],[440,216],[496,217],[432,218],[438,219],[433,220],[431,220],[435,221],[434,222],[428,223],[436,224],[429,220],[437,225],[430,220],[439,226],[427,227],[536,228],[537,210],[539,4],[538,229],[302,4],[309,230],[187,4],[300,4],[297,4],[299,231],[308,232],[301,233],[454,234],[298,235],[541,236],[542,237],[543,236],[544,228],[545,238],[546,239],[547,239],[548,240],[549,241],[551,242],[552,243],[425,244],[562,245],[563,246],[564,247],[561,248],[305,249],[393,250],[396,251],[395,252],[306,253],[337,4],[334,2],[342,254],[394,255],[397,256],[491,257],[307,258],[422,259],[489,260],[419,261],[423,262],[490,263],[420,264],[494,265],[424,266],[421,267],[554,268],[555,269],[556,270],[398,271],[400,272],[401,273],[414,274],[492,275],[399,276],[553,277],[415,278],[493,279],[412,280],[413,281],[558,282],[559,283],[416,284],[486,285],[344,286],[418,287],[487,288],[488,289],[417,290],[566,291],[567,292],[568,293],[569,294],[346,295],[341,296],[565,297],[343,298],[345,299],[339,300],[485,301],[333,2],[336,249],[340,2],[338,302],[409,303],[495,304],[426,305],[550,306],[404,307],[540,308],[571,309],[570,310],[406,311],[407,312],[405,313],[408,314],[402,4],[411,315],[403,316],[410,317],[473,318],[441,319],[465,320],[455,321],[457,322],[458,323],[459,324],[461,325],[456,325],[460,326],[442,327],[443,210],[575,328],[576,329],[572,330],[573,331],[484,332],[392,333],[499,334],[580,335],[579,2],[578,336],[321,337],[332,338],[328,339],[320,340],[356,341],[347,342],[385,343],[468,344],[384,345],[326,346],[387,347],[469,348],[386,349],[331,350],[325,351],[467,352],[389,353],[470,354],[388,355],[577,2],[327,356],[581,357],[376,358],[498,359],[481,360],[582,361],[583,362],[584,363],[585,364],[586,365],[587,366],[588,367],[589,368],[590,369],[595,370],[591,371],[592,372],[593,373],[594,374],[596,375],[360,376],[361,377],[362,378],[363,379],[364,380],[365,381],[366,382],[367,383],[319,384],[318,385],[373,386],[368,387],[369,388],[370,389],[371,390],[374,391],[372,392],[466,393],[383,394],[453,395],[348,396],[349,396],[324,239],[350,239],[303,397],[329,239],[330,239],[351,239],[316,239],[317,239],[452,239],[352,239],[323,396],[353,239],[354,239],[355,239],[390,398],[471,399],[359,400],[357,401],[358,402],[391,403],[483,404],[482,405],[377,406],[597,407],[322,408],[574,409],[463,410],[475,411],[315,412],[313,4],[335,413],[312,414],[310,2],[314,4],[474,2],[304,4],[311,415],[598,416],[444,2],[447,417],[445,417],[446,417],[448,418],[464,419],[449,420],[375,421],[450,4],[462,4],[634,237],[599,2],[635,422],[636,423],[637,424],[638,425],[641,426],[642,426],[643,427],[647,428],[648,429],[649,429],[650,430],[651,428],[652,428],[653,431],[644,426],[639,432],[640,433],[645,434],[646,435],[621,436],[534,437],[601,438],[602,439],[603,440],[604,425],[605,441],[606,425],[607,441],[608,425],[609,442],[610,443],[611,444],[612,443],[613,237],[614,427],[615,443],[616,445],[617,438],[618,438],[619,446],[620,447],[622,448],[623,449],[624,450],[625,451],[600,452],[626,453],[627,454],[628,455],[631,456],[629,426],[630,457],[632,458],[633,459]],"latestChangedDtsFile":"./test/storage/idb/update.test.d.ts","version":"5.9.2"}
|