@mainnet-cash/bcmr 2.7.27 → 2.7.31
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.
|
@@ -57,7 +57,7 @@ eval("/**\n * Helpers.\n */\n\nvar s = 1000;\nvar m = s * 60;\nvar h = m * 60;\n
|
|
|
57
57
|
/***/ ((module, __webpack_exports__, __webpack_require__) => {
|
|
58
58
|
|
|
59
59
|
"use strict";
|
|
60
|
-
eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"BCMR\": () => (/* binding */ BCMR)\n/* harmony export */ });\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/wallet/model.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/interface.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/network/Connection.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, mainnet_js__WEBPACK_IMPORTED_MODULE_3__, mainnet_js__WEBPACK_IMPORTED_MODULE_4__, mainnet_js__WEBPACK_IMPORTED_MODULE_6__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__]);\n([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, mainnet_js__WEBPACK_IMPORTED_MODULE_3__, mainnet_js__WEBPACK_IMPORTED_MODULE_4__, mainnet_js__WEBPACK_IMPORTED_MODULE_6__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n// Implementation of CHIP-BCMR v2.0.0-draft, refer to https://github.com/bitjson/chip-bcmr\nclass BCMR {\n // List of tracked registries\n static { this.metadataRegistries = []; }\n static getRegistries() {\n return this.metadataRegistries;\n }\n static resetRegistries() {\n this.metadataRegistries = [];\n }\n /**\n * fetchMetadataRegistry Fetch the BCMR registry JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n * @returns {Registry} resolved registry\n */\n static async fetchMetadataRegistry(uri, contentHash) {\n if (uri.indexOf(\"https://\") < 0) {\n uri = `https://${uri}`;\n }\n // content hashes HTTPS Publication Outputs per spec\n if (contentHash) {\n // request as text and verify hash\n const response = await fetch(uri);\n const data = await response.text();\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.utf8ToBin)(data)));\n if (contentHash != hash) {\n throw new Error(`Content hash mismatch for URI: ${uri}\\nreceived: ${hash}\\nrequired: ${contentHash}`);\n }\n return JSON.parse(data);\n }\n // request as JSON\n const response = await fetch(uri);\n const data = await response.json();\n return data;\n }\n /**\n * addMetadataRegistry Add the metadata registry to the list of tracked registries\n *\n * @param {Registry} registry Registry object per schema specification, see https://raw.githubusercontent.com/bitjson/chip-bcmr/master/bcmr-v1.schema.json\n *\n */\n static addMetadataRegistry(registry) {\n if (this.metadataRegistries.some((val) => JSON.stringify(val) === JSON.stringify(registry))) {\n return;\n }\n this.metadataRegistries.push(registry);\n }\n /**\n * addMetadataRegistryFromUri Add the metadata registry by fetching a JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n */\n static async addMetadataRegistryFromUri(uri, contentHash) {\n const registry = await this.fetchMetadataRegistry(uri, contentHash);\n this.addMetadataRegistry(registry);\n }\n // helper function to enforce the constraints on the 0th output, decode the BCMR's OP_RETURN data\n // returns resolved AuthChainElement\n static makeAuthChainElement(rawTx, hash) {\n let opReturns;\n let spends0thOutput = false;\n if (rawTx.hasOwnProperty(\"vout\")) {\n const electrumTransaction = rawTx;\n opReturns = electrumTransaction.vout\n .filter((val) => val.scriptPubKey.type === \"nulldata\")\n .map((val) => val.scriptPubKey.hex);\n spends0thOutput = electrumTransaction.vin.some((val) => val.vout === 0);\n }\n else {\n const libauthTransaction = rawTx;\n opReturns = libauthTransaction.outputs\n .map((val) => (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(val.lockingBytecode))\n .filter((val) => val.indexOf(\"6a\") === 0);\n spends0thOutput = libauthTransaction.inputs.some((val) => val.outpointIndex === 0);\n }\n if (!spends0thOutput) {\n throw new Error(\"Invalid authchain transaction (does not spend 0th output of previous transaction)\");\n }\n const bcmrOpReturns = opReturns.filter((val) => val.indexOf(\"6a0442434d52\") === 0 ||\n val.indexOf(\"6a4c0442434d52\") === 0 ||\n val.indexOf(\"6a4d040042434d52\") === 0 ||\n val.indexOf(\"6a4e0400000042434d52\") === 0);\n if (bcmrOpReturns.length === 0) {\n return {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n }\n const opReturnHex = opReturns[0];\n const chunks = mainnet_js__WEBPACK_IMPORTED_MODULE_3__.OpReturnData.parseBinary((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(opReturnHex));\n if (chunks.length < 2) {\n throw new Error(`Malformed BCMR output: ${opReturnHex}`);\n }\n const result = {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n if (chunks.length === 2) {\n // IPFS Publication Output\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1]);\n const ipfsCid = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(chunks[1]);\n result.uris = [`ipfs://${ipfsCid}`];\n result.httpsUrl = `${mainnet_js__WEBPACK_IMPORTED_MODULE_4__.Config.DefaultIpfsGateway}${ipfsCid}`;\n }\n else {\n // URI Publication Output\n // content hash is in OP_SHA256 byte order per spec\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1].slice());\n const uris = chunks.slice(2);\n for (const uri of uris) {\n const uriString = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(uri);\n result.uris.push(uriString);\n if (result.httpsUrl) {\n continue;\n }\n if (uriString.indexOf(\"ipfs://\") === 0) {\n const ipfsCid = uriString.replace(\"ipfs://\", \"\");\n result.httpsUrl = `${mainnet_js__WEBPACK_IMPORTED_MODULE_4__.Config.DefaultIpfsGateway}${ipfsCid}`;\n }\n else if (uriString.indexOf(\"https://\") === 0) {\n result.httpsUrl = uriString;\n }\n else if (uriString.indexOf(\"https://\") === -1) {\n result.httpsUrl = uriString;\n // case for domain name specifier, like example.com\n if (uriString.indexOf(\"/\") === -1) {\n const parts = uriString.toLowerCase().split(\".\");\n if (!(parts?.[0]?.indexOf(\"baf\") === 0 && parts?.[1] === \"ipfs\")) {\n result.httpsUrl = `${result.httpsUrl}/.well-known/bitcoin-cash-metadata-registry.json`;\n }\n }\n result.httpsUrl = `https://${result.httpsUrl}`;\n }\n else {\n throw new Error(`Unsupported uri type: ${uriString}`);\n }\n }\n }\n return result;\n }\n /**\n * buildAuthChain Build an authchain - Zeroth-Descendant Transaction Chain, refer to https://github.com/bitjson/chip-bcmr#zeroth-descendant-transaction-chains\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.resolveBase (default=false) boolean flag to indicate that autchain building should resolve and verify elements back to base or be stopped at this exact chain element\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n * @param {TxI[]?} options.historyCache cached address history to be reused if authchain building proceeds with the same address, spares a flurry of Fulcrum calls\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async buildAuthChain(options) {\n if (options.network === undefined) {\n options.network = mainnet_js__WEBPACK_IMPORTED_MODULE_5__.Network.MAINNET;\n }\n if (options.followToHead === undefined) {\n options.followToHead = true;\n }\n if (options.resolveBase === undefined) {\n options.resolveBase = false;\n }\n const provider = (await (0,mainnet_js__WEBPACK_IMPORTED_MODULE_6__.initProvider)(options.network));\n if (options.rawTx === undefined) {\n options.rawTx = await provider.getRawTransactionObject(options.transactionHash);\n }\n // figure out the autchain by moving towards authhead\n const getAuthChainChild = async () => {\n const history = options.historyCache ||\n (await provider.getHistory(options.rawTx.vout[0].scriptPubKey.addresses[0]));\n const thisTx = history.find((val) => val.tx_hash === options.transactionHash);\n let filteredHistory = history.filter((val) => val.height > 0\n ? val.height >= thisTx.height || val.height <= 0\n : val.height <= 0 && val.tx_hash !== thisTx.tx_hash);\n for (const historyTx of filteredHistory) {\n const historyRawTx = await provider.getRawTransactionObject(historyTx.tx_hash);\n const authChainVin = historyRawTx.vin.find((val) => val.txid === options.transactionHash && val.vout === 0);\n // if we've found continuation of authchain, we shall recurse into it\n if (authChainVin) {\n // reuse queried address history if the next element in chain is the same address\n const historyCache = options.rawTx.vout[0].scriptPubKey.addresses[0] ===\n historyRawTx.vout[0].scriptPubKey.addresses[0]\n ? filteredHistory\n : undefined;\n // combine the authchain element with the rest obtained\n return { rawTx: historyRawTx, historyCache };\n }\n }\n return undefined;\n };\n // make authchain element and combine with the rest obtained\n let element;\n try {\n element = BCMR.makeAuthChainElement(options.rawTx, options.rawTx.hash);\n }\n catch (error) {\n // special case for cashtoken authchain lookup by categoryId - allow to fail first lookup and inspect the genesis transaction\n // follow authchain to head and look for BCMR outputs\n const child = await getAuthChainChild();\n if (child) {\n return await BCMR.buildAuthChain({\n ...options,\n transactionHash: child.rawTx.hash,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n });\n }\n else {\n throw error;\n }\n }\n let chainBase = [];\n if (options.resolveBase) {\n // check for accelerated path if \"authchain\" extension is in registry\n const registry = await this.fetchMetadataRegistry(element.httpsUrl, element.contentHash);\n if (registry.extensions &&\n registry.extensions[\"authchain\"] &&\n Object.keys(registry.extensions[\"authchain\"]).length) {\n const chainTxArray = Object.values(registry.extensions[\"authchain\"]);\n chainBase = chainTxArray\n .map((tx) => {\n const transactionBin = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(tx);\n const decoded = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__.decodeTransaction)(transactionBin);\n if (typeof decoded === \"string\") {\n throw new Error(`Error decoding transaction ${JSON.stringify(tx)}, ${decoded}`);\n }\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(transactionBin)).reverse());\n return { decoded, hash };\n })\n .map(({ decoded, hash }) => BCMR.makeAuthChainElement(decoded, hash));\n }\n else {\n // simply go back in history towards authhead\n let stop = false;\n let tx = { ...options.rawTx };\n let maxElements = 10;\n while (stop == false || maxElements === 0) {\n const vin = tx.vin.find((val) => val.vout === 0);\n tx = await provider.getRawTransactionObject(vin.txid);\n try {\n const pastElement = BCMR.makeAuthChainElement(tx, tx.hash);\n chainBase.unshift(pastElement);\n maxElements--;\n }\n catch {\n stop = true;\n }\n }\n }\n }\n // if we follow to head, we need to locate the next transaction spending our 0th output\n // and repeat the building process recursively\n if (options.followToHead) {\n const child = await getAuthChainChild();\n if (child) {\n const chainHead = await BCMR.buildAuthChain({\n transactionHash: child.rawTx.hash,\n network: options.network,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n followToHead: options.followToHead,\n resolveBase: false,\n });\n // combine the authchain element with the rest obtained\n return [...chainBase, element, ...chainHead].filter((val) => val.httpsUrl.length);\n }\n }\n // return the last chain element (or the only found in an edge case)\n return [...chainBase, element].filter((val) => val.httpsUrl.length);\n }\n /**\n * fetchAuthChainFromChaingraph Fetch the authchain information from a trusted external indexer\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.chaingraphUrl (required) URL of a chaingraph indexer instance to fetch info from\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {string?} options.network (default=undefined) network to query the data from, specific to the queried instance,\n * can be 'mainnet', 'chipnet', or anything else.\n * if left undefined all chaingraph transactions will be looked at, disregarding the chain\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async fetchAuthChainFromChaingraph(options) {\n if (!options.chaingraphUrl) {\n throw new Error(\"Provide `chaingraphUrl` param.\");\n }\n const response = await fetch(options.chaingraphUrl, {\n method: \"POST\",\n headers: {\n Accept: \"*/*\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n operationName: null,\n variables: {},\n query: `\n{\n transaction(\n where: {\n hash:{_eq:\"\\\\\\\\x${options.transactionHash}\"}\n }\n ) {\n hash\n authchains {\n authchain_length\n migrations(\n where: {\n transaction: {\n outputs: { locking_bytecode_pattern: { _like: \"6a04%\" } }\n }\n }\n ) {\n transaction {\n hash\n inputs(where:{ outpoint_index: { _eq:\"0\" } }){\n outpoint_index\n }\n outputs(where: { locking_bytecode_pattern: { _like: \"6a04%\" } }) {\n output_index\n locking_bytecode\n }\n }\n }\n }\n }\n}`,\n }),\n });\n const responseData = await response.json();\n const result = [];\n const migrations = responseData.data.transaction[0]?.authchains[0].migrations;\n if (!migrations) {\n return result;\n }\n for (const migration of migrations) {\n const transaction = migration.transaction[0];\n if (!transaction) {\n continue;\n }\n transaction.inputs.forEach((input) => (input.outpointIndex = Number(input.outpoint_index)));\n transaction.outputs.forEach((output) => {\n output.outputIndex = Number(output.output_index);\n output.lockingBytecode = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(output.locking_bytecode.replace(\"\\\\x\", \"\"));\n });\n const txHash = transaction.hash.replace(\"\\\\x\", \"\");\n result.push(BCMR.makeAuthChainElement(transaction, txHash));\n }\n return result.filter((element) => element.contentHash.length && element.httpsUrl.length);\n }\n /**\n * addMetadataRegistryAuthChain Add BCMR metadata registry by resolving an authchain\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head (most recent registry version) or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async addMetadataRegistryAuthChain(options) {\n const authChain = await this.buildAuthChain({\n ...options,\n resolveBase: false,\n });\n if (!authChain.length) {\n throw new Error(`There were no BCMR entries in the resolved authchain ${JSON.stringify(authChain, null, 2)}`);\n }\n const registry = await this.fetchMetadataRegistry(authChain.reverse()[0].httpsUrl);\n this.addMetadataRegistry(registry);\n return authChain;\n }\n /**\n * getTokenInfo Return the token info (or the identity snapshot as per spec)\n *\n * @param {string} tokenId token id to look up\n *\n * @returns {IdentitySnapshot?} return the info for the token found, otherwise undefined\n */\n static getTokenInfo(tokenId) {\n for (const registry of this.metadataRegistries.slice().reverse()) {\n const history = registry.identities?.[tokenId];\n if (!history) {\n continue;\n }\n const latestIdentityIndex = Object.keys(history)[0];\n if (latestIdentityIndex === undefined) {\n continue;\n }\n return history[latestIdentityIndex];\n }\n return undefined;\n }\n}\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/./src/Bcmr.ts?");
|
|
60
|
+
eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"BCMR\": () => (/* binding */ BCMR)\n/* harmony export */ });\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/wallet/model.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/interface.js\");\n/* harmony import */ var mainnet_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! mainnet-js */ \"../mainnet-js/dist/module/network/Connection.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, mainnet_js__WEBPACK_IMPORTED_MODULE_3__, mainnet_js__WEBPACK_IMPORTED_MODULE_6__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__]);\n([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, mainnet_js__WEBPACK_IMPORTED_MODULE_3__, mainnet_js__WEBPACK_IMPORTED_MODULE_6__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n// Implementation of CHIP-BCMR v2.0.0-draft, refer to https://github.com/bitjson/chip-bcmr\nclass BCMR {\n // List of tracked registries\n static { this.metadataRegistries = []; }\n static getRegistries() {\n return this.metadataRegistries;\n }\n static resetRegistries() {\n this.metadataRegistries = [];\n }\n /**\n * fetchMetadataRegistry Fetch the BCMR registry JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n * @returns {Registry} resolved registry\n */\n static async fetchMetadataRegistry(uri, contentHash) {\n if (uri.indexOf(\"https://\") < 0) {\n uri = `https://${uri}`;\n }\n // content hashes HTTPS Publication Outputs per spec\n if (contentHash) {\n // request as text and verify hash\n const response = await fetch(uri);\n const data = await response.text();\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.utf8ToBin)(data)));\n if (contentHash != hash) {\n throw new Error(`Content hash mismatch for URI: ${uri}\\nreceived: ${hash}\\nrequired: ${contentHash}`);\n }\n return JSON.parse(data);\n }\n // request as JSON\n const response = await fetch(uri);\n const data = await response.json();\n return data;\n }\n /**\n * addMetadataRegistry Add the metadata registry to the list of tracked registries\n *\n * @param {Registry} registry Registry object per schema specification, see https://raw.githubusercontent.com/bitjson/chip-bcmr/master/bcmr-v1.schema.json\n *\n */\n static addMetadataRegistry(registry) {\n if (this.metadataRegistries.some((val) => JSON.stringify(val) === JSON.stringify(registry))) {\n return;\n }\n this.metadataRegistries.push(registry);\n }\n /**\n * addMetadataRegistryFromUri Add the metadata registry by fetching a JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n */\n static async addMetadataRegistryFromUri(uri, contentHash) {\n const registry = await this.fetchMetadataRegistry(uri, contentHash);\n this.addMetadataRegistry(registry);\n }\n // helper function to enforce the constraints on the 0th output, decode the BCMR's OP_RETURN data\n // returns resolved AuthChainElement\n static makeAuthChainElement(rawTx, hash) {\n let opReturns;\n let spends0thOutput = false;\n if (rawTx.hasOwnProperty(\"vout\")) {\n const electrumTransaction = rawTx;\n opReturns = electrumTransaction.vout\n .filter((val) => val.scriptPubKey.type === \"nulldata\")\n .map((val) => val.scriptPubKey.hex);\n spends0thOutput = electrumTransaction.vin.some((val) => val.vout === 0);\n }\n else {\n const libauthTransaction = rawTx;\n opReturns = libauthTransaction.outputs\n .map((val) => (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(val.lockingBytecode))\n .filter((val) => val.indexOf(\"6a\") === 0);\n spends0thOutput = libauthTransaction.inputs.some((val) => val.outpointIndex === 0);\n }\n if (!spends0thOutput) {\n throw new Error(\"Invalid authchain transaction (does not spend 0th output of previous transaction)\");\n }\n const bcmrOpReturns = opReturns.filter((val) => val.indexOf(\"6a0442434d52\") === 0 ||\n val.indexOf(\"6a4c0442434d52\") === 0 ||\n val.indexOf(\"6a4d040042434d52\") === 0 ||\n val.indexOf(\"6a4e0400000042434d52\") === 0);\n if (bcmrOpReturns.length === 0) {\n return {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n }\n const opReturnHex = opReturns[0];\n const chunks = mainnet_js__WEBPACK_IMPORTED_MODULE_3__.OpReturnData.parseBinary((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(opReturnHex));\n if (chunks.length < 2) {\n throw new Error(`Malformed BCMR output: ${opReturnHex}`);\n }\n const result = {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n if (chunks.length === 2) {\n // IPFS Publication Output\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1]);\n const ipfsCid = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(chunks[1]);\n result.uris = [`ipfs://${ipfsCid}`];\n result.httpsUrl = `${mainnet_js__WEBPACK_IMPORTED_MODULE_4__.Config.DefaultIpfsGateway}${ipfsCid}`;\n }\n else {\n // URI Publication Output\n // content hash is in OP_SHA256 byte order per spec\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1].slice());\n const uris = chunks.slice(2);\n for (const uri of uris) {\n const uriString = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(uri);\n result.uris.push(uriString);\n if (result.httpsUrl) {\n continue;\n }\n if (uriString.indexOf(\"ipfs://\") === 0) {\n const ipfsCid = uriString.replace(\"ipfs://\", \"\");\n result.httpsUrl = `${mainnet_js__WEBPACK_IMPORTED_MODULE_4__.Config.DefaultIpfsGateway}${ipfsCid}`;\n }\n else if (uriString.indexOf(\"https://\") === 0) {\n result.httpsUrl = uriString;\n }\n else if (uriString.indexOf(\"https://\") === -1) {\n result.httpsUrl = uriString;\n // case for domain name specifier, like example.com\n if (uriString.indexOf(\"/\") === -1) {\n const parts = uriString.toLowerCase().split(\".\");\n if (!(parts?.[0]?.indexOf(\"baf\") === 0 && parts?.[1] === \"ipfs\")) {\n result.httpsUrl = `${result.httpsUrl}/.well-known/bitcoin-cash-metadata-registry.json`;\n }\n }\n result.httpsUrl = `https://${result.httpsUrl}`;\n }\n else {\n throw new Error(`Unsupported uri type: ${uriString}`);\n }\n }\n }\n return result;\n }\n /**\n * buildAuthChain Build an authchain - Zeroth-Descendant Transaction Chain, refer to https://github.com/bitjson/chip-bcmr#zeroth-descendant-transaction-chains\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.resolveBase (default=false) boolean flag to indicate that autchain building should resolve and verify elements back to base or be stopped at this exact chain element\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n * @param {TxI[]?} options.historyCache cached address history to be reused if authchain building proceeds with the same address, spares a flurry of Fulcrum calls\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async buildAuthChain(options) {\n if (options.network === undefined) {\n options.network = mainnet_js__WEBPACK_IMPORTED_MODULE_5__.Network.MAINNET;\n }\n if (options.followToHead === undefined) {\n options.followToHead = true;\n }\n if (options.resolveBase === undefined) {\n options.resolveBase = false;\n }\n const provider = (await (0,mainnet_js__WEBPACK_IMPORTED_MODULE_6__.initProvider)(options.network));\n if (options.rawTx === undefined) {\n options.rawTx = await provider.getRawTransactionObject(options.transactionHash);\n }\n // figure out the autchain by moving towards authhead\n const getAuthChainChild = async () => {\n const history = options.historyCache ||\n (await provider.getHistory(options.rawTx.vout[0].scriptPubKey.addresses[0]));\n const thisTx = history.find((val) => val.tx_hash === options.transactionHash);\n let filteredHistory = history.filter((val) => val.height > 0\n ? val.height >= thisTx.height || val.height <= 0\n : val.height <= 0 && val.tx_hash !== thisTx.tx_hash);\n for (const historyTx of filteredHistory) {\n const historyRawTx = await provider.getRawTransactionObject(historyTx.tx_hash);\n const authChainVin = historyRawTx.vin.find((val) => val.txid === options.transactionHash && val.vout === 0);\n // if we've found continuation of authchain, we shall recurse into it\n if (authChainVin) {\n // reuse queried address history if the next element in chain is the same address\n const historyCache = options.rawTx.vout[0].scriptPubKey.addresses[0] ===\n historyRawTx.vout[0].scriptPubKey.addresses[0]\n ? filteredHistory\n : undefined;\n // combine the authchain element with the rest obtained\n return { rawTx: historyRawTx, historyCache };\n }\n }\n return undefined;\n };\n // make authchain element and combine with the rest obtained\n let element;\n try {\n element = BCMR.makeAuthChainElement(options.rawTx, options.rawTx.hash);\n }\n catch (error) {\n // special case for cashtoken authchain lookup by categoryId - allow to fail first lookup and inspect the genesis transaction\n // follow authchain to head and look for BCMR outputs\n const child = await getAuthChainChild();\n if (child) {\n return await BCMR.buildAuthChain({\n ...options,\n transactionHash: child.rawTx.hash,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n });\n }\n else {\n throw error;\n }\n }\n let chainBase = [];\n if (options.resolveBase) {\n // check for accelerated path if \"authchain\" extension is in registry\n const registry = await this.fetchMetadataRegistry(element.httpsUrl, element.contentHash);\n if (registry.extensions &&\n registry.extensions[\"authchain\"] &&\n Object.keys(registry.extensions[\"authchain\"]).length) {\n const chainTxArray = Object.values(registry.extensions[\"authchain\"]);\n chainBase = chainTxArray\n .map((tx) => {\n const transactionBin = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(tx);\n const decoded = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_7__.decodeTransaction)(transactionBin);\n if (typeof decoded === \"string\") {\n throw new Error(`Error decoding transaction ${JSON.stringify(tx)}, ${decoded}`);\n }\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(transactionBin)).reverse());\n return { decoded, hash };\n })\n .map(({ decoded, hash }) => BCMR.makeAuthChainElement(decoded, hash));\n }\n else {\n // simply go back in history towards authhead\n let stop = false;\n let tx = { ...options.rawTx };\n let maxElements = 10;\n while (stop == false || maxElements === 0) {\n const vin = tx.vin.find((val) => val.vout === 0);\n tx = await provider.getRawTransactionObject(vin.txid);\n try {\n const pastElement = BCMR.makeAuthChainElement(tx, tx.hash);\n chainBase.unshift(pastElement);\n maxElements--;\n }\n catch {\n stop = true;\n }\n }\n }\n }\n // if we follow to head, we need to locate the next transaction spending our 0th output\n // and repeat the building process recursively\n if (options.followToHead) {\n const child = await getAuthChainChild();\n if (child) {\n const chainHead = await BCMR.buildAuthChain({\n transactionHash: child.rawTx.hash,\n network: options.network,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n followToHead: options.followToHead,\n resolveBase: false,\n });\n // combine the authchain element with the rest obtained\n return [...chainBase, element, ...chainHead].filter((val) => val.httpsUrl.length);\n }\n }\n // return the last chain element (or the only found in an edge case)\n return [...chainBase, element].filter((val) => val.httpsUrl.length);\n }\n /**\n * fetchAuthChainFromChaingraph Fetch the authchain information from a trusted external indexer\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.chaingraphUrl (required) URL of a chaingraph indexer instance to fetch info from\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {string?} options.network (default=undefined) network to query the data from, specific to the queried instance,\n * can be 'mainnet', 'chipnet', or anything else.\n * if left undefined all chaingraph transactions will be looked at, disregarding the chain\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async fetchAuthChainFromChaingraph(options) {\n if (!options.chaingraphUrl) {\n throw new Error(\"Provide `chaingraphUrl` param.\");\n }\n const response = await fetch(options.chaingraphUrl, {\n method: \"POST\",\n headers: {\n Accept: \"*/*\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n operationName: null,\n variables: {},\n query: `\n{\n transaction(\n where: {\n hash:{_eq:\"\\\\\\\\x${options.transactionHash}\"}\n }\n ) {\n hash\n authchains {\n authchain_length\n migrations(\n where: {\n transaction: {\n outputs: { locking_bytecode_pattern: { _like: \"6a04%\" } }\n }\n }\n ) {\n transaction {\n hash\n inputs(where:{ outpoint_index: { _eq:\"0\" } }){\n outpoint_index\n }\n outputs(where: { locking_bytecode_pattern: { _like: \"6a04%\" } }) {\n output_index\n locking_bytecode\n }\n }\n }\n }\n }\n}`,\n }),\n });\n const responseData = await response.json();\n const result = [];\n const migrations = responseData.data.transaction[0]?.authchains[0].migrations;\n if (!migrations) {\n return result;\n }\n for (const migration of migrations) {\n const transaction = migration.transaction[0];\n if (!transaction) {\n continue;\n }\n transaction.inputs.forEach((input) => (input.outpointIndex = Number(input.outpoint_index)));\n transaction.outputs.forEach((output) => {\n output.outputIndex = Number(output.output_index);\n output.lockingBytecode = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(output.locking_bytecode.replace(\"\\\\x\", \"\"));\n });\n const txHash = transaction.hash.replace(\"\\\\x\", \"\");\n result.push(BCMR.makeAuthChainElement(transaction, txHash));\n }\n return result.filter((element) => element.contentHash.length && element.httpsUrl.length);\n }\n /**\n * addMetadataRegistryAuthChain Add BCMR metadata registry by resolving an authchain\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head (most recent registry version) or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async addMetadataRegistryAuthChain(options) {\n const authChain = await this.buildAuthChain({\n ...options,\n resolveBase: false,\n });\n if (!authChain.length) {\n throw new Error(`There were no BCMR entries in the resolved authchain ${JSON.stringify(authChain, null, 2)}`);\n }\n const registry = await this.fetchMetadataRegistry(authChain.reverse()[0].httpsUrl);\n this.addMetadataRegistry(registry);\n return authChain;\n }\n /**\n * getTokenInfo Return the token info (or the identity snapshot as per spec)\n *\n * @param {string} tokenId token id to look up\n *\n * @returns {IdentitySnapshot?} return the info for the token found, otherwise undefined\n */\n static getTokenInfo(tokenId) {\n for (const registry of this.metadataRegistries.slice().reverse()) {\n const history = registry.identities?.[tokenId];\n if (!history) {\n continue;\n }\n const latestIdentityIndex = Object.keys(history)[0];\n if (latestIdentityIndex === undefined) {\n continue;\n }\n return history[latestIdentityIndex];\n }\n return undefined;\n }\n}\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/./src/Bcmr.ts?");
|
|
61
61
|
|
|
62
62
|
/***/ }),
|
|
63
63
|
|
|
@@ -391,17 +391,6 @@ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harm
|
|
|
391
391
|
|
|
392
392
|
/***/ }),
|
|
393
393
|
|
|
394
|
-
/***/ "../../node_modules/@scure/bip39/esm/wordlists/english.js":
|
|
395
|
-
/*!****************************************************************!*\
|
|
396
|
-
!*** ../../node_modules/@scure/bip39/esm/wordlists/english.js ***!
|
|
397
|
-
\****************************************************************/
|
|
398
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
399
|
-
|
|
400
|
-
"use strict";
|
|
401
|
-
eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"wordlist\": () => (/* binding */ wordlist)\n/* harmony export */ });\nconst wordlist = `abandon\nability\nable\nabout\nabove\nabsent\nabsorb\nabstract\nabsurd\nabuse\naccess\naccident\naccount\naccuse\nachieve\nacid\nacoustic\nacquire\nacross\nact\naction\nactor\nactress\nactual\nadapt\nadd\naddict\naddress\nadjust\nadmit\nadult\nadvance\nadvice\naerobic\naffair\nafford\nafraid\nagain\nage\nagent\nagree\nahead\naim\nair\nairport\naisle\nalarm\nalbum\nalcohol\nalert\nalien\nall\nalley\nallow\nalmost\nalone\nalpha\nalready\nalso\nalter\nalways\namateur\namazing\namong\namount\namused\nanalyst\nanchor\nancient\nanger\nangle\nangry\nanimal\nankle\nannounce\nannual\nanother\nanswer\nantenna\nantique\nanxiety\nany\napart\napology\nappear\napple\napprove\napril\narch\narctic\narea\narena\nargue\narm\narmed\narmor\narmy\naround\narrange\narrest\narrive\narrow\nart\nartefact\nartist\nartwork\nask\naspect\nassault\nasset\nassist\nassume\nasthma\nathlete\natom\nattack\nattend\nattitude\nattract\nauction\naudit\naugust\naunt\nauthor\nauto\nautumn\naverage\navocado\navoid\nawake\naware\naway\nawesome\nawful\nawkward\naxis\nbaby\nbachelor\nbacon\nbadge\nbag\nbalance\nbalcony\nball\nbamboo\nbanana\nbanner\nbar\nbarely\nbargain\nbarrel\nbase\nbasic\nbasket\nbattle\nbeach\nbean\nbeauty\nbecause\nbecome\nbeef\nbefore\nbegin\nbehave\nbehind\nbelieve\nbelow\nbelt\nbench\nbenefit\nbest\nbetray\nbetter\nbetween\nbeyond\nbicycle\nbid\nbike\nbind\nbiology\nbird\nbirth\nbitter\nblack\nblade\nblame\nblanket\nblast\nbleak\nbless\nblind\nblood\nblossom\nblouse\nblue\nblur\nblush\nboard\nboat\nbody\nboil\nbomb\nbone\nbonus\nbook\nboost\nborder\nboring\nborrow\nboss\nbottom\nbounce\nbox\nboy\nbracket\nbrain\nbrand\nbrass\nbrave\nbread\nbreeze\nbrick\nbridge\nbrief\nbright\nbring\nbrisk\nbroccoli\nbroken\nbronze\nbroom\nbrother\nbrown\nbrush\nbubble\nbuddy\nbudget\nbuffalo\nbuild\nbulb\nbulk\nbullet\nbundle\nbunker\nburden\nburger\nburst\nbus\nbusiness\nbusy\nbutter\nbuyer\nbuzz\ncabbage\ncabin\ncable\ncactus\ncage\ncake\ncall\ncalm\ncamera\ncamp\ncan\ncanal\ncancel\ncandy\ncannon\ncanoe\ncanvas\ncanyon\ncapable\ncapital\ncaptain\ncar\ncarbon\ncard\ncargo\ncarpet\ncarry\ncart\ncase\ncash\ncasino\ncastle\ncasual\ncat\ncatalog\ncatch\ncategory\ncattle\ncaught\ncause\ncaution\ncave\nceiling\ncelery\ncement\ncensus\ncentury\ncereal\ncertain\nchair\nchalk\nchampion\nchange\nchaos\nchapter\ncharge\nchase\nchat\ncheap\ncheck\ncheese\nchef\ncherry\nchest\nchicken\nchief\nchild\nchimney\nchoice\nchoose\nchronic\nchuckle\nchunk\nchurn\ncigar\ncinnamon\ncircle\ncitizen\ncity\ncivil\nclaim\nclap\nclarify\nclaw\nclay\nclean\nclerk\nclever\nclick\nclient\ncliff\nclimb\nclinic\nclip\nclock\nclog\nclose\ncloth\ncloud\nclown\nclub\nclump\ncluster\nclutch\ncoach\ncoast\ncoconut\ncode\ncoffee\ncoil\ncoin\ncollect\ncolor\ncolumn\ncombine\ncome\ncomfort\ncomic\ncommon\ncompany\nconcert\nconduct\nconfirm\ncongress\nconnect\nconsider\ncontrol\nconvince\ncook\ncool\ncopper\ncopy\ncoral\ncore\ncorn\ncorrect\ncost\ncotton\ncouch\ncountry\ncouple\ncourse\ncousin\ncover\ncoyote\ncrack\ncradle\ncraft\ncram\ncrane\ncrash\ncrater\ncrawl\ncrazy\ncream\ncredit\ncreek\ncrew\ncricket\ncrime\ncrisp\ncritic\ncrop\ncross\ncrouch\ncrowd\ncrucial\ncruel\ncruise\ncrumble\ncrunch\ncrush\ncry\ncrystal\ncube\nculture\ncup\ncupboard\ncurious\ncurrent\ncurtain\ncurve\ncushion\ncustom\ncute\ncycle\ndad\ndamage\ndamp\ndance\ndanger\ndaring\ndash\ndaughter\ndawn\nday\ndeal\ndebate\ndebris\ndecade\ndecember\ndecide\ndecline\ndecorate\ndecrease\ndeer\ndefense\ndefine\ndefy\ndegree\ndelay\ndeliver\ndemand\ndemise\ndenial\ndentist\ndeny\ndepart\ndepend\ndeposit\ndepth\ndeputy\nderive\ndescribe\ndesert\ndesign\ndesk\ndespair\ndestroy\ndetail\ndetect\ndevelop\ndevice\ndevote\ndiagram\ndial\ndiamond\ndiary\ndice\ndiesel\ndiet\ndiffer\ndigital\ndignity\ndilemma\ndinner\ndinosaur\ndirect\ndirt\ndisagree\ndiscover\ndisease\ndish\ndismiss\ndisorder\ndisplay\ndistance\ndivert\ndivide\ndivorce\ndizzy\ndoctor\ndocument\ndog\ndoll\ndolphin\ndomain\ndonate\ndonkey\ndonor\ndoor\ndose\ndouble\ndove\ndraft\ndragon\ndrama\ndrastic\ndraw\ndream\ndress\ndrift\ndrill\ndrink\ndrip\ndrive\ndrop\ndrum\ndry\nduck\ndumb\ndune\nduring\ndust\ndutch\nduty\ndwarf\ndynamic\neager\neagle\nearly\nearn\nearth\neasily\neast\neasy\necho\necology\neconomy\nedge\nedit\neducate\neffort\negg\neight\neither\nelbow\nelder\nelectric\nelegant\nelement\nelephant\nelevator\nelite\nelse\nembark\nembody\nembrace\nemerge\nemotion\nemploy\nempower\nempty\nenable\nenact\nend\nendless\nendorse\nenemy\nenergy\nenforce\nengage\nengine\nenhance\nenjoy\nenlist\nenough\nenrich\nenroll\nensure\nenter\nentire\nentry\nenvelope\nepisode\nequal\nequip\nera\nerase\nerode\nerosion\nerror\nerupt\nescape\nessay\nessence\nestate\neternal\nethics\nevidence\nevil\nevoke\nevolve\nexact\nexample\nexcess\nexchange\nexcite\nexclude\nexcuse\nexecute\nexercise\nexhaust\nexhibit\nexile\nexist\nexit\nexotic\nexpand\nexpect\nexpire\nexplain\nexpose\nexpress\nextend\nextra\neye\neyebrow\nfabric\nface\nfaculty\nfade\nfaint\nfaith\nfall\nfalse\nfame\nfamily\nfamous\nfan\nfancy\nfantasy\nfarm\nfashion\nfat\nfatal\nfather\nfatigue\nfault\nfavorite\nfeature\nfebruary\nfederal\nfee\nfeed\nfeel\nfemale\nfence\nfestival\nfetch\nfever\nfew\nfiber\nfiction\nfield\nfigure\nfile\nfilm\nfilter\nfinal\nfind\nfine\nfinger\nfinish\nfire\nfirm\nfirst\nfiscal\nfish\nfit\nfitness\nfix\nflag\nflame\nflash\nflat\nflavor\nflee\nflight\nflip\nfloat\nflock\nfloor\nflower\nfluid\nflush\nfly\nfoam\nfocus\nfog\nfoil\nfold\nfollow\nfood\nfoot\nforce\nforest\nforget\nfork\nfortune\nforum\nforward\nfossil\nfoster\nfound\nfox\nfragile\nframe\nfrequent\nfresh\nfriend\nfringe\nfrog\nfront\nfrost\nfrown\nfrozen\nfruit\nfuel\nfun\nfunny\nfurnace\nfury\nfuture\ngadget\ngain\ngalaxy\ngallery\ngame\ngap\ngarage\ngarbage\ngarden\ngarlic\ngarment\ngas\ngasp\ngate\ngather\ngauge\ngaze\ngeneral\ngenius\ngenre\ngentle\ngenuine\ngesture\nghost\ngiant\ngift\ngiggle\nginger\ngiraffe\ngirl\ngive\nglad\nglance\nglare\nglass\nglide\nglimpse\nglobe\ngloom\nglory\nglove\nglow\nglue\ngoat\ngoddess\ngold\ngood\ngoose\ngorilla\ngospel\ngossip\ngovern\ngown\ngrab\ngrace\ngrain\ngrant\ngrape\ngrass\ngravity\ngreat\ngreen\ngrid\ngrief\ngrit\ngrocery\ngroup\ngrow\ngrunt\nguard\nguess\nguide\nguilt\nguitar\ngun\ngym\nhabit\nhair\nhalf\nhammer\nhamster\nhand\nhappy\nharbor\nhard\nharsh\nharvest\nhat\nhave\nhawk\nhazard\nhead\nhealth\nheart\nheavy\nhedgehog\nheight\nhello\nhelmet\nhelp\nhen\nhero\nhidden\nhigh\nhill\nhint\nhip\nhire\nhistory\nhobby\nhockey\nhold\nhole\nholiday\nhollow\nhome\nhoney\nhood\nhope\nhorn\nhorror\nhorse\nhospital\nhost\nhotel\nhour\nhover\nhub\nhuge\nhuman\nhumble\nhumor\nhundred\nhungry\nhunt\nhurdle\nhurry\nhurt\nhusband\nhybrid\nice\nicon\nidea\nidentify\nidle\nignore\nill\nillegal\nillness\nimage\nimitate\nimmense\nimmune\nimpact\nimpose\nimprove\nimpulse\ninch\ninclude\nincome\nincrease\nindex\nindicate\nindoor\nindustry\ninfant\ninflict\ninform\ninhale\ninherit\ninitial\ninject\ninjury\ninmate\ninner\ninnocent\ninput\ninquiry\ninsane\ninsect\ninside\ninspire\ninstall\nintact\ninterest\ninto\ninvest\ninvite\ninvolve\niron\nisland\nisolate\nissue\nitem\nivory\njacket\njaguar\njar\njazz\njealous\njeans\njelly\njewel\njob\njoin\njoke\njourney\njoy\njudge\njuice\njump\njungle\njunior\njunk\njust\nkangaroo\nkeen\nkeep\nketchup\nkey\nkick\nkid\nkidney\nkind\nkingdom\nkiss\nkit\nkitchen\nkite\nkitten\nkiwi\nknee\nknife\nknock\nknow\nlab\nlabel\nlabor\nladder\nlady\nlake\nlamp\nlanguage\nlaptop\nlarge\nlater\nlatin\nlaugh\nlaundry\nlava\nlaw\nlawn\nlawsuit\nlayer\nlazy\nleader\nleaf\nlearn\nleave\nlecture\nleft\nleg\nlegal\nlegend\nleisure\nlemon\nlend\nlength\nlens\nleopard\nlesson\nletter\nlevel\nliar\nliberty\nlibrary\nlicense\nlife\nlift\nlight\nlike\nlimb\nlimit\nlink\nlion\nliquid\nlist\nlittle\nlive\nlizard\nload\nloan\nlobster\nlocal\nlock\nlogic\nlonely\nlong\nloop\nlottery\nloud\nlounge\nlove\nloyal\nlucky\nluggage\nlumber\nlunar\nlunch\nluxury\nlyrics\nmachine\nmad\nmagic\nmagnet\nmaid\nmail\nmain\nmajor\nmake\nmammal\nman\nmanage\nmandate\nmango\nmansion\nmanual\nmaple\nmarble\nmarch\nmargin\nmarine\nmarket\nmarriage\nmask\nmass\nmaster\nmatch\nmaterial\nmath\nmatrix\nmatter\nmaximum\nmaze\nmeadow\nmean\nmeasure\nmeat\nmechanic\nmedal\nmedia\nmelody\nmelt\nmember\nmemory\nmention\nmenu\nmercy\nmerge\nmerit\nmerry\nmesh\nmessage\nmetal\nmethod\nmiddle\nmidnight\nmilk\nmillion\nmimic\nmind\nminimum\nminor\nminute\nmiracle\nmirror\nmisery\nmiss\nmistake\nmix\nmixed\nmixture\nmobile\nmodel\nmodify\nmom\nmoment\nmonitor\nmonkey\nmonster\nmonth\nmoon\nmoral\nmore\nmorning\nmosquito\nmother\nmotion\nmotor\nmountain\nmouse\nmove\nmovie\nmuch\nmuffin\nmule\nmultiply\nmuscle\nmuseum\nmushroom\nmusic\nmust\nmutual\nmyself\nmystery\nmyth\nnaive\nname\nnapkin\nnarrow\nnasty\nnation\nnature\nnear\nneck\nneed\nnegative\nneglect\nneither\nnephew\nnerve\nnest\nnet\nnetwork\nneutral\nnever\nnews\nnext\nnice\nnight\nnoble\nnoise\nnominee\nnoodle\nnormal\nnorth\nnose\nnotable\nnote\nnothing\nnotice\nnovel\nnow\nnuclear\nnumber\nnurse\nnut\noak\nobey\nobject\noblige\nobscure\nobserve\nobtain\nobvious\noccur\nocean\noctober\nodor\noff\noffer\noffice\noften\noil\nokay\nold\nolive\nolympic\nomit\nonce\none\nonion\nonline\nonly\nopen\nopera\nopinion\noppose\noption\norange\norbit\norchard\norder\nordinary\norgan\norient\noriginal\norphan\nostrich\nother\noutdoor\nouter\noutput\noutside\noval\noven\nover\nown\nowner\noxygen\noyster\nozone\npact\npaddle\npage\npair\npalace\npalm\npanda\npanel\npanic\npanther\npaper\nparade\nparent\npark\nparrot\nparty\npass\npatch\npath\npatient\npatrol\npattern\npause\npave\npayment\npeace\npeanut\npear\npeasant\npelican\npen\npenalty\npencil\npeople\npepper\nperfect\npermit\nperson\npet\nphone\nphoto\nphrase\nphysical\npiano\npicnic\npicture\npiece\npig\npigeon\npill\npilot\npink\npioneer\npipe\npistol\npitch\npizza\nplace\nplanet\nplastic\nplate\nplay\nplease\npledge\npluck\nplug\nplunge\npoem\npoet\npoint\npolar\npole\npolice\npond\npony\npool\npopular\nportion\nposition\npossible\npost\npotato\npottery\npoverty\npowder\npower\npractice\npraise\npredict\nprefer\nprepare\npresent\npretty\nprevent\nprice\npride\nprimary\nprint\npriority\nprison\nprivate\nprize\nproblem\nprocess\nproduce\nprofit\nprogram\nproject\npromote\nproof\nproperty\nprosper\nprotect\nproud\nprovide\npublic\npudding\npull\npulp\npulse\npumpkin\npunch\npupil\npuppy\npurchase\npurity\npurpose\npurse\npush\nput\npuzzle\npyramid\nquality\nquantum\nquarter\nquestion\nquick\nquit\nquiz\nquote\nrabbit\nraccoon\nrace\nrack\nradar\nradio\nrail\nrain\nraise\nrally\nramp\nranch\nrandom\nrange\nrapid\nrare\nrate\nrather\nraven\nraw\nrazor\nready\nreal\nreason\nrebel\nrebuild\nrecall\nreceive\nrecipe\nrecord\nrecycle\nreduce\nreflect\nreform\nrefuse\nregion\nregret\nregular\nreject\nrelax\nrelease\nrelief\nrely\nremain\nremember\nremind\nremove\nrender\nrenew\nrent\nreopen\nrepair\nrepeat\nreplace\nreport\nrequire\nrescue\nresemble\nresist\nresource\nresponse\nresult\nretire\nretreat\nreturn\nreunion\nreveal\nreview\nreward\nrhythm\nrib\nribbon\nrice\nrich\nride\nridge\nrifle\nright\nrigid\nring\nriot\nripple\nrisk\nritual\nrival\nriver\nroad\nroast\nrobot\nrobust\nrocket\nromance\nroof\nrookie\nroom\nrose\nrotate\nrough\nround\nroute\nroyal\nrubber\nrude\nrug\nrule\nrun\nrunway\nrural\nsad\nsaddle\nsadness\nsafe\nsail\nsalad\nsalmon\nsalon\nsalt\nsalute\nsame\nsample\nsand\nsatisfy\nsatoshi\nsauce\nsausage\nsave\nsay\nscale\nscan\nscare\nscatter\nscene\nscheme\nschool\nscience\nscissors\nscorpion\nscout\nscrap\nscreen\nscript\nscrub\nsea\nsearch\nseason\nseat\nsecond\nsecret\nsection\nsecurity\nseed\nseek\nsegment\nselect\nsell\nseminar\nsenior\nsense\nsentence\nseries\nservice\nsession\nsettle\nsetup\nseven\nshadow\nshaft\nshallow\nshare\nshed\nshell\nsheriff\nshield\nshift\nshine\nship\nshiver\nshock\nshoe\nshoot\nshop\nshort\nshoulder\nshove\nshrimp\nshrug\nshuffle\nshy\nsibling\nsick\nside\nsiege\nsight\nsign\nsilent\nsilk\nsilly\nsilver\nsimilar\nsimple\nsince\nsing\nsiren\nsister\nsituate\nsix\nsize\nskate\nsketch\nski\nskill\nskin\nskirt\nskull\nslab\nslam\nsleep\nslender\nslice\nslide\nslight\nslim\nslogan\nslot\nslow\nslush\nsmall\nsmart\nsmile\nsmoke\nsmooth\nsnack\nsnake\nsnap\nsniff\nsnow\nsoap\nsoccer\nsocial\nsock\nsoda\nsoft\nsolar\nsoldier\nsolid\nsolution\nsolve\nsomeone\nsong\nsoon\nsorry\nsort\nsoul\nsound\nsoup\nsource\nsouth\nspace\nspare\nspatial\nspawn\nspeak\nspecial\nspeed\nspell\nspend\nsphere\nspice\nspider\nspike\nspin\nspirit\nsplit\nspoil\nsponsor\nspoon\nsport\nspot\nspray\nspread\nspring\nspy\nsquare\nsqueeze\nsquirrel\nstable\nstadium\nstaff\nstage\nstairs\nstamp\nstand\nstart\nstate\nstay\nsteak\nsteel\nstem\nstep\nstereo\nstick\nstill\nsting\nstock\nstomach\nstone\nstool\nstory\nstove\nstrategy\nstreet\nstrike\nstrong\nstruggle\nstudent\nstuff\nstumble\nstyle\nsubject\nsubmit\nsubway\nsuccess\nsuch\nsudden\nsuffer\nsugar\nsuggest\nsuit\nsummer\nsun\nsunny\nsunset\nsuper\nsupply\nsupreme\nsure\nsurface\nsurge\nsurprise\nsurround\nsurvey\nsuspect\nsustain\nswallow\nswamp\nswap\nswarm\nswear\nsweet\nswift\nswim\nswing\nswitch\nsword\nsymbol\nsymptom\nsyrup\nsystem\ntable\ntackle\ntag\ntail\ntalent\ntalk\ntank\ntape\ntarget\ntask\ntaste\ntattoo\ntaxi\nteach\nteam\ntell\nten\ntenant\ntennis\ntent\nterm\ntest\ntext\nthank\nthat\ntheme\nthen\ntheory\nthere\nthey\nthing\nthis\nthought\nthree\nthrive\nthrow\nthumb\nthunder\nticket\ntide\ntiger\ntilt\ntimber\ntime\ntiny\ntip\ntired\ntissue\ntitle\ntoast\ntobacco\ntoday\ntoddler\ntoe\ntogether\ntoilet\ntoken\ntomato\ntomorrow\ntone\ntongue\ntonight\ntool\ntooth\ntop\ntopic\ntopple\ntorch\ntornado\ntortoise\ntoss\ntotal\ntourist\ntoward\ntower\ntown\ntoy\ntrack\ntrade\ntraffic\ntragic\ntrain\ntransfer\ntrap\ntrash\ntravel\ntray\ntreat\ntree\ntrend\ntrial\ntribe\ntrick\ntrigger\ntrim\ntrip\ntrophy\ntrouble\ntruck\ntrue\ntruly\ntrumpet\ntrust\ntruth\ntry\ntube\ntuition\ntumble\ntuna\ntunnel\nturkey\nturn\nturtle\ntwelve\ntwenty\ntwice\ntwin\ntwist\ntwo\ntype\ntypical\nugly\numbrella\nunable\nunaware\nuncle\nuncover\nunder\nundo\nunfair\nunfold\nunhappy\nuniform\nunique\nunit\nuniverse\nunknown\nunlock\nuntil\nunusual\nunveil\nupdate\nupgrade\nuphold\nupon\nupper\nupset\nurban\nurge\nusage\nuse\nused\nuseful\nuseless\nusual\nutility\nvacant\nvacuum\nvague\nvalid\nvalley\nvalve\nvan\nvanish\nvapor\nvarious\nvast\nvault\nvehicle\nvelvet\nvendor\nventure\nvenue\nverb\nverify\nversion\nvery\nvessel\nveteran\nviable\nvibrant\nvicious\nvictory\nvideo\nview\nvillage\nvintage\nviolin\nvirtual\nvirus\nvisa\nvisit\nvisual\nvital\nvivid\nvocal\nvoice\nvoid\nvolcano\nvolume\nvote\nvoyage\nwage\nwagon\nwait\nwalk\nwall\nwalnut\nwant\nwarfare\nwarm\nwarrior\nwash\nwasp\nwaste\nwater\nwave\nway\nwealth\nweapon\nwear\nweasel\nweather\nweb\nwedding\nweekend\nweird\nwelcome\nwest\nwet\nwhale\nwhat\nwheat\nwheel\nwhen\nwhere\nwhip\nwhisper\nwide\nwidth\nwife\nwild\nwill\nwin\nwindow\nwine\nwing\nwink\nwinner\nwinter\nwire\nwisdom\nwise\nwish\nwitness\nwolf\nwoman\nwonder\nwood\nwool\nword\nwork\nworld\nworry\nworth\nwrap\nwreck\nwrestle\nwrist\nwrite\nwrong\nyard\nyear\nyellow\nyou\nyoung\nyouth\nzebra\nzero\nzone\nzoo`.split('\\n');\n\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../../node_modules/@scure/bip39/esm/wordlists/english.js?");
|
|
402
|
-
|
|
403
|
-
/***/ }),
|
|
404
|
-
|
|
405
394
|
/***/ "../../node_modules/async-mutex/index.mjs":
|
|
406
395
|
/*!************************************************!*\
|
|
407
396
|
!*** ../../node_modules/async-mutex/index.mjs ***!
|
|
@@ -571,10 +560,10 @@ eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harm
|
|
|
571
560
|
/*!*******************************************!*\
|
|
572
561
|
!*** ../mainnet-js/dist/module/config.js ***!
|
|
573
562
|
\*******************************************/
|
|
574
|
-
/***/ ((
|
|
563
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
575
564
|
|
|
576
565
|
"use strict";
|
|
577
|
-
eval("
|
|
566
|
+
eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"Config\": () => (/* binding */ Config)\n/* harmony export */ });\nclass Config {\n // enforces all token-related methods to specify tokenaddr as recepient and change cashaddr\n static { this.EnforceCashTokenReceiptAddresses = false; }\n static { this.DefaultParentDerivationPath = \"m/44'/0'/0'\"; }\n static { this.DefaultIpfsGateway = \"https://dweb.link/ipfs/\"; }\n // default currency for balance and rate conversions\n static { this.DefaultCurrency = \"usd\"; }\n // caches the raw transactions in browser's local storage instead of memory\n static { this.UseLocalStorageCache = false; }\n // caches the raw transactions in browser's indexedDB instead of memory\n static { this.UseIndexedDBCache = false; }\n // caches the raw transactions in browser's memory\n static { this.UseMemoryCache = false; }\n static setIpfsGateway(ipfsGateway) {\n this.DefaultIpfsGateway = ipfsGateway;\n }\n // custom exchange rate function\n static { this.GetExchangeRateFn = undefined; }\n}\n//# sourceMappingURL=config.js.map\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../mainnet-js/dist/module/config.js?");
|
|
578
567
|
|
|
579
568
|
/***/ }),
|
|
580
569
|
|
|
@@ -585,7 +574,7 @@ eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_de
|
|
|
585
574
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
586
575
|
|
|
587
576
|
"use strict";
|
|
588
|
-
eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"DELIMITER\": () => (/* binding */ DELIMITER)
|
|
577
|
+
eval("/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"DELIMITER\": () => (/* binding */ DELIMITER)\n/* harmony export */ });\n/* unused harmony exports DUST_UTXO_THRESHOLD, MEMPOOL_CHAIN_LIMIT, EXCHANGE_RATE_TTL, DERIVATION_PATHS */\nconst DELIMITER = \":\";\n// Min amount utxo can be to be accepted by the network\nconst DUST_UTXO_THRESHOLD = 546;\n// Current chained tx limit\nconst MEMPOOL_CHAIN_LIMIT = 50;\n// time in milliseconds to cache the usd exchange rate\nconst EXCHANGE_RATE_TTL = 250000;\n// list of common derivation paths\n// a la: https://github.com/Electron-Cash/Electron-Cash/blob/1de24c509992cfebc22217a2a77c862c2b02bc54/electroncash_gui/qt/installwizard.py#L624\nconst DERIVATION_PATHS = [\n \"m/0\",\n \"m/0'\",\n \"m/0'/0\",\n \"m/0'/0'\",\n \"m/0'/0'/0'\",\n \"m/44'/0'/0'\",\n \"m/44'/0'/0'/0\",\n \"m/44'/145'/0'\",\n \"m/44'/145'/0'/0\",\n \"m/44'/245'/0\",\n \"m/44'/245'/0'\",\n \"m/44'/245'/0'/0\",\n];\n//# sourceMappingURL=constant.js.map\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../mainnet-js/dist/module/constant.js?");
|
|
589
578
|
|
|
590
579
|
/***/ }),
|
|
591
580
|
|
|
@@ -629,7 +618,7 @@ eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_de
|
|
|
629
618
|
/***/ ((__webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
630
619
|
|
|
631
620
|
"use strict";
|
|
632
|
-
eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ ElectrumNetworkProvider)\n/* harmony export */ });\n/* harmony import */ var _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/network */ \"../../node_modules/@electrum-cash/network/dist/index.mjs\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../interface.js */ \"../mainnet-js/dist/module/interface.js\");\n/* harmony import */ var _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/transaction.js */ \"../mainnet-js/dist/module/util/transaction.js\");\n/* harmony import */ var _config_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../config.js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var _util_header_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/header.js */ \"../mainnet-js/dist/module/util/header.js\");\n/* harmony import */ var _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../cache/IndexedDbCache.js */ \"../mainnet-js/dist/module/cache/IndexedDbCache.js\");\n/* harmony import */ var _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../cache/WebStorageCache.js */ \"../mainnet-js/dist/module/cache/WebStorageCache.js\");\n/* harmony import */ var _cache_MemoryCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../cache/MemoryCache.js */ \"../mainnet-js/dist/module/cache/MemoryCache.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_config_js__WEBPACK_IMPORTED_MODULE_1__, _util_header_js__WEBPACK_IMPORTED_MODULE_6__, _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__]);\n([_config_js__WEBPACK_IMPORTED_MODULE_1__, _util_header_js__WEBPACK_IMPORTED_MODULE_6__, _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n\n\n\n\nclass ElectrumNetworkProvider {\n get cache() {\n if (!_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseMemoryCache &&\n !_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseLocalStorageCache &&\n !_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseIndexedDBCache) {\n this._cache = undefined;\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseMemoryCache && !(this._cache instanceof _cache_MemoryCache_js__WEBPACK_IMPORTED_MODULE_2__.MemoryCache)) {\n this._cache = new _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache();\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseLocalStorageCache &&\n !(this._cache instanceof _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__.WebStorageCache)) {\n this._cache = new _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__.WebStorageCache();\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseIndexedDBCache && !(this._cache instanceof _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache)) {\n this._cache = new _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache();\n return this._cache;\n }\n return this._cache;\n }\n constructor(electrum, network = _interface_js__WEBPACK_IMPORTED_MODULE_5__.Network.MAINNET, manualConnectionManagement) {\n this.network = network;\n this.manualConnectionManagement = manualConnectionManagement;\n this.subscriptions = 0;\n this.subscribedToHeaders = false;\n this.subscriptionMap = {};\n if (electrum) {\n this.electrum = electrum;\n }\n else {\n throw new Error(`A electrum-cash client is required.`);\n }\n }\n async getUtxos(cashaddr) {\n const result = await this.performRequest(\"blockchain.address.listunspent\", cashaddr, \"include_tokens\");\n return result.map((utxo) => ({\n txid: utxo.tx_hash,\n vout: utxo.tx_pos,\n satoshis: utxo.value,\n height: utxo.height,\n token: utxo.token_data\n ? {\n amount: BigInt(utxo.token_data.amount),\n tokenId: utxo.token_data.category,\n capability: utxo.token_data.nft?.capability,\n commitment: utxo.token_data.nft?.commitment,\n }\n : undefined,\n }));\n }\n async getBalance(cashaddr) {\n const result = await this.performRequest(\"blockchain.address.get_balance\", cashaddr);\n return result.confirmed + result.unconfirmed;\n }\n async getHeader(height, verbose = false) {\n const key = `header-${this.network}-${height}-${verbose}`;\n if (this.cache) {\n const cached = await this.cache.getItem(key);\n if (cached) {\n return verbose ? (0,_util_header_js__WEBPACK_IMPORTED_MODULE_6__.decodeHeader)(JSON.parse(cached)) : JSON.parse(cached);\n }\n }\n const result = await this.performRequest(\"blockchain.header.get\", height);\n if (this.cache) {\n await this.cache.setItem(key, JSON.stringify(result));\n }\n return verbose ? (0,_util_header_js__WEBPACK_IMPORTED_MODULE_6__.decodeHeader)(result) : result;\n }\n async getBlockHeight() {\n return (await this.performRequest(\"blockchain.headers.get_tip\"))\n .height;\n }\n async getRawTransaction(txHash, verbose = false, loadInputValues = false) {\n const key = `tx-${this.network}-${txHash}-${verbose}-${loadInputValues}`;\n if (this.cache) {\n const cached = await this.cache.getItem(key);\n if (cached) {\n return verbose ? JSON.parse(cached) : cached;\n }\n }\n try {\n const transaction = (await this.performRequest(\"blockchain.transaction.get\", txHash, verbose));\n if (this.cache) {\n await this.cache.setItem(key, verbose\n ? JSON.stringify(transaction)\n : transaction);\n }\n if (verbose && loadInputValues) {\n // get unique transaction hashes\n const hashes = [...new Set(transaction.vin.map((val) => val.txid))];\n const transactions = await Promise.all(hashes.map((hash) => this.getRawTransactionObject(hash, false)));\n const transactionMap = new Map();\n transactions.forEach((val) => transactionMap.set(val.hash, val));\n transaction.vin.forEach((input) => {\n const output = transactionMap\n .get(input.txid)\n .vout.find((val) => val.n === input.vout);\n input.address = output.scriptPubKey.addresses[0];\n input.value = output.value;\n input.tokenData = output.tokenData;\n });\n }\n return transaction;\n }\n catch (error) {\n if (error.message.indexOf(\"No such mempool or blockchain transaction.\") > -1)\n throw Error(`Could not decode transaction ${txHash}. It might not exist on the current blockchain (${this.network}).`);\n else\n throw error;\n }\n }\n // gets the decoded transaction in human readable form\n async getRawTransactionObject(txHash, loadInputValues = false) {\n return (await this.getRawTransaction(txHash, true, loadInputValues));\n }\n async sendRawTransaction(txHex, awaitPropagation = true) {\n return new Promise(async (resolve, reject) => {\n let txHash = await (0,_util_transaction_js__WEBPACK_IMPORTED_MODULE_7__.getTransactionHash)(txHex);\n if (!awaitPropagation) {\n this.performRequest(\"blockchain.transaction.broadcast\", txHex);\n resolve(txHash);\n }\n else {\n let cancel;\n const waitForTransactionCallback = async (data) => {\n if (data && data[0] === txHash && data[1] !== null) {\n await cancel?.();\n resolve(txHash);\n }\n };\n cancel = await this.subscribeToTransaction(txHash, waitForTransactionCallback);\n this.performRequest(\"blockchain.transaction.broadcast\", txHex).catch(async (error) => {\n await cancel?.();\n reject(error);\n });\n }\n });\n }\n // Get transaction history of a given cashaddr\n async getHistory(cashaddr, fromHeight = 0, toHeight = -1) {\n const result = await this.performRequest(\"blockchain.address.get_history\", cashaddr, fromHeight, toHeight);\n return result;\n }\n // Get the minimum fee a low-priority transaction must pay in order to be accepted to the daemon's memory pool.\n async getRelayFee() {\n const result = (await this.performRequest(\"blockchain.relayfee\"));\n return result;\n }\n async watchAddressStatus(cashaddr, callback) {\n const watchAddressStatusCallback = async (data) => {\n // subscription acknowledgement is the latest known status or null if no status is known\n // status is an array: [ cashaddr, statusHash ]\n if (data instanceof Array) {\n const addr = data[0];\n if (addr !== cashaddr) {\n return;\n }\n const status = data[1];\n callback(status);\n }\n };\n return this.subscribeToAddress(cashaddr, watchAddressStatusCallback);\n }\n async watchAddress(cashaddr, callback) {\n const historyMap = {};\n this.getHistory(cashaddr).then((history) => history.forEach((val) => (historyMap[val.tx_hash] = true)));\n const watchAddressStatusCallback = async () => {\n const newHistory = await this.getHistory(cashaddr);\n // sort history to put unconfirmed transactions in the beginning, then transactions in block height descenting order\n const txHashes = newHistory\n .sort((a, b) => a.height <= 0 || b.height <= 0 ? -1 : b.height - a.height)\n .map((val) => val.tx_hash);\n for (const hash of txHashes) {\n if (!(hash in historyMap)) {\n historyMap[hash] = true;\n callback(hash);\n // exit early to prevent further map lookups\n break;\n }\n }\n };\n return this.watchAddressStatus(cashaddr, watchAddressStatusCallback);\n }\n async watchAddressTransactions(cashaddr, callback) {\n return this.watchAddress(cashaddr, async (txHash) => {\n const tx = await this.getRawTransactionObject(txHash);\n callback(tx);\n });\n }\n async watchAddressTokenTransactions(cashaddr, callback) {\n return this.watchAddress(cashaddr, async (txHash) => {\n const tx = await this.getRawTransactionObject(txHash, true);\n if (tx.vin.some((val) => val.tokenData) ||\n tx.vout.some((val) => val.tokenData)) {\n callback(tx);\n }\n });\n }\n // watch for block headers and block height, if `skipCurrentHeight` is set, the notification about current block will not arrive\n async watchBlocks(callback, skipCurrentHeight = true) {\n let acknowledged = !skipCurrentHeight;\n const waitForBlockCallback = (_header) => {\n if (!acknowledged) {\n acknowledged = true;\n return;\n }\n _header = _header instanceof Array ? _header[0] : _header;\n callback(_header);\n };\n return this.subscribeToHeaders(waitForBlockCallback);\n }\n // Wait for the next block or a block at given blockchain height.\n async waitForBlock(height) {\n return new Promise(async (resolve) => {\n let cancelWatch;\n if (this.electrum.chainHeight && !height) {\n height = this.electrum.chainHeight + 1;\n }\n cancelWatch = await this.watchBlocks(async (header) => {\n if (!height) {\n height = header.height + 1;\n return;\n }\n if (header.height >= height) {\n await cancelWatch?.();\n resolve(header);\n return;\n }\n });\n });\n }\n // subscribe to notifications sent when new block is found, the block header is sent to callback\n async subscribeToHeaders(callback) {\n return this.subscribeRequest(\"blockchain.headers.subscribe\", callback);\n }\n async subscribeToAddress(cashaddr, callback) {\n return this.subscribeRequest(\"blockchain.address.subscribe\", callback, cashaddr);\n }\n async subscribeToTransaction(txHash, callback) {\n return this.subscribeRequest(\"blockchain.transaction.subscribe\", callback, txHash);\n }\n async performRequest(name, ...parameters) {\n await this.ready();\n const requestTimeout = new Promise(function (_resolve, reject) {\n setTimeout(function () {\n reject(\"electrum-cash request timed out, retrying\");\n }, 30000);\n }).catch(function (e) {\n throw e;\n });\n const request = this.electrum.request(name, ...parameters);\n return await Promise.race([request, requestTimeout])\n .then((value) => {\n if (value instanceof Error)\n throw value;\n let result = value;\n return result;\n })\n .catch(async () => {\n return await Promise.race([request, requestTimeout])\n .then((value) => {\n if (value instanceof Error)\n throw value;\n let result = value;\n return result;\n })\n .catch(function (e) {\n throw e;\n });\n });\n }\n async trackSubscription(methodName, ...parameters) {\n const key = `${methodName}-${this.network}-${JSON.stringify(parameters)}`;\n if (this.subscriptionMap[key]) {\n this.subscriptionMap[key]++;\n }\n else {\n this.subscriptionMap[key] = 1;\n }\n await this.electrum.subscribe(methodName, ...parameters);\n }\n async untrackSubscription(methodName, ...parameters) {\n const key = `${methodName}-${this.network}-${JSON.stringify(parameters)}`;\n if (this.subscriptionMap[key]) {\n this.subscriptionMap[key]--;\n if (this.subscriptionMap[key] <= 0) {\n // only really unsubscribe if there are no more subscriptions for this `key`\n delete this.subscriptionMap[key];\n try {\n await this.electrum.unsubscribe(methodName, ...parameters);\n }\n catch { }\n }\n }\n }\n async subscribeRequest(methodName, callback, ...parameters) {\n await this.ready();\n const handler = (data) => {\n if (data.method === methodName) {\n callback(data.params);\n }\n };\n this.electrum.on(\"notification\", handler);\n // safeguard against multiple subscriptions to headers\n if (methodName === \"blockhain.headers.subscribe\") {\n if (!this.subscribedToHeaders) {\n this.subscribedToHeaders = true;\n await this.trackSubscription(methodName, ...parameters);\n }\n }\n else {\n await this.trackSubscription(methodName, ...parameters);\n }\n this.subscriptions++;\n return async () => {\n this.electrum.off(\"notification\", handler);\n this.subscriptions--;\n // there are no blockchain.headers.unsubscribe method, so let's safeguard against it\n if (methodName !== \"blockchain.headers.subscribe\") {\n await this.untrackSubscription(methodName, ...parameters);\n }\n };\n }\n async ready() {\n return this.connect();\n }\n async connect() {\n await this.cache?.init();\n if (this.electrum.status !== _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__.ConnectionStatus.CONNECTED) {\n await this.electrum.connect();\n }\n }\n disconnect() {\n if (this.subscriptions > 0) {\n // console.warn(\n // `Trying to disconnect a network provider with ${this.subscriptions} active subscriptions. This is in most cases a bad idea.`\n // );\n }\n return this.electrum.disconnect(true, false);\n }\n}\n//# sourceMappingURL=ElectrumNetworkProvider.js.map\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../mainnet-js/dist/module/network/ElectrumNetworkProvider.js?");
|
|
621
|
+
eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ ElectrumNetworkProvider)\n/* harmony export */ });\n/* harmony import */ var _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @electrum-cash/network */ \"../../node_modules/@electrum-cash/network/dist/index.mjs\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../interface.js */ \"../mainnet-js/dist/module/interface.js\");\n/* harmony import */ var _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/transaction.js */ \"../mainnet-js/dist/module/util/transaction.js\");\n/* harmony import */ var _config_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../config.js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var _util_header_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/header.js */ \"../mainnet-js/dist/module/util/header.js\");\n/* harmony import */ var _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../cache/IndexedDbCache.js */ \"../mainnet-js/dist/module/cache/IndexedDbCache.js\");\n/* harmony import */ var _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../cache/WebStorageCache.js */ \"../mainnet-js/dist/module/cache/WebStorageCache.js\");\n/* harmony import */ var _cache_MemoryCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../cache/MemoryCache.js */ \"../mainnet-js/dist/module/cache/MemoryCache.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_util_header_js__WEBPACK_IMPORTED_MODULE_6__, _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__]);\n([_util_header_js__WEBPACK_IMPORTED_MODULE_6__, _util_transaction_js__WEBPACK_IMPORTED_MODULE_7__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n\n\n\n\nclass ElectrumNetworkProvider {\n get cache() {\n if (!_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseMemoryCache &&\n !_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseLocalStorageCache &&\n !_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseIndexedDBCache) {\n this._cache = undefined;\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseMemoryCache && !(this._cache instanceof _cache_MemoryCache_js__WEBPACK_IMPORTED_MODULE_2__.MemoryCache)) {\n this._cache = new _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache();\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseLocalStorageCache &&\n !(this._cache instanceof _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__.WebStorageCache)) {\n this._cache = new _cache_WebStorageCache_js__WEBPACK_IMPORTED_MODULE_4__.WebStorageCache();\n return this._cache;\n }\n if (_config_js__WEBPACK_IMPORTED_MODULE_1__.Config.UseIndexedDBCache && !(this._cache instanceof _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache)) {\n this._cache = new _cache_IndexedDbCache_js__WEBPACK_IMPORTED_MODULE_3__.IndexedDbCache();\n return this._cache;\n }\n return this._cache;\n }\n constructor(electrum, network = _interface_js__WEBPACK_IMPORTED_MODULE_5__.Network.MAINNET, manualConnectionManagement) {\n this.network = network;\n this.manualConnectionManagement = manualConnectionManagement;\n this.subscriptions = 0;\n this.subscribedToHeaders = false;\n this.subscriptionMap = {};\n if (electrum) {\n this.electrum = electrum;\n }\n else {\n throw new Error(`A electrum-cash client is required.`);\n }\n }\n async getUtxos(cashaddr) {\n const result = await this.performRequest(\"blockchain.address.listunspent\", cashaddr, \"include_tokens\");\n return result.map((utxo) => ({\n txid: utxo.tx_hash,\n vout: utxo.tx_pos,\n satoshis: utxo.value,\n height: utxo.height,\n token: utxo.token_data\n ? {\n amount: BigInt(utxo.token_data.amount),\n tokenId: utxo.token_data.category,\n capability: utxo.token_data.nft?.capability,\n commitment: utxo.token_data.nft?.commitment,\n }\n : undefined,\n }));\n }\n async getBalance(cashaddr) {\n const result = await this.performRequest(\"blockchain.address.get_balance\", cashaddr);\n return result.confirmed + result.unconfirmed;\n }\n async getHeader(height, verbose = false) {\n const key = `header-${this.network}-${height}-${verbose}`;\n if (this.cache) {\n const cached = await this.cache.getItem(key);\n if (cached) {\n return verbose ? (0,_util_header_js__WEBPACK_IMPORTED_MODULE_6__.decodeHeader)(JSON.parse(cached)) : JSON.parse(cached);\n }\n }\n const result = await this.performRequest(\"blockchain.header.get\", height);\n if (this.cache) {\n await this.cache.setItem(key, JSON.stringify(result));\n }\n return verbose ? (0,_util_header_js__WEBPACK_IMPORTED_MODULE_6__.decodeHeader)(result) : result;\n }\n async getBlockHeight() {\n return (await this.performRequest(\"blockchain.headers.get_tip\"))\n .height;\n }\n async getRawTransaction(txHash, verbose = false, loadInputValues = false) {\n const key = `tx-${this.network}-${txHash}-${verbose}-${loadInputValues}`;\n if (this.cache) {\n const cached = await this.cache.getItem(key);\n if (cached) {\n return verbose ? JSON.parse(cached) : cached;\n }\n }\n try {\n const transaction = (await this.performRequest(\"blockchain.transaction.get\", txHash, verbose));\n if (this.cache) {\n await this.cache.setItem(key, verbose\n ? JSON.stringify(transaction)\n : transaction);\n }\n if (verbose && loadInputValues) {\n // get unique transaction hashes\n const hashes = [...new Set(transaction.vin.map((val) => val.txid))];\n const transactions = await Promise.all(hashes.map((hash) => this.getRawTransactionObject(hash, false)));\n const transactionMap = new Map();\n transactions.forEach((val) => transactionMap.set(val.hash, val));\n transaction.vin.forEach((input) => {\n const output = transactionMap\n .get(input.txid)\n .vout.find((val) => val.n === input.vout);\n input.address = output.scriptPubKey.addresses[0];\n input.value = output.value;\n input.tokenData = output.tokenData;\n });\n }\n return transaction;\n }\n catch (error) {\n if (error.message.indexOf(\"No such mempool or blockchain transaction.\") > -1)\n throw Error(`Could not decode transaction ${txHash}. It might not exist on the current blockchain (${this.network}).`);\n else\n throw error;\n }\n }\n // gets the decoded transaction in human readable form\n async getRawTransactionObject(txHash, loadInputValues = false) {\n return (await this.getRawTransaction(txHash, true, loadInputValues));\n }\n async sendRawTransaction(txHex, awaitPropagation = true) {\n return new Promise(async (resolve, reject) => {\n let txHash = await (0,_util_transaction_js__WEBPACK_IMPORTED_MODULE_7__.getTransactionHash)(txHex);\n if (!awaitPropagation) {\n this.performRequest(\"blockchain.transaction.broadcast\", txHex);\n resolve(txHash);\n }\n else {\n let cancel;\n const waitForTransactionCallback = async (data) => {\n if (data && data[0] === txHash && data[1] !== null) {\n await cancel?.();\n resolve(txHash);\n }\n };\n cancel = await this.subscribeToTransaction(txHash, waitForTransactionCallback);\n this.performRequest(\"blockchain.transaction.broadcast\", txHex).catch(async (error) => {\n await cancel?.();\n reject(error);\n });\n }\n });\n }\n // Get transaction history of a given cashaddr\n async getHistory(cashaddr, fromHeight = 0, toHeight = -1) {\n const result = await this.performRequest(\"blockchain.address.get_history\", cashaddr, fromHeight, toHeight);\n return result;\n }\n // Get the minimum fee a low-priority transaction must pay in order to be accepted to the daemon's memory pool.\n async getRelayFee() {\n const result = (await this.performRequest(\"blockchain.relayfee\"));\n return result;\n }\n async watchAddressStatus(cashaddr, callback) {\n const watchAddressStatusCallback = async (data) => {\n // subscription acknowledgement is the latest known status or null if no status is known\n // status is an array: [ cashaddr, statusHash ]\n if (data instanceof Array) {\n const addr = data[0];\n if (addr !== cashaddr) {\n return;\n }\n const status = data[1];\n callback(status);\n }\n };\n return this.subscribeToAddress(cashaddr, watchAddressStatusCallback);\n }\n async watchAddress(cashaddr, callback) {\n const historyMap = {};\n this.getHistory(cashaddr).then((history) => history.forEach((val) => (historyMap[val.tx_hash] = true)));\n const watchAddressStatusCallback = async () => {\n const newHistory = await this.getHistory(cashaddr);\n // sort history to put unconfirmed transactions in the beginning, then transactions in block height descenting order\n const txHashes = newHistory\n .sort((a, b) => a.height <= 0 || b.height <= 0 ? -1 : b.height - a.height)\n .map((val) => val.tx_hash);\n for (const hash of txHashes) {\n if (!(hash in historyMap)) {\n historyMap[hash] = true;\n callback(hash);\n // exit early to prevent further map lookups\n break;\n }\n }\n };\n return this.watchAddressStatus(cashaddr, watchAddressStatusCallback);\n }\n async watchAddressTransactions(cashaddr, callback) {\n return this.watchAddress(cashaddr, async (txHash) => {\n const tx = await this.getRawTransactionObject(txHash);\n callback(tx);\n });\n }\n async watchAddressTokenTransactions(cashaddr, callback) {\n return this.watchAddress(cashaddr, async (txHash) => {\n const tx = await this.getRawTransactionObject(txHash, true);\n if (tx.vin.some((val) => val.tokenData) ||\n tx.vout.some((val) => val.tokenData)) {\n callback(tx);\n }\n });\n }\n // watch for block headers and block height, if `skipCurrentHeight` is set, the notification about current block will not arrive\n async watchBlocks(callback, skipCurrentHeight = true) {\n let acknowledged = !skipCurrentHeight;\n const waitForBlockCallback = (_header) => {\n if (!acknowledged) {\n acknowledged = true;\n return;\n }\n _header = _header instanceof Array ? _header[0] : _header;\n callback(_header);\n };\n return this.subscribeToHeaders(waitForBlockCallback);\n }\n // Wait for the next block or a block at given blockchain height.\n async waitForBlock(height) {\n return new Promise(async (resolve) => {\n let cancelWatch;\n if (this.electrum.chainHeight && !height) {\n height = this.electrum.chainHeight + 1;\n }\n cancelWatch = await this.watchBlocks(async (header) => {\n if (!height) {\n height = header.height + 1;\n return;\n }\n if (header.height >= height) {\n await cancelWatch?.();\n resolve(header);\n return;\n }\n });\n });\n }\n // subscribe to notifications sent when new block is found, the block header is sent to callback\n async subscribeToHeaders(callback) {\n return this.subscribeRequest(\"blockchain.headers.subscribe\", callback);\n }\n async subscribeToAddress(cashaddr, callback) {\n return this.subscribeRequest(\"blockchain.address.subscribe\", callback, cashaddr);\n }\n async subscribeToTransaction(txHash, callback) {\n return this.subscribeRequest(\"blockchain.transaction.subscribe\", callback, txHash);\n }\n async performRequest(name, ...parameters) {\n await this.ready();\n const requestTimeout = new Promise(function (_resolve, reject) {\n setTimeout(function () {\n reject(\"electrum-cash request timed out, retrying\");\n }, 30000);\n }).catch(function (e) {\n throw e;\n });\n const request = this.electrum.request(name, ...parameters);\n return await Promise.race([request, requestTimeout])\n .then((value) => {\n if (value instanceof Error)\n throw value;\n let result = value;\n return result;\n })\n .catch(async () => {\n return await Promise.race([request, requestTimeout])\n .then((value) => {\n if (value instanceof Error)\n throw value;\n let result = value;\n return result;\n })\n .catch(function (e) {\n throw e;\n });\n });\n }\n async trackSubscription(methodName, ...parameters) {\n const key = `${methodName}-${this.network}-${JSON.stringify(parameters)}`;\n if (this.subscriptionMap[key]) {\n this.subscriptionMap[key]++;\n }\n else {\n this.subscriptionMap[key] = 1;\n }\n await this.electrum.subscribe(methodName, ...parameters);\n }\n async untrackSubscription(methodName, ...parameters) {\n const key = `${methodName}-${this.network}-${JSON.stringify(parameters)}`;\n if (this.subscriptionMap[key]) {\n this.subscriptionMap[key]--;\n if (this.subscriptionMap[key] <= 0) {\n // only really unsubscribe if there are no more subscriptions for this `key`\n delete this.subscriptionMap[key];\n try {\n await this.electrum.unsubscribe(methodName, ...parameters);\n }\n catch { }\n }\n }\n }\n async subscribeRequest(methodName, callback, ...parameters) {\n await this.ready();\n const handler = (data) => {\n if (data.method === methodName) {\n callback(data.params);\n }\n };\n this.electrum.on(\"notification\", handler);\n // safeguard against multiple subscriptions to headers\n if (methodName === \"blockhain.headers.subscribe\") {\n if (!this.subscribedToHeaders) {\n this.subscribedToHeaders = true;\n await this.trackSubscription(methodName, ...parameters);\n }\n }\n else {\n await this.trackSubscription(methodName, ...parameters);\n }\n this.subscriptions++;\n return async () => {\n this.electrum.off(\"notification\", handler);\n this.subscriptions--;\n // there are no blockchain.headers.unsubscribe method, so let's safeguard against it\n if (methodName !== \"blockchain.headers.subscribe\") {\n await this.untrackSubscription(methodName, ...parameters);\n }\n };\n }\n async ready() {\n return this.connect();\n }\n async connect() {\n await this.cache?.init();\n if (this.electrum.status !== _electrum_cash_network__WEBPACK_IMPORTED_MODULE_0__.ConnectionStatus.CONNECTED) {\n await this.electrum.connect();\n }\n }\n disconnect() {\n if (this.subscriptions > 0) {\n // console.warn(\n // `Trying to disconnect a network provider with ${this.subscriptions} active subscriptions. This is in most cases a bad idea.`\n // );\n }\n return this.electrum.disconnect(true, false);\n }\n}\n//# sourceMappingURL=ElectrumNetworkProvider.js.map\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../mainnet-js/dist/module/network/ElectrumNetworkProvider.js?");
|
|
633
622
|
|
|
634
623
|
/***/ }),
|
|
635
624
|
|
|
@@ -750,7 +739,7 @@ eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_de
|
|
|
750
739
|
/***/ ((__webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
751
740
|
|
|
752
741
|
"use strict";
|
|
753
|
-
eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"OpReturnData\": () => (/* binding */ OpReturnData)\n/* harmony export */ });\n/* unused harmony exports SendRequest, TokenGenesisRequest, TokenBurnRequest, TokenSendRequest, TokenMintRequest, SendResponse, XPubKey, fromUtxoId, toUtxoId */\n/* harmony import */ var _util_sanitizeUnit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/sanitizeUnit.js */ \"../mainnet-js/dist/module/util/sanitizeUnit.js\");\n/* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../constant.js */ \"../mainnet-js/dist/module/constant.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/number.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _config_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config.js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var _util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/deriveCashaddr.js */ \"../mainnet-js/dist/module/util/deriveCashaddr.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__
|
|
742
|
+
eval("__webpack_require__.a(__webpack_module__, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"OpReturnData\": () => (/* binding */ OpReturnData)\n/* harmony export */ });\n/* unused harmony exports SendRequest, TokenGenesisRequest, TokenBurnRequest, TokenSendRequest, TokenMintRequest, SendResponse, XPubKey, fromUtxoId, toUtxoId */\n/* harmony import */ var _util_sanitizeUnit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/sanitizeUnit.js */ \"../mainnet-js/dist/module/util/sanitizeUnit.js\");\n/* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../constant.js */ \"../mainnet-js/dist/module/constant.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/number.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @bitauth/libauth */ \"../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _config_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config.js */ \"../mainnet-js/dist/module/config.js\");\n/* harmony import */ var _util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/deriveCashaddr.js */ \"../mainnet-js/dist/module/util/deriveCashaddr.js\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__]);\n_util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__ = (__webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__)[0];\n\n\n\n\n\nclass SendRequest {\n constructor({ cashaddr, value, unit, }) {\n this.cashaddr = cashaddr;\n this.value = value;\n this.unit = (0,_util_sanitizeUnit_js__WEBPACK_IMPORTED_MODULE_0__.sanitizeUnit)(unit);\n }\n}\nclass TokenGenesisRequest {\n constructor({ amount, capability, commitment, cashaddr, value, }) {\n this.amount = amount;\n this.capability = capability;\n this.commitment = commitment;\n this.cashaddr = cashaddr;\n this.value = value;\n }\n}\nclass TokenBurnRequest {\n constructor({ tokenId, capability, commitment, amount, cashaddr, }) {\n this.tokenId = tokenId;\n this.capability = capability;\n this.commitment = commitment;\n this.amount = amount ? BigInt(amount) : 0n;\n this.cashaddr = cashaddr;\n }\n}\nclass TokenSendRequest {\n constructor({ cashaddr, value, amount, tokenId, capability, commitment, }) {\n (0,_util_deriveCashaddr_js__WEBPACK_IMPORTED_MODULE_1__.checkTokenaddr)(cashaddr, _config_js__WEBPACK_IMPORTED_MODULE_2__.Config.EnforceCashTokenReceiptAddresses);\n this.cashaddr = cashaddr;\n this.value = value;\n this.amount = amount ? BigInt(amount) : 0n;\n this.tokenId = tokenId;\n this.capability = capability;\n this.commitment = commitment;\n }\n}\nclass TokenMintRequest {\n constructor({ capability, commitment, cashaddr, value, }) {\n this.capability = capability;\n this.commitment = commitment;\n this.cashaddr = cashaddr;\n this.value = value;\n }\n}\nclass OpReturnData {\n constructor(buffer) {\n this.buffer = Uint8Array.from(buffer);\n }\n /**\n * from - Construct OP_RETURN data from arbitrary data type\n *\n * @param string UTF-8 encoded string message to be converted to OP_RETURN data\n *\n * @returns class instance\n */\n static from(data) {\n return this.fromArray([data]);\n }\n /**\n * fromString - Accept data as a simple UTF-8 string message and append an OP_RETURN and PUSH_DATA1 opcodes to it\n *\n * @param string UTF-8 encoded string message to be converted to OP_RETURN data\n *\n * @returns class instance\n */\n static fromString(string) {\n return this.fromArray([string]);\n }\n /**\n * buffer - Accept OP_RETURN data as a binary buffer.\n * If buffer lacks the OP_RETURN and OP_PUSHDATA opcodes, they will be prepended.\n *\n * @param buffer Data buffer to be assigned to the OP_RETURN outpit\n *\n * @returns class instance\n */\n static fromUint8Array(uint8Array) {\n if (uint8Array[0] !== 0x6a) {\n return this.fromArray([uint8Array]);\n }\n return new this(Uint8Array.from(uint8Array));\n }\n /**\n * fromArray - Accept array of data\n *\n * @param array Array of Uint8Array or UTF-8 encoded string messages to be converted to OP_RETURN data\n *\n * @returns class instance\n */\n static fromArray(array) {\n let data = Uint8Array.from([0x6a]); // OP_RETURN\n for (const element of array) {\n let length;\n let elementData;\n let lengthData;\n if (typeof element === \"string\") {\n elementData = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_3__.utf8ToBin)(element);\n length = elementData.length;\n }\n else if (element instanceof Uint8Array) {\n elementData = element;\n length = elementData.length;\n }\n else {\n throw new Error(\"Wrong data array element\");\n }\n if (length < 76) {\n // OP_PUSHDATA_1\n lengthData = [length];\n }\n else if (length < 223) {\n // default max `-datacarriersize`\n lengthData = [0x4c, length];\n }\n else {\n throw new Error(\"OP_RETURN data can not exceed 220 bytes in size\");\n }\n data = Uint8Array.from([...data, ...lengthData, ...elementData]);\n }\n if (data.length > 220) {\n throw new Error(\"OP_RETURN data can not exceed 220 bytes in size\");\n }\n return new this(data);\n }\n /**\n * parseBinary - parse OP_RETURN data and return pushed chunks of binary data\n *\n * @param opReturn Raw OP_RETURN data\n *\n * @returns array of binary data chunks pushed\n */\n static parseBinary(opReturn) {\n const chunks = [];\n let position = 1;\n // handle direct push, OP_PUSHDATA1, OP_PUSHDATA2;\n // OP_PUSHDATA4 is not supported in OP_RETURNs by consensus\n while (opReturn[position]) {\n let length = 0;\n if (opReturn[position] === 0x4c) {\n length = opReturn[position + 1];\n position += 2;\n }\n else if (opReturn[position] === 0x4d) {\n length = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_4__.binToNumberUint16LE)(opReturn.slice(position + 1, position + 3));\n position += 3;\n }\n else {\n length = opReturn[position];\n position += 1;\n }\n chunks.push(opReturn.slice(position, position + length));\n position += length;\n }\n return chunks;\n }\n /**\n * parse - parse OP_RETURN hex data and return pushed chunks of binary data, converted to utf8 strings\n *\n * @param opReturn Raw OP_RETURN hex data\n *\n * @returns array of binary data chunks pushed, converted to utf8 strings\n */\n static parse(opReturnHex) {\n return this.parseBinary((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_5__.hexToBin)(opReturnHex)).map((val) => (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_3__.binToUtf8)(val));\n }\n}\nclass SendResponse {\n constructor({ txId, balance, explorerUrl, }) {\n this.txId = txId;\n this.balance = balance;\n this.explorerUrl = explorerUrl;\n }\n}\nclass XPubKey {\n constructor({ path, xPubKey }) {\n this.path = path;\n this.xPubKey = xPubKey;\n }\n async ready() {\n await this.xPubKey;\n return this.asObject();\n }\n asObject() {\n return {\n path: this.path,\n xPubKey: this.xPubKey,\n };\n }\n}\nconst fromUtxoId = (utxoId) => {\n const [txid, vout, satoshis, tokenId, amount, capability, commitment] = utxoId.split(_constant_js__WEBPACK_IMPORTED_MODULE_6__.DELIMITER);\n return {\n satoshis: satoshis ? parseInt(satoshis) : 0,\n vout: parseInt(vout),\n txid,\n token: tokenId\n ? {\n tokenId,\n amount: BigInt(amount),\n capability: capability || undefined,\n commitment: commitment || undefined,\n }\n : undefined,\n };\n};\nconst toUtxoId = (utxo) => {\n return [\n utxo.txid,\n utxo.vout,\n utxo.satoshis,\n utxo.token?.tokenId,\n utxo.token?.amount,\n utxo.token?.capability,\n utxo.token?.commitment,\n ]\n .join(_constant_js__WEBPACK_IMPORTED_MODULE_6__.DELIMITER)\n .replace(/:+$/, \"\");\n};\n//# sourceMappingURL=model.js.map\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://@mainnet-cash/bcmr/../mainnet-js/dist/module/wallet/model.js?");
|
|
754
743
|
|
|
755
744
|
/***/ }),
|
|
756
745
|
|
package/dist/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<title>The Empty Mainnet App</title>
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="BCMR-2.7.
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="BCMR-2.7.31.js"></script></head>
|
|
7
7
|
<body><script defer src="mainnet.js"></script><script>document.addEventListener("DOMContentLoaded", async (event) => Object.assign(globalThis, await __mainnetPromise, await __bcmrPromise))</script>
|
|
8
8
|
</body>
|
|
9
9
|
</html>
|
|
@@ -1 +1 @@
|
|
|
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.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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../../mainnet-js/dist/module/test/fetch.d.ts","../../mainnet-js/dist/module/test/expect.d.ts","../../mainnet-js/dist/module/db/interface.d.ts","../../mainnet-js/dist/module/db/StorageProvider.d.ts","../../mainnet-js/dist/module/db/index.d.ts","../../mainnet-js/dist/module/mine/mine.d.ts","../../mainnet-js/dist/module/mine/index.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/index.d.ts","../../mainnet-js/dist/module/interface.d.ts","../../mainnet-js/dist/module/wallet/enum.d.ts","../../mainnet-js/dist/module/enum.d.ts","../../mainnet-js/dist/module/network/interface.d.ts","../../mainnet-js/dist/module/util/balanceObjectFromSatoshi.d.ts","../../mainnet-js/dist/module/wallet/interface.d.ts","../../mainnet-js/dist/module/network/NetworkProvider.d.ts","../../mainnet-js/dist/module/network/default.d.ts","../../mainnet-js/dist/module/network/Connection.d.ts","../../../node_modules/eventemitter3/index.d.ts","../../../node_modules/@electrum-cash/network/dist/index.d.ts","../../mainnet-js/dist/module/cache/interface.d.ts","../../mainnet-js/dist/module/network/ElectrumNetworkProvider.d.ts","../../mainnet-js/dist/module/network/index.d.ts","../../mainnet-js/dist/module/message/interface.d.ts","../../mainnet-js/dist/module/message/signed.d.ts","../../mainnet-js/dist/module/history/interface.d.ts","../../mainnet-js/dist/module/wallet/model.d.ts","../../mainnet-js/dist/module/wallet/Util.d.ts","../../mainnet-js/dist/module/message/index.d.ts","../../mainnet-js/dist/module/wallet/Wif.d.ts","../../mainnet-js/dist/module/wallet/Base.d.ts","../../mainnet-js/dist/module/wallet/createWallet.d.ts","../../mainnet-js/dist/module/network/configuration.d.ts","../../mainnet-js/dist/module/config.d.ts","../../mainnet-js/dist/module/util/amountInSatoshi.d.ts","../../mainnet-js/dist/module/util/asSendRequestObject.d.ts","../../mainnet-js/dist/module/util/base64.d.ts","../../mainnet-js/dist/module/util/convert.d.ts","../../mainnet-js/dist/module/util/delay.d.ts","../../mainnet-js/dist/module/util/deriveNetwork.d.ts","../../mainnet-js/dist/module/util/derivePublicKeyHash.d.ts","../../mainnet-js/dist/module/util/deriveCashaddr.d.ts","../../mainnet-js/dist/module/util/getAddrsByXpubKey.d.ts","../../mainnet-js/dist/module/util/getRuntimePlatform.d.ts","../../mainnet-js/dist/module/util/getUsdRate.d.ts","../../mainnet-js/dist/module/util/hash160.d.ts","../../mainnet-js/dist/module/rate/ExchangeRate.d.ts","../../mainnet-js/dist/module/util/sanitizeAddress.d.ts","../../mainnet-js/dist/module/util/sanitizeUnit.d.ts","../../mainnet-js/dist/module/util/randomInt.d.ts","../../mainnet-js/dist/module/util/getXPubKey.d.ts","../../mainnet-js/dist/module/util/sumUtxoValue.d.ts","../../mainnet-js/dist/module/util/header.d.ts","../../mainnet-js/dist/module/util/index.d.ts","../../mainnet-js/dist/module/history/electrumTransformer.d.ts","../../mainnet-js/dist/module/libauth.d.ts","../../mainnet-js/dist/module/constant.d.ts","../../mainnet-js/dist/module/index.d.ts","../src/bcmr-v2.schema.ts","../src/Bcmr.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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/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/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[199,460],[47,48,49,50,460],[460],[52,53,55,56,57,58,460],[54,460],[60,199,460],[60,61,62,63,64,65,66,67,69,70,460],[68,460],[72,86,87,88,89,90,91,92,93,94,460],[85,86,460],[59,84,460],[88,460],[70,96,460],[73,74,75,76,77,78,79,80,81,82,83,460],[95,98,99,100,101,102,103,104,105,106,107,108,109,199,460],[98,199,460],[98,99,110,111,460],[113,114,115,116,117,118,460],[115,199,460],[51,59,71,84,95,97,112,119,123,126,128,196,198,460],[120,121,122,460],[121,199,460],[124,125,460],[127,460],[147,460],[158,199,460],[134,135,460],[158,159,160,161,162,163,164,165,460],[167,460],[195,460],[168,199,460],[167,168,169,170,171,460],[159,460],[169,195,460],[173,174,199,460],[162,460],[174,175,176,460],[134,135,147,157,158,164,166,169,172,177,178,179,180,181,185,186,189,199,460],[178,190,460],[180,190,195,460],[182,199,460],[185,190,460],[134,135,187,460],[179,181,183,184,186,187,188,460],[191,192,193,460],[139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,460],[143,460],[135,199,460],[138,157,178,185,190,194,460],[130,199,460],[129,131,132,133,136,137,460],[134,135,195,460],[197,460],[371,460],[460,472,475],[460,470],[460,468,474],[460,472],[460,469,473],[460,471],[414,460],[417,460],[418,423,451,460],[419,430,431,438,448,459,460],[419,420,430,438,460],[421,460],[422,423,431,439,460],[423,448,456,460],[424,426,430,438,460],[425,460],[426,427,460],[430,460],[428,430,460],[430,431,432,448,459,460],[430,431,432,445,448,451,460],[460,464],[433,438,448,459,460],[430,431,433,434,438,448,456,459,460],[433,435,448,456,459,460],[414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466],[430,436,460],[437,459,460],[426,430,438,448,460],[439,460],[440,460],[417,441,460],[442,458,460,464],[443,460],[444,460],[430,445,446,460],[445,447,460,462],[418,430,448,449,450,451,460],[418,448,450,460],[448,449,460],[451,460],[452,460],[430,454,455,460],[454,455,460],[423,438,448,456,460],[457,460],[438,458,460],[418,433,444,459,460],[423,460],[448,460,461],[460,462],[460,463],[418,423,430,432,441,448,459,460,462,464],[448,460,465],[200,410,411,460],[411,412,460],[203,460],[203,204,460],[361,460],[364,368,378,460],[362,460],[201,202,205,207,362,363,364,367,375,376,377,378,379,382,383,384,385,386,406,407,408,409,460],[376,377,460],[376,460],[206,460],[361,362,368,460],[362,365,367,368,372,373,460],[362,367,460],[362,365,368,460],[365,368,369,370,374,460],[379,460],[361,362,460],[361,366,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,460],[364,460],[204,361,362,363,364,365,366,367,374,378,379,380,382,410,460],[361,364,365,368,460],[361,363,364,366,367,374,376,379,381,383,460],[367,382,383,460],[362,363,364,365,366,460],[361,362,364,366,460],[360,460],[208,209,210,211,460],[213,214,216,217,218,219,460],[215,460],[221,360,460],[221,222,223,224,225,226,227,228,230,231,460],[229,460],[233,247,248,249,250,251,252,253,254,255,460],[246,247,460],[220,245,460],[249,460],[231,257,460],[234,235,236,237,238,239,240,241,242,243,244,460],[256,259,260,261,262,263,264,265,266,267,268,269,270,360,460],[259,360,460],[259,260,271,272,460],[274,275,276,277,278,279,460],[276,360,460],[212,220,232,245,256,258,273,280,284,287,289,357,359,460],[281,282,283,460],[282,360,460],[285,286,460],[288,460],[308,460],[319,360,460],[295,296,460],[319,320,321,322,323,324,325,326,460],[328,460],[356,460],[329,360,460],[328,329,330,331,332,460],[320,460],[330,356,460],[334,335,360,460],[323,460],[335,336,337,460],[295,296,308,318,319,325,327,330,333,338,339,340,341,342,346,347,350,360,460],[339,351,460],[341,351,356,460],[343,360,460],[346,351,460],[295,296,348,460],[340,342,344,345,347,348,349,460],[352,353,354,460],[300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,460],[304,460],[296,360,460],[299,318,339,346,351,355,460],[291,360,460],[290,292,293,294,297,298,460],[295,296,356,460],[358,460]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","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":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","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":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"374adf191a95498dce2521fad9fc0edb29728df0b7cd99cb1fd0b0ab67101e6a","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"9d5924d364ccdd76bf3c308782fcfcdd29e91398d88fdb0aff6a2af9851217b0","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"9ae667792ebe12f4dcb09643924bf55cafc5119be30623c5dad6686ab7fb5b69","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"d057667a786baf4c1a48f92b92c21b393dabf88c4e9eb19be20e6c1b1315c4ad","impliedFormat":99},{"version":"63efc44990c8eedc0407b27dd745a09dcda17198d100ead4e86899e66fa262bc","impliedFormat":99},{"version":"01820e900492e470077fb1ef4f5bda0a4ba3a45b3720bb1b6f1d8a5c5eec4543","impliedFormat":99},{"version":"73847383a94b2cdbdf39190828a3cf30232e9cb5fac25715f1706a298cbf973e","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"ca44c838bc33cb25134a56f4cb8b25e5c78d5d4dda80ce3ab0c368040c23fc4f","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"ca801e5add5b218ade2a7e60bcb64c8baf6e43b54f1bc98454ba867b65723e52","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},"c4c2edaa636235a2977987778d7d5843ff70aaa66be8b959a259dc13fffdf2de","e4b720ad7cb72f6aa05cc8d94f15aa76a6335ce56f094ce06ca3a9fbb83be0b3","fa2eae3a28979e3d440e9beb1fc257675d416bffcfe744c38f49e34dd63898db","b160e3dd134b408f7771757b2667dc8df5b5db56378fdff870296593017cbbf5","61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c","3b278139f3ee26991f492c67ff390110b6908aacd90c407d7fd64c30476b2427","030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af",{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"0d3a3d5097a6a21e8574900bf1a1bc5df40988586dcf9dcb653fa700503d4962","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"49611c9c0dea1fad478353d0a5c394cd5c66b60d760d12e0d99063a2ec8cda5f","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"2140fde2b2b1861f77c0e308232a2f73dd78e7cc784207c618de3b6c46da190a","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"59d6dd3cf7364974669a5942dbb548e691b1f8414c12940b5ba27339dee4a91e","impliedFormat":99},{"version":"3c4b2980f4880b3de393ecfd0ff078c00a0d7ed2f751a2c68bc5394ec9917878","impliedFormat":99},{"version":"49e1b05f3946a3a49dcbc81900e6192f84cf3d870223fc04133924079ab26e75","impliedFormat":99},{"version":"433ba82be5f2662d62fe8365a537644adb43b7f281d810c99eb1c09e4e209f88","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"a43368b9ec2b3b71677d47a05c7d3296ca632f6c05b3be9aa9b18b18df6666ae","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"bca3eb2e7d0e4a24daba895e9ead08317a90a8326b07b63d2775b09cc61b2f6d","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},"2e4d0dd0ae5f0ec7cef685e506e398b55085216ee018539824cca75a2b0d4c4e","ad92e210c81ee442085cc19f44797ffc75e9e85a85fce52f7bd9b49bc58bab80","e1ad0ca8d6c8351d1e80b6ed782654ed3cd7f1674871249bf848737bf8e5c032","add065e48007eb3a471648bb657a9a98f67d636567f23fd92a8d4ec5e6ef1cf6","77297308f0259106d33ec57589c81d582ba7cd668b88aaef5462d44f2ca45bf7","73fbcd30cedab4d2ff78c2ae44b814e7e43870ae564a867fe3ee52279eb10fc5","b966e4b8260ebbe3f5fd8ed81bb8569822082ae38f974b9a70a4cda3aae85c9a","339c6463f32d297da9d028f9e1ddfa65bb09ade95fb4d4f941ed1afa98b69474","eb9ed10f5edb23efc5897763b5b2cad5d49b774abc2dc946fe7a3c94188bd6f9",{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"c9743b14ef911885fa32fd147248762ca05ad628d0e038deeef443579f757db1","impliedFormat":99},"76fceb21f9167bf9a9e460b40792a27e38b69420836a3eaae0a5f2214baef177","e23398b60b83ffceb6e414c0d913735a59d951b37de8f327a3ef936d04427aec","ac60d287a05bac94e0a3ef172f0ce8a976dae9240122e05f44b8b54ee207fae9","be479b776382dd1dc5cf32301bac84d4b0ce73cd95cdd3216376a989866660ad","cd51ed4160f71ac1c4b6bf9d9b140a80e06ae43588c2b88b244cc8966b668f03","6457e0781ef114fdfbb95e8baaef17ce8c5e6b8a8cdc51e678693a8350a7d65c","d4cb051c6ab52ef8e6abc1123a3ea9f4772f32b7d813b93adb750179b730d34c","77253fc264ee4e2e2c0df6cac38a71407c5de4c0697285316b3bab038cc739f8","12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663","3702d67e0f89ec2de2cbf3b4d2afb87240d246b3fd93d9a78a8ac3f53f3b6d95","aa14b1dd0c0cce94ffadb732e6bf2525d7c95b3b7732899afc74bf1dfbde70b5","ea2e999f67da7a0b5dea052c0c4f402912f72e940950a6e05ceaa20877ae3e58","2a98a4ab9e9820072a946fcfef340d689969735f1d6de698296ffeb39a12ade9","f71a456dea7dd09a4bcc7c7bb6df268c67f7a4e4f2db2fa076e126cee047c459","7f3de4883d90c6a5f9c13178104017bad419cad0bd2dfe8c7025ab5aeefb2f81","4fcba3823aea7a18b160041af629cff46341a0ff790b691b831939eb7f954a47","614051bf05d3b41673e2e865ed30c4eea50a171253fe7b7d3fd0b93a84bcafc4","b2096bb48cd9bd242d44fbfec98cfee9c5d8c94fd730c7139a29aa0890e0ca66","be8c4dff12f713c857ff7211e205ba6cf5a4212829268e5d3937c5eec30fe03e","911b6da100b2ee84b9fc1dbdc34771a0701e4c8e0fa694bb510c33359b6026e2","157efbab6372e89ffb534b16a298e716175add5dfc8159fb9608877eb2a18059","7f8acc73668636513659747f853332a4b7fefa40d5ccf5d20f7696a69598e399","0ea4b7de810d4759cc256c64d94cbeb12e97a26582f8cea8981827a20be67125","97b5d2fdec7c85f9a8bbff85350c12635a94ef3dfa265679ab0806ecadb85dd4","2aeae9a85d9f2bd098e207b97f94105370c2986206f9992fe593430d5e6e2ff2","00ee72c8e766b351df16e157c6dbd7b82f5fd659b64a4ae71bada2af2c9a2196","1e83101dbd6226aa93f9c797831436d644279b048c2744341f3464a04d54e750","94ea9bfd0e479d53e6dbe56667671a509c9368dca504b26bef69d726abba8a2b","89b9bdcbcfb6dadcff24eab8a1a3ec3ae0eb2d548a37f4091aa8aab0ac405627","3dfc11fb9036c0deffd34eca4bf80cb7c86b8f6e47f4d7c93b6970593367adfb","ee4e8505266b5bb2be82d994812b327c7eff0330648f8b7be90fa4de1e73ca48","8c21842ad86d5edf7d349becd72702fdfa5d07183cbd1fe4e398b036acafe3e3","ae56fb90af23a6c7c0b7789b531a39065e1e0b963c6d420337e4db08605e1fe5","f320b11163bb6ad71ab4af7c4122f82c850223da067ed10af25db24f353a76bb","aee0ef2b8255055a613808de86c9716cbdc8424fe651572767c28cab4bf8c88b","6656dccace415e2c2c6efa3030480206e1b613bf9778143327745d9b448bed47","f8ca74c64edbec016d1ea5f9a353f5e1b9eb0f9c2239903de5dc22dbecd331b6","79a606aba86e214a76167ccc8cdf3a5bab29c77b95c3005a341040543e47e36e",{"version":"1a159891a2340adfb2c31ed2fc626212feb08f10a57b1b2238f3c24f06e7a3b8","signature":"f6b5d3025f27fcde576fca6fd8fdfcc5597b03fdd75128aa10dbab957f941a98"},{"version":"bf08f2489352c4457fa9192b276f723ee7f3943a353092d45e863ceacbcf0841","signature":"0a74246a9c98a0a71306ffd17182c808f66149c4b5505a1c2285a172eb240121"},"1c863cc9ae1131b3ee966b0f3b44daf1392f72fe8e9a37ab7aa7d9e3d84f0d44",{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true,"impliedFormat":1}],"root":[[411,413]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":99,"useDefineForClassFields":false},"referencedMap":[[200,1],[51,2],[47,1],[48,3],[49,3],[50,1],[59,4],[52,3],[53,3],[54,3],[55,5],[56,3],[57,3],[58,3],[61,6],[62,3],[63,1],[64,6],[60,1],[65,6],[71,7],[67,1],[66,1],[68,1],[69,8],[72,1],[95,9],[87,10],[85,11],[88,1],[89,12],[90,1],[86,3],[91,1],[92,1],[93,1],[94,1],[97,13],[96,3],[70,3],[73,3],[74,3],[75,3],[76,3],[84,14],[77,3],[78,3],[79,1],[80,3],[81,3],[82,3],[83,3],[110,15],[98,1],[99,16],[112,17],[111,1],[100,3],[101,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[113,1],[115,1],[114,1],[119,18],[116,1],[117,1],[118,19],[199,20],[123,21],[120,1],[122,22],[121,1],[124,1],[126,23],[125,1],[127,1],[128,24],[158,3],[159,3],[160,25],[161,26],[162,3],[163,1],[164,1],[165,27],[166,28],[168,29],[169,30],[170,31],[167,1],[171,27],[172,32],[173,3],[178,33],[180,34],[175,35],[184,1],[185,36],[174,1],[176,27],[177,37],[190,38],[182,3],[179,39],[181,40],[183,41],[186,42],[187,1],[188,43],[189,44],[191,3],[192,3],[193,1],[194,45],[139,1],[140,1],[141,1],[142,1],[157,46],[144,47],[145,1],[146,3],[147,1],[148,1],[149,1],[150,48],[151,3],[152,1],[153,1],[154,1],[143,1],[155,1],[156,1],[195,49],[137,3],[130,3],[129,3],[131,50],[132,3],[133,1],[136,27],[138,51],[134,1],[135,1],[196,52],[197,1],[198,53],[372,54],[476,55],[468,3],[471,56],[470,3],[469,3],[475,57],[473,58],[474,59],[472,60],[414,61],[415,61],[417,62],[418,63],[419,64],[420,65],[421,66],[422,67],[423,68],[424,69],[425,70],[426,71],[427,71],[429,72],[428,73],[430,72],[431,74],[432,75],[416,76],[466,3],[433,77],[434,78],[435,79],[467,80],[436,81],[437,82],[438,83],[439,84],[440,85],[441,86],[442,87],[443,88],[444,89],[445,90],[446,90],[447,91],[448,92],[450,93],[449,94],[451,95],[452,96],[453,3],[454,97],[455,98],[456,99],[457,100],[458,101],[459,102],[460,103],[461,104],[462,105],[463,106],[464,107],[465,108],[371,3],[45,3],[46,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[19,3],[4,3],[20,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[412,109],[411,3],[413,110],[373,3],[386,3],[409,3],[204,111],[205,112],[203,3],[364,113],[407,114],[378,115],[410,116],[362,113],[408,113],[381,117],[376,3],[377,118],[207,119],[206,3],[370,120],[374,121],[368,122],[385,115],[369,123],[375,124],[365,115],[399,3],[202,3],[201,3],[387,3],[388,125],[366,3],[389,3],[390,3],[391,3],[394,126],[392,3],[393,113],[395,113],[396,3],[397,3],[403,3],[398,3],[405,115],[406,127],[402,3],[400,3],[401,128],[404,115],[383,129],[380,130],[382,131],[384,132],[363,3],[367,133],[379,134],[361,135],[212,136],[208,135],[209,3],[210,3],[211,135],[220,137],[213,3],[214,3],[215,3],[216,138],[217,3],[218,3],[219,3],[222,139],[223,3],[224,135],[225,139],[221,135],[226,139],[232,140],[228,135],[227,135],[229,135],[230,141],[233,135],[256,142],[248,143],[246,144],[249,135],[250,145],[251,135],[247,3],[252,135],[253,135],[254,135],[255,135],[258,146],[257,3],[231,3],[234,3],[235,3],[236,3],[237,3],[245,147],[238,3],[239,3],[240,135],[241,3],[242,3],[243,3],[244,3],[271,148],[259,135],[260,149],[273,150],[272,135],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[274,135],[276,135],[275,135],[280,151],[277,135],[278,135],[279,152],[360,153],[284,154],[281,135],[283,155],[282,135],[285,135],[287,156],[286,135],[288,135],[289,157],[319,3],[320,3],[321,158],[322,159],[323,3],[324,135],[325,135],[326,160],[327,161],[329,162],[330,163],[331,164],[328,135],[332,160],[333,165],[334,3],[339,166],[341,167],[336,168],[345,135],[346,169],[335,135],[337,160],[338,170],[351,171],[343,3],[340,172],[342,173],[344,174],[347,175],[348,135],[349,176],[350,177],[352,3],[353,3],[354,135],[355,178],[300,135],[301,135],[302,135],[303,135],[318,179],[305,180],[306,135],[307,3],[308,135],[309,135],[310,135],[311,181],[312,3],[313,135],[314,135],[315,135],[304,135],[316,135],[317,135],[356,182],[298,3],[291,3],[290,3],[292,183],[293,3],[294,135],[297,160],[299,184],[295,135],[296,135],[357,185],[358,135],[359,186]],"latestChangedDtsFile":"./module/index.d.ts","version":"5.6.2"}
|
|
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.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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../../mainnet-js/dist/module/test/fetch.d.ts","../../mainnet-js/dist/module/test/expect.d.ts","../../mainnet-js/dist/module/db/interface.d.ts","../../mainnet-js/dist/module/db/StorageProvider.d.ts","../../mainnet-js/dist/module/db/index.d.ts","../../mainnet-js/dist/module/mine/mine.d.ts","../../mainnet-js/dist/module/mine/index.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/types/template-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/dependencies.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/pbkdf2.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/types/bcmr-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/engine/engine.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-simplified.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.chinese-traditional.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.czech.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.english.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.french.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.italian.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.japanese.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.korean.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.portuguese.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/word-lists/bip39.spanish.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/bip39.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/bcmr.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/wallet-template.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-2020-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2025/bch-2025.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-errors.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-consensus.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-instruction-set.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-loops.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2026/bch-2026-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec-vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/spec/bch-spec.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/bch.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../mainnet-js/node_modules/@bitauth/libauth/build/index.d.ts","../../mainnet-js/dist/module/interface.d.ts","../../mainnet-js/dist/module/wallet/enum.d.ts","../../mainnet-js/dist/module/enum.d.ts","../../mainnet-js/dist/module/network/interface.d.ts","../../mainnet-js/dist/module/util/balanceObjectFromSatoshi.d.ts","../../mainnet-js/dist/module/wallet/interface.d.ts","../../mainnet-js/dist/module/network/NetworkProvider.d.ts","../../mainnet-js/dist/module/network/default.d.ts","../../mainnet-js/dist/module/network/Connection.d.ts","../../../node_modules/eventemitter3/index.d.ts","../../../node_modules/@electrum-cash/network/dist/index.d.ts","../../mainnet-js/dist/module/cache/interface.d.ts","../../mainnet-js/dist/module/network/ElectrumNetworkProvider.d.ts","../../mainnet-js/dist/module/network/index.d.ts","../../mainnet-js/dist/module/message/interface.d.ts","../../mainnet-js/dist/module/message/signed.d.ts","../../mainnet-js/dist/module/history/interface.d.ts","../../mainnet-js/dist/module/wallet/model.d.ts","../../mainnet-js/dist/module/wallet/Util.d.ts","../../mainnet-js/dist/module/message/index.d.ts","../../mainnet-js/dist/module/wallet/Wif.d.ts","../../mainnet-js/dist/module/wallet/Base.d.ts","../../mainnet-js/dist/module/wallet/createWallet.d.ts","../../mainnet-js/dist/module/network/configuration.d.ts","../../mainnet-js/dist/module/config.d.ts","../../mainnet-js/dist/module/util/amountInSatoshi.d.ts","../../mainnet-js/dist/module/util/asSendRequestObject.d.ts","../../mainnet-js/dist/module/util/base64.d.ts","../../mainnet-js/dist/module/util/convert.d.ts","../../mainnet-js/dist/module/util/delay.d.ts","../../mainnet-js/dist/module/util/deriveNetwork.d.ts","../../mainnet-js/dist/module/util/derivePublicKeyHash.d.ts","../../mainnet-js/dist/module/util/deriveCashaddr.d.ts","../../mainnet-js/dist/module/util/getAddrsByXpubKey.d.ts","../../mainnet-js/dist/module/util/getRuntimePlatform.d.ts","../../mainnet-js/dist/module/util/getUsdRate.d.ts","../../mainnet-js/dist/module/util/hash160.d.ts","../../mainnet-js/dist/module/rate/ExchangeRate.d.ts","../../mainnet-js/dist/module/util/sanitizeAddress.d.ts","../../mainnet-js/dist/module/util/sanitizeUnit.d.ts","../../mainnet-js/dist/module/util/randomInt.d.ts","../../mainnet-js/dist/module/util/getXPubKey.d.ts","../../mainnet-js/dist/module/util/sumUtxoValue.d.ts","../../mainnet-js/dist/module/util/header.d.ts","../../mainnet-js/dist/module/util/index.d.ts","../../mainnet-js/dist/module/history/electrumTransformer.d.ts","../../mainnet-js/dist/module/libauth.d.ts","../../mainnet-js/dist/module/constant.d.ts","../../mainnet-js/dist/module/index.d.ts","../src/bcmr-v2.schema.ts","../src/Bcmr.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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/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/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[199,460],[47,48,49,50,460],[460],[52,53,55,56,57,58,460],[54,460],[60,199,460],[60,61,62,63,64,65,66,67,69,70,460],[68,460],[72,86,87,88,89,90,91,92,93,94,460],[85,86,460],[59,84,460],[88,460],[70,96,460],[73,74,75,76,77,78,79,80,81,82,83,460],[95,98,99,100,101,102,103,104,105,106,107,108,109,199,460],[98,199,460],[98,99,110,111,460],[113,114,115,116,117,118,460],[115,199,460],[51,59,71,84,95,97,112,119,123,126,128,196,198,460],[120,121,122,460],[121,199,460],[124,125,460],[127,460],[147,460],[158,199,460],[134,135,460],[158,159,160,161,162,163,164,165,460],[167,460],[195,460],[168,199,460],[167,168,169,170,171,460],[159,460],[169,195,460],[173,174,199,460],[162,460],[174,175,176,460],[134,135,147,157,158,164,166,169,172,177,178,179,180,181,185,186,189,199,460],[178,190,460],[180,190,195,460],[182,199,460],[185,190,460],[134,135,187,460],[179,181,183,184,186,187,188,460],[191,192,193,460],[139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,460],[143,460],[135,199,460],[138,157,178,185,190,194,460],[130,199,460],[129,131,132,133,136,137,460],[134,135,195,460],[197,460],[371,460],[460,472,475],[460,470],[460,468,474],[460,472],[460,469,473],[460,471],[414,460],[417,460],[418,423,451,460],[419,430,431,438,448,459,460],[419,420,430,438,460],[421,460],[422,423,431,439,460],[423,448,456,460],[424,426,430,438,460],[425,460],[426,427,460],[430,460],[428,430,460],[430,431,432,448,459,460],[430,431,432,445,448,451,460],[460,464],[433,438,448,459,460],[430,431,433,434,438,448,456,459,460],[433,435,448,456,459,460],[414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466],[430,436,460],[437,459,460],[426,430,438,448,460],[439,460],[440,460],[417,441,460],[442,458,460,464],[443,460],[444,460],[430,445,446,460],[445,447,460,462],[418,430,448,449,450,451,460],[418,448,450,460],[448,449,460],[451,460],[452,460],[430,454,455,460],[454,455,460],[423,438,448,456,460],[457,460],[438,458,460],[418,433,444,459,460],[423,460],[448,460,461],[460,462],[460,463],[418,423,430,432,441,448,459,460,462,464],[448,460,465],[200,410,411,460],[411,412,460],[203,460],[203,204,460],[361,460],[364,368,378,460],[362,460],[201,202,205,207,362,363,364,367,375,376,377,378,379,382,383,384,385,386,406,407,408,409,460],[376,377,460],[376,460],[206,460],[361,362,368,460],[362,365,367,368,372,373,460],[362,367,460],[362,365,368,460],[365,368,369,370,374,460],[379,460],[361,362,460],[361,366,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,460],[364,460],[204,361,362,363,364,365,366,367,374,378,379,380,382,410,460],[361,364,365,368,460],[361,363,364,366,367,374,376,379,381,383,460],[367,382,383,460],[362,363,364,365,366,460],[361,362,364,366,460],[360,460],[208,209,210,211,460],[213,214,216,217,218,219,460],[215,460],[221,360,460],[221,222,223,224,225,226,227,228,230,231,460],[229,460],[233,247,248,249,250,251,252,253,254,255,460],[246,247,460],[220,245,460],[249,460],[231,257,460],[234,235,236,237,238,239,240,241,242,243,244,460],[256,259,260,261,262,263,264,265,266,267,268,269,270,360,460],[259,360,460],[259,260,271,272,460],[274,275,276,277,278,279,460],[276,360,460],[212,220,232,245,256,258,273,280,284,287,289,357,359,460],[281,282,283,460],[282,360,460],[285,286,460],[288,460],[308,460],[319,360,460],[295,296,460],[319,320,321,322,323,324,325,326,460],[328,460],[356,460],[329,360,460],[328,329,330,331,332,460],[320,460],[330,356,460],[334,335,360,460],[323,460],[335,336,337,460],[295,296,308,318,319,325,327,330,333,338,339,340,341,342,346,347,350,360,460],[339,351,460],[341,351,356,460],[343,360,460],[346,351,460],[295,296,348,460],[340,342,344,345,347,348,349,460],[352,353,354,460],[300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,460],[304,460],[296,360,460],[299,318,339,346,351,355,460],[291,360,460],[290,292,293,294,297,298,460],[295,296,356,460],[358,460]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","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":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","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":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"374adf191a95498dce2521fad9fc0edb29728df0b7cd99cb1fd0b0ab67101e6a","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"9d5924d364ccdd76bf3c308782fcfcdd29e91398d88fdb0aff6a2af9851217b0","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"9ae667792ebe12f4dcb09643924bf55cafc5119be30623c5dad6686ab7fb5b69","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"d057667a786baf4c1a48f92b92c21b393dabf88c4e9eb19be20e6c1b1315c4ad","impliedFormat":99},{"version":"63efc44990c8eedc0407b27dd745a09dcda17198d100ead4e86899e66fa262bc","impliedFormat":99},{"version":"01820e900492e470077fb1ef4f5bda0a4ba3a45b3720bb1b6f1d8a5c5eec4543","impliedFormat":99},{"version":"73847383a94b2cdbdf39190828a3cf30232e9cb5fac25715f1706a298cbf973e","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"ca44c838bc33cb25134a56f4cb8b25e5c78d5d4dda80ce3ab0c368040c23fc4f","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"ca801e5add5b218ade2a7e60bcb64c8baf6e43b54f1bc98454ba867b65723e52","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},"c4c2edaa636235a2977987778d7d5843ff70aaa66be8b959a259dc13fffdf2de","e4b720ad7cb72f6aa05cc8d94f15aa76a6335ce56f094ce06ca3a9fbb83be0b3","fa2eae3a28979e3d440e9beb1fc257675d416bffcfe744c38f49e34dd63898db","b160e3dd134b408f7771757b2667dc8df5b5db56378fdff870296593017cbbf5","61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c","3b278139f3ee26991f492c67ff390110b6908aacd90c407d7fd64c30476b2427","030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af",{"version":"a38d71d48e8097dc479eeb78d9a9a070c8e4a58c6e3dab44dd3bc3ca9fcfa027","impliedFormat":99},{"version":"cba6688cd77e97f8bec08ed8b1e98db2cd3fe119d76f136b032de3f36bc4f20c","impliedFormat":99},{"version":"987749b82eed507f1a2412cdcbd949fff5710bdd66db6ce8e2165d2fdacb74d6","impliedFormat":99},{"version":"26aaba823e6eb0ca301c3e70786e3217b20e80ff59879f4e4897e00ecb7ba060","impliedFormat":99},{"version":"1d41545e31b119d9bb993202dc5fa73815ac0cfe486feaddad7c3bbcbcef0e68","impliedFormat":99},{"version":"7e392413f34965abfd94cff06e38e3dabb999d0e97583c318a72b99f79d3e75f","impliedFormat":99},{"version":"7426d1ec25b2f49f7700e85a63bea9a7aba52fd33a0879f6fd3e8e98568b5811","impliedFormat":99},{"version":"60fc0d963d309f2984e37784feb937250ac80b0872aca8c938e7f671000df77b","impliedFormat":99},{"version":"2f275fec9095538f7ca65b5c89a470726d786244c711e55cc2c7ec60eea1b346","impliedFormat":99},{"version":"aed13d0d330e79bf17373a0cabe9dac6ec29d3e1a0b5c8eaaacb81fd2fa94494","impliedFormat":99},{"version":"23f634e12d2c1c5f876caddf838923f8e1485f259b16bbaa8263d6b89ba87592","impliedFormat":99},{"version":"de3af19c02f00bd370a985b62061a6d7d02883ec012382f3c19c39046d52c966","impliedFormat":99},{"version":"1b30425956ed9d9a6a7388d40f19fc1a5e4b88a921fb13d6a23cb55147211f28","impliedFormat":99},{"version":"4f9462a097d141e885b737f09164e861e2895f1043d0646180db3c03f0dbf143","impliedFormat":99},{"version":"d34336323293a332e720fa87bec70af73a870dc7b3f7d5f38cfca0fc3c3b65ad","impliedFormat":99},{"version":"b3531a70c555139ccbeca949f84282d65b6a5755d863ac3503e35a82502b09ca","impliedFormat":99},{"version":"6d199ba5d5156351ccfeecaa9a5ae01af5b7784cd81f222e7a0c11e4721b354e","impliedFormat":99},{"version":"f3a8d7c9272a3a82c85f2341f5e2ca3c3d18f060150226f787870c8ec3e2a827","impliedFormat":99},{"version":"1b0df60f3b58b2f4d4478820ac476f7e78274a52292d9d42373a0a96dcd3069f","impliedFormat":99},{"version":"6aa2c64d92e9090f78179c0bed1602e9f860b91275d459e67e318c9e79464657","impliedFormat":99},{"version":"9f315cecb5e5da51300379da15a3f78aec7453cb4d004fef057d8ef6e5d7dcbc","impliedFormat":99},{"version":"d06e733c0ebb22e1e3af02a32c34e625947b88513d3bbfb8b13bbfe94e12fe4b","impliedFormat":99},{"version":"cd1b749ad64dadd2a14d785d1af90a7c05304cad2fb6a77a90c78e1f88b0c436","impliedFormat":99},{"version":"a9d41a14643ed25da84e060e39d81a8170e5cf407909528b34ce32e9c3e5522b","impliedFormat":99},{"version":"79f75d25b82ef484fff58c701d4d15aba4d13976cf7c981cdb4cebbaaa0e8105","impliedFormat":99},{"version":"ce33c917b77d69a60d4844a965a3db13ee6c2ac0bcc2bf8429e28586cd57d0f5","impliedFormat":99},{"version":"a785ac9f11b50e976663ee951f7a7acc3320a36532524a9d46a0fe542720e34f","impliedFormat":99},{"version":"5ba8578db919e6b54168305899203c13fd5a86e8f8e76b08fb42eaf9c6879f5e","impliedFormat":99},{"version":"67f397f227fbf8576e325c6b3c5d39d9fda989ba0b09b58705f33427af457e81","impliedFormat":99},{"version":"c8a1f0f8c1480aa0a5245a43c3c2b380d17da6eae045ffb92a2daf5e764d7b3a","impliedFormat":99},{"version":"ba555564cda57456f002787864df83ac0d35d8e74b4e89d3d73e688cd4464f87","impliedFormat":99},{"version":"3d6c80e747f1c522a6cf6df4c7e86d1e07b01fd9e1c160ed4170ad63d132ca7d","impliedFormat":99},{"version":"728dcbde517e31c9b8bc622ecb1ef5a275568d69e6bcab2f34de961d8f681e1c","impliedFormat":99},{"version":"119014bf306302bd117b1bbe9f809313816d36020a59d07f2c6c37790665757c","impliedFormat":99},{"version":"829608c14e83f9ad43e6e260119617029d6d425b7ae6a21132c6e3ee2ca850e3","impliedFormat":99},{"version":"0e3823c30ce7d5ee4e0cf6fb915ba8233054bf3988d55359dbf984fea5c2568a","impliedFormat":99},{"version":"ad40ae7beeef7d76a610b2669d798235c7a8e5a5ea0de65de8ab7433641c206a","impliedFormat":99},{"version":"9a870477f7e4a5c19dd446e1cd6c337bc6109089175e0557d7bb320f2894a9fc","impliedFormat":99},{"version":"949dc79359a4014c163c82d16f9a33130ff948a4fd5dc9ee1276ebf4e9dddc29","impliedFormat":99},{"version":"64d5f2f2523adbb097b6c20d346158bb48307ef9c9f7f65f423aa0af58beb9db","impliedFormat":99},{"version":"d35ca62340b51165dd1a9d27f4615790d38961f6e0728e3fe688643ee25a9750","impliedFormat":99},{"version":"af650943a57e3e1a0cf2d73e4fb2fc4f9e0b5f3414242d849f13713d7bfc86a7","impliedFormat":99},{"version":"05070c9cce1bf6c0a6ad2f9cab6562d6f0717ef3be5e85bf607a88292866dfe8","impliedFormat":99},{"version":"423872925077214074ac64562f539ea6a95e2aec64aa1dfc21ce7e18a49fb2a1","impliedFormat":99},{"version":"d5170c8d36bae7f5e54716612fcffe654b406e3222810073aeda14c20bede12a","impliedFormat":99},{"version":"0716f1b01085ea795a96bc1d9159baf2b98025c2f1ebd9b40b49434dc70b89d9","impliedFormat":99},{"version":"c5286a8f76ab94568608c5e3c588024ed63047e61ddd8037c373dc68af120392","impliedFormat":99},{"version":"1c0807be4d4ecefddbf9b719139c13368ec4a5ed95c7324aa4d591e3cc550840","impliedFormat":99},{"version":"7f9e6651383f0563cc730c42973bee069dd48cc96d99940218379e516d900a9d","impliedFormat":99},{"version":"e6370030948c325544eb00e8ec025ca8b5c29c667630d99b9c568fe01f665078","impliedFormat":99},{"version":"e5dda9fb9dab003e975fa2b3f8afb3f3e21914f48df73b4c21c4e7d3aa59c550","impliedFormat":99},{"version":"bc06e0598f8dedbb70b897f45d387f33fff56c0e93c95531df7836b81929db6f","impliedFormat":99},{"version":"5ddafee7e18fef65f2fcc9e6c143e8cfce64fe639fcd43512fd48103cb7d0880","impliedFormat":99},{"version":"e58f814f0cdddf98a39a886af78aef76af93a9407d314bfa35c825f3c9b9ed81","impliedFormat":99},{"version":"06c9b6087d78baf71927b1d8da838c6bc1577398e02d615d10a6d454c590b1e3","impliedFormat":99},{"version":"1159f7a7770f4f3e21c7c1cf5dd679c44ddf4f6d5700290b728af9a8678bfb20","impliedFormat":99},{"version":"0d4359e3863dee0d03ee806a2027c3ca80d2df49fadfb4883a83d253dbf7b7ce","impliedFormat":99},{"version":"fb1d640181613305988efc7fe3370d34c046d39e03fc047c3551c94e9d08e0a3","impliedFormat":99},{"version":"1440fc398d5289c15ecf7c39580a968ade6e4c050bf519fa9555b34591bb4af1","impliedFormat":99},{"version":"6869337d36e58a184d046aae831f640dbd65e37f089a8cadb284e9d71e294df8","impliedFormat":99},{"version":"c2df7d7040a47954a9e3f7cad68adadfaf415a3a2462c7c623589323d0b7adf3","impliedFormat":99},{"version":"50e01013f474ae073d2c59624749bb26fbeb8a44ecb76695606126d16ed64553","impliedFormat":99},{"version":"b04b90388c60ef1674fd77e3a66d9432873980e7ee87745332b9c10457fe7289","impliedFormat":99},{"version":"3e768d76d6b43e265d2e074179bb5770774155d157ce68a5a02c907282750cfc","impliedFormat":99},{"version":"6ba33903b042f585b4cf3192ee22af279326e64ad157101e1bcede7a70b15adf","impliedFormat":99},{"version":"c6467ed6ced9fc889c3b71f940c8f88bce1e7bd95368ebc57ef9466a358e6674","impliedFormat":99},{"version":"9b7cded7d20ce665ee2bfdd5633da6bef8a499db922d3b6b4460c964cd1be562","impliedFormat":99},{"version":"4acbab96d77eba31dcf5449218d922801031d7de833663ff9d8e9b61369a0aef","impliedFormat":99},{"version":"40fb77b3d3b3e2a7efd19d2d22627026bfb62cec7717ba5e557b521ae2637dc4","impliedFormat":99},{"version":"55b13c1dd972dfeda70fcee2b2537a785ed03fc5c361b11608a2712b90b959cd","impliedFormat":99},{"version":"adb20bc681c4d0c3374d8b78791f8ead0ca0fe15983a551b40fc4936648bb578","impliedFormat":99},{"version":"bff8dc562f4ff354814df681853116fcfa12c295e4303603a6fc679f6d971750","impliedFormat":99},{"version":"e544a1c40a5f673a3a7e52de4f49681bbf529d9e1153aa7751f0e588c07d7efa","impliedFormat":99},{"version":"6f239b41df9c2ea6444023435f07d2369bb76d88f5028982e8f88d9dbcb604e4","impliedFormat":99},{"version":"39c752cffb1a85d727d4c6e5b0c25282ae3a4fdfe5d8227c38b50044cd4ed743","impliedFormat":99},{"version":"8ca5d1bbdf57ef5bc32f37a9726ee951c2864ad336a34ff318d0cac7e7f651de","impliedFormat":99},{"version":"37f59378ffb6b2d6971586a55cc10411bdba7206f7193b52d42197e32f2446f7","impliedFormat":99},{"version":"fbedf387f1d5b9ad293214ad01a3d89bfc6df3217af27a27e510c73a037312a5","impliedFormat":99},{"version":"996950adc8136a34770e8565dfb7ccedbe188234fdf2db46cc79fa6cdbd66a7a","impliedFormat":99},{"version":"160f9097426561fdaed62ce71a37fccf99be456011eef35d01253741932c9661","impliedFormat":99},{"version":"3ad36afdc1975a50309d2e55b5c2bba46aadba993537bc75b65f085bfef3c996","impliedFormat":99},{"version":"801a096aef05881eb498616cb15ba6cb3da874865207a088dd963a46023cc89c","impliedFormat":99},{"version":"e0a8a476d2d73c121ef763186d4a36991a45471dcbe98732748643d39c17f09c","impliedFormat":99},{"version":"3d5e6241b997c057749fa806facb8887891fb06e67eab4c113bd36ca17bf77fb","impliedFormat":99},{"version":"0122b4d85b9be2b0b55f414090edb2e7e5b58cd4e022ce23989d6e119506faea","impliedFormat":99},{"version":"feeaf290ca736cd2be9dbbc6fc46771ce201529e95ce882c92a796368bcc73e3","impliedFormat":99},{"version":"95aaaf4d6f9d3a1b8966728a20c48164bfa7a8d9230f207f2a43ac11fc594e10","impliedFormat":99},{"version":"991351e5fbf046ade49c4235865af04ed3bf79bb1344864d64dc6fa1e090514c","impliedFormat":99},{"version":"0d3a3d5097a6a21e8574900bf1a1bc5df40988586dcf9dcb653fa700503d4962","impliedFormat":99},{"version":"4eeb635e14e95d82264e58ba48a44eb73f3e38c23b3ce826a1ab87fb215fe7a2","impliedFormat":99},{"version":"cd2995a95d0c9ff13ee7a97c9128e2684ead9b89ebcd991ee8e889aca948e207","impliedFormat":99},{"version":"afec6accba8ddf0aa8b91e1883aa2ea801a2f3f6404f7aacf34dc7ed6fb8cec7","impliedFormat":99},{"version":"02823ab4704c645aa0a594d520426cd9b1a776a242005bb04d35389dd35ab1f2","impliedFormat":99},{"version":"80b9cfc778a768d883d329669a325bfeefe1a6c866e05c75a64689960ac5f2aa","impliedFormat":99},{"version":"2a83200ba02822ce3ac4d68c2cab29273150505ed567532a133a20bbc7e68ec6","impliedFormat":99},{"version":"2b113dd63b57d48fc6f9a748e22cd6cdd2b18bee091a8286b36f32085138ee15","impliedFormat":99},{"version":"d684dd5b0a093bb586b8477b6ceda5f62f793982041fd1b2a222fef52a1c3b2d","impliedFormat":99},{"version":"30062e3628fef7c84a3c193d1bfe21a5498f9b53f3d6593323c5d41bf8576ef4","impliedFormat":99},{"version":"19b0eca295f5dfbc38857244c9e875b9410926ec00ec96e4700c7957c92533ca","impliedFormat":99},{"version":"03af5ad674ec20be8583ada8fc6833b445b88bf9244481e7a2ee283213070c68","impliedFormat":99},{"version":"c0c1c1bfcf65b773f5609169abe698305d281b5f926e4c63a188a87e670de425","impliedFormat":99},{"version":"40e0080e7412be9160e51065e73fa02fd59fe914da2fb12139814d9f34044464","impliedFormat":99},{"version":"e21f5e986a1d531131c64b94b0304e67e076d31107e80f604b3d466fcfef6d46","impliedFormat":99},{"version":"2c521da211b5b8384fca5996cb362bfcc62411ca2f22bf40221a8de7e033d303","impliedFormat":99},{"version":"c3315aa3888b4ab9804c8ef9b07caab5e5c0cf412a909faa70200e9d5aeb7c9c","impliedFormat":99},{"version":"ba760ff1ddcdd93c88cad217bc17e8b4e922f5e697bcaae0846a0028d31ba599","impliedFormat":99},{"version":"f1083bc7c0d73c8fcbe183c7131e7cc54543aad18f42654a3a3e1be48fc39465","impliedFormat":99},{"version":"7a34416b8856d7fa9fc0cad61de9a5dfeb140544309ce74778cfa1110e07b72a","impliedFormat":99},{"version":"a80e8bc4c77d345bf132ed1a7beb2d716d01999f1d7c5be29a71a1c002e175ce","impliedFormat":99},{"version":"ca0cbc4dfaf6a85cc4174a1ed7211aa17125a9d87dbde4d387fcd3db16d31223","impliedFormat":99},{"version":"12cb647b2b5019e5ab0c96023af34eb1e80eac58938577909c2bc20403da5890","impliedFormat":99},{"version":"0d56443cf4645c9fec714e14f6c99e246f27926169e0bd10069bc7cab1d74043","impliedFormat":99},{"version":"a3d1d3d9f234c7bfc31440649d48b523a80848945c3d8a2e0e5c58155e5a35cd","impliedFormat":99},{"version":"00b2af81f381c78a7c7a94ccd1ec6678fa9102554f0bbe4a48008818710afd98","impliedFormat":99},{"version":"a5f44d1ab98b8f29f90492c057eafffc14521a7cc0cdb8e036ef0541f2d923cc","impliedFormat":99},{"version":"858625b1fd6da32ef93167a7bb30e9ebfdb1b12c2c771f6e276e21fcbf6d28d6","impliedFormat":99},{"version":"1dca71c43b1f127c85a832c91ebd93f568f848f71ebbad49c69c97b28f102478","impliedFormat":99},{"version":"4140f62e4f8c9719ce15b3c73b2b5a36ca27e14fdec8d1b94c711abf190ddd38","impliedFormat":99},{"version":"28ced0cf69dd632d98961761b4250d6c0253e861fb217d019cf2ea634b882699","impliedFormat":99},{"version":"5ff96b7fc47bd4eccea926d559d6a76ad8871f752447f3fa698427c756c832d7","impliedFormat":99},{"version":"62ed2978ed2f3611e60bc80fdfedf5d0b6cb26b46835758d73b56956b0b7d936","impliedFormat":99},{"version":"0b7887c86bf0fe8f44d0f9082ae70ca0307d1013b958d884d54ae95698a8344a","impliedFormat":99},{"version":"31779f2eec7eb6657587a9943837d504e5d1747db5b06349ba51b05257588aa0","impliedFormat":99},{"version":"a42c680a17c557688a90c4c547f5f425b78e33cdebbc7ee4fd0135b0fdb26dae","impliedFormat":99},{"version":"e1d916f45a9c540c3ec595a41b55fc80049df132e63f75367c0290fc7238a89e","impliedFormat":99},{"version":"53608e6e0d36b8fd5a9e3b5afbce1f67c2933410317beb2b9973b77c1f13a0cb","impliedFormat":99},{"version":"49611c9c0dea1fad478353d0a5c394cd5c66b60d760d12e0d99063a2ec8cda5f","impliedFormat":99},{"version":"6b207c678bf857a3253cf4c82c1da768b6d7fd5e6a0ac3c8e27f83f65bb6f24b","impliedFormat":99},{"version":"2140fde2b2b1861f77c0e308232a2f73dd78e7cc784207c618de3b6c46da190a","impliedFormat":99},{"version":"68cf4649d2c34c7f3485ea72b95f8c1f4383f265dad143c16fbe608037358f53","impliedFormat":99},{"version":"20a981ef7b7bdabd1920d67b32b5d53675bc11bae590c3fdfd4746ed1e6fa7a0","impliedFormat":99},{"version":"9b6ac1aaf1599be6c19f32a3e87bcec56d5f2fce6d41fe39ba5fe175d1549c4e","impliedFormat":99},{"version":"cfa9f8ffa183bf6bc84394787fa1c54bc060441643b5f0c4ece5645632a11976","impliedFormat":99},{"version":"59d6dd3cf7364974669a5942dbb548e691b1f8414c12940b5ba27339dee4a91e","impliedFormat":99},{"version":"3c4b2980f4880b3de393ecfd0ff078c00a0d7ed2f751a2c68bc5394ec9917878","impliedFormat":99},{"version":"49e1b05f3946a3a49dcbc81900e6192f84cf3d870223fc04133924079ab26e75","impliedFormat":99},{"version":"433ba82be5f2662d62fe8365a537644adb43b7f281d810c99eb1c09e4e209f88","impliedFormat":99},{"version":"0c181e791efb543d0560d9b2870515d821e3dfa0e2a8dda640f1535b2764ba6e","impliedFormat":99},{"version":"eb82d2e6a9a1159f416a32750c5aa269904727d1a384bd56fb61ae9e1542c151","impliedFormat":99},{"version":"30dd04b36fcdfcf9f4cc5fcde78bf86941275b1641481b1643419a46934b6bc7","impliedFormat":99},{"version":"684631ad2087983d1fa9cfe781debe5b59efa87291c1df2ca0033bc26f3f9282","impliedFormat":99},{"version":"5d4e07aa8912747754c81949a7fae410393a0b511b607da5c8859b59134dbed0","impliedFormat":99},{"version":"ca358f352179f2ef403c343bfe76b167d7735162a6084cbce3213417a9ccd158","impliedFormat":99},{"version":"a43368b9ec2b3b71677d47a05c7d3296ca632f6c05b3be9aa9b18b18df6666ae","impliedFormat":99},{"version":"e7542a62f622e137e574f6c2811e4eec547bef5ef17868f1740c17b001d10a8d","impliedFormat":99},{"version":"c8e4c5adf99601307a86a7ffd1ea4899bbcf44bd4fee17100a9dcd3232047cc1","impliedFormat":99},{"version":"7b2510df81a30a99a97f2b439b4ffb382d0f3d465fd46665e29e899d6fc30617","impliedFormat":99},{"version":"5b0488f48695d38c3f1fc7a95f1e5a5ec32d09d2c10b167d20ee4c1307630ed7","impliedFormat":99},{"version":"80222964f435aa1b28c4714ea86d3499d776fc47dbdbb4d161ce34d1d9c33ca4","impliedFormat":99},{"version":"418471fc8ccdb989edeebd30ece9a45480d9144255050a301f48d95231ca43bb","impliedFormat":99},{"version":"bca3eb2e7d0e4a24daba895e9ead08317a90a8326b07b63d2775b09cc61b2f6d","impliedFormat":99},{"version":"05e6fbfa9545e669d5e67e3188d03f7fd50c41b84e13da570330a2b016e0b45f","impliedFormat":99},{"version":"e7deee5e735375a7dc03b23fa8e2dd0e707bada9f9e4d7d96da60a688d7fcc3f","impliedFormat":99},{"version":"3b944a181090e86de3b44670de8061d6def4315e3f0e68a448469c2ab867b552","impliedFormat":99},"2e4d0dd0ae5f0ec7cef685e506e398b55085216ee018539824cca75a2b0d4c4e","ad92e210c81ee442085cc19f44797ffc75e9e85a85fce52f7bd9b49bc58bab80","e1ad0ca8d6c8351d1e80b6ed782654ed3cd7f1674871249bf848737bf8e5c032","add065e48007eb3a471648bb657a9a98f67d636567f23fd92a8d4ec5e6ef1cf6","77297308f0259106d33ec57589c81d582ba7cd668b88aaef5462d44f2ca45bf7","73fbcd30cedab4d2ff78c2ae44b814e7e43870ae564a867fe3ee52279eb10fc5","b966e4b8260ebbe3f5fd8ed81bb8569822082ae38f974b9a70a4cda3aae85c9a","339c6463f32d297da9d028f9e1ddfa65bb09ade95fb4d4f941ed1afa98b69474","eb9ed10f5edb23efc5897763b5b2cad5d49b774abc2dc946fe7a3c94188bd6f9",{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"c9743b14ef911885fa32fd147248762ca05ad628d0e038deeef443579f757db1","impliedFormat":99},"76fceb21f9167bf9a9e460b40792a27e38b69420836a3eaae0a5f2214baef177","e23398b60b83ffceb6e414c0d913735a59d951b37de8f327a3ef936d04427aec","ac60d287a05bac94e0a3ef172f0ce8a976dae9240122e05f44b8b54ee207fae9","be479b776382dd1dc5cf32301bac84d4b0ce73cd95cdd3216376a989866660ad","cd51ed4160f71ac1c4b6bf9d9b140a80e06ae43588c2b88b244cc8966b668f03","6457e0781ef114fdfbb95e8baaef17ce8c5e6b8a8cdc51e678693a8350a7d65c","d4cb051c6ab52ef8e6abc1123a3ea9f4772f32b7d813b93adb750179b730d34c","77253fc264ee4e2e2c0df6cac38a71407c5de4c0697285316b3bab038cc739f8","12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663","3702d67e0f89ec2de2cbf3b4d2afb87240d246b3fd93d9a78a8ac3f53f3b6d95","aa14b1dd0c0cce94ffadb732e6bf2525d7c95b3b7732899afc74bf1dfbde70b5","ea2e999f67da7a0b5dea052c0c4f402912f72e940950a6e05ceaa20877ae3e58","2a98a4ab9e9820072a946fcfef340d689969735f1d6de698296ffeb39a12ade9","f6e2bb9b8f99b9c464239e72479a3ccf213306c8db269573e9b57cd7d1d5ae50","7f3de4883d90c6a5f9c13178104017bad419cad0bd2dfe8c7025ab5aeefb2f81","4fcba3823aea7a18b160041af629cff46341a0ff790b691b831939eb7f954a47","614051bf05d3b41673e2e865ed30c4eea50a171253fe7b7d3fd0b93a84bcafc4","b2096bb48cd9bd242d44fbfec98cfee9c5d8c94fd730c7139a29aa0890e0ca66","be8c4dff12f713c857ff7211e205ba6cf5a4212829268e5d3937c5eec30fe03e","911b6da100b2ee84b9fc1dbdc34771a0701e4c8e0fa694bb510c33359b6026e2","157efbab6372e89ffb534b16a298e716175add5dfc8159fb9608877eb2a18059","7f8acc73668636513659747f853332a4b7fefa40d5ccf5d20f7696a69598e399","0ea4b7de810d4759cc256c64d94cbeb12e97a26582f8cea8981827a20be67125","97b5d2fdec7c85f9a8bbff85350c12635a94ef3dfa265679ab0806ecadb85dd4","2aeae9a85d9f2bd098e207b97f94105370c2986206f9992fe593430d5e6e2ff2","00ee72c8e766b351df16e157c6dbd7b82f5fd659b64a4ae71bada2af2c9a2196","1e83101dbd6226aa93f9c797831436d644279b048c2744341f3464a04d54e750","94ea9bfd0e479d53e6dbe56667671a509c9368dca504b26bef69d726abba8a2b","89b9bdcbcfb6dadcff24eab8a1a3ec3ae0eb2d548a37f4091aa8aab0ac405627","3dfc11fb9036c0deffd34eca4bf80cb7c86b8f6e47f4d7c93b6970593367adfb","ee4e8505266b5bb2be82d994812b327c7eff0330648f8b7be90fa4de1e73ca48","8c21842ad86d5edf7d349becd72702fdfa5d07183cbd1fe4e398b036acafe3e3","ae56fb90af23a6c7c0b7789b531a39065e1e0b963c6d420337e4db08605e1fe5","f320b11163bb6ad71ab4af7c4122f82c850223da067ed10af25db24f353a76bb","aee0ef2b8255055a613808de86c9716cbdc8424fe651572767c28cab4bf8c88b","6656dccace415e2c2c6efa3030480206e1b613bf9778143327745d9b448bed47","85b9321fce756f17bfc59f644d62ec7fd065eafbaca9f56208521525ec453193","79a606aba86e214a76167ccc8cdf3a5bab29c77b95c3005a341040543e47e36e",{"version":"1a159891a2340adfb2c31ed2fc626212feb08f10a57b1b2238f3c24f06e7a3b8","signature":"f6b5d3025f27fcde576fca6fd8fdfcc5597b03fdd75128aa10dbab957f941a98"},{"version":"bf08f2489352c4457fa9192b276f723ee7f3943a353092d45e863ceacbcf0841","signature":"0a74246a9c98a0a71306ffd17182c808f66149c4b5505a1c2285a172eb240121"},"1c863cc9ae1131b3ee966b0f3b44daf1392f72fe8e9a37ab7aa7d9e3d84f0d44",{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true,"impliedFormat":1}],"root":[[411,413]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":99,"useDefineForClassFields":false},"referencedMap":[[200,1],[51,2],[47,1],[48,3],[49,3],[50,1],[59,4],[52,3],[53,3],[54,3],[55,5],[56,3],[57,3],[58,3],[61,6],[62,3],[63,1],[64,6],[60,1],[65,6],[71,7],[67,1],[66,1],[68,1],[69,8],[72,1],[95,9],[87,10],[85,11],[88,1],[89,12],[90,1],[86,3],[91,1],[92,1],[93,1],[94,1],[97,13],[96,3],[70,3],[73,3],[74,3],[75,3],[76,3],[84,14],[77,3],[78,3],[79,1],[80,3],[81,3],[82,3],[83,3],[110,15],[98,1],[99,16],[112,17],[111,1],[100,3],[101,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[113,1],[115,1],[114,1],[119,18],[116,1],[117,1],[118,19],[199,20],[123,21],[120,1],[122,22],[121,1],[124,1],[126,23],[125,1],[127,1],[128,24],[158,3],[159,3],[160,25],[161,26],[162,3],[163,1],[164,1],[165,27],[166,28],[168,29],[169,30],[170,31],[167,1],[171,27],[172,32],[173,3],[178,33],[180,34],[175,35],[184,1],[185,36],[174,1],[176,27],[177,37],[190,38],[182,3],[179,39],[181,40],[183,41],[186,42],[187,1],[188,43],[189,44],[191,3],[192,3],[193,1],[194,45],[139,1],[140,1],[141,1],[142,1],[157,46],[144,47],[145,1],[146,3],[147,1],[148,1],[149,1],[150,48],[151,3],[152,1],[153,1],[154,1],[143,1],[155,1],[156,1],[195,49],[137,3],[130,3],[129,3],[131,50],[132,3],[133,1],[136,27],[138,51],[134,1],[135,1],[196,52],[197,1],[198,53],[372,54],[476,55],[468,3],[471,56],[470,3],[469,3],[475,57],[473,58],[474,59],[472,60],[414,61],[415,61],[417,62],[418,63],[419,64],[420,65],[421,66],[422,67],[423,68],[424,69],[425,70],[426,71],[427,71],[429,72],[428,73],[430,72],[431,74],[432,75],[416,76],[466,3],[433,77],[434,78],[435,79],[467,80],[436,81],[437,82],[438,83],[439,84],[440,85],[441,86],[442,87],[443,88],[444,89],[445,90],[446,90],[447,91],[448,92],[450,93],[449,94],[451,95],[452,96],[453,3],[454,97],[455,98],[456,99],[457,100],[458,101],[459,102],[460,103],[461,104],[462,105],[463,106],[464,107],[465,108],[371,3],[45,3],[46,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[19,3],[4,3],[20,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[412,109],[411,3],[413,110],[373,3],[386,3],[409,3],[204,111],[205,112],[203,3],[364,113],[407,114],[378,115],[410,116],[362,113],[408,113],[381,117],[376,3],[377,118],[207,119],[206,3],[370,120],[374,121],[368,122],[385,115],[369,123],[375,124],[365,115],[399,3],[202,3],[201,3],[387,3],[388,125],[366,3],[389,3],[390,3],[391,3],[394,126],[392,3],[393,113],[395,113],[396,3],[397,3],[403,3],[398,3],[405,115],[406,127],[402,3],[400,3],[401,128],[404,115],[383,129],[380,130],[382,131],[384,132],[363,3],[367,133],[379,134],[361,135],[212,136],[208,135],[209,3],[210,3],[211,135],[220,137],[213,3],[214,3],[215,3],[216,138],[217,3],[218,3],[219,3],[222,139],[223,3],[224,135],[225,139],[221,135],[226,139],[232,140],[228,135],[227,135],[229,135],[230,141],[233,135],[256,142],[248,143],[246,144],[249,135],[250,145],[251,135],[247,3],[252,135],[253,135],[254,135],[255,135],[258,146],[257,3],[231,3],[234,3],[235,3],[236,3],[237,3],[245,147],[238,3],[239,3],[240,135],[241,3],[242,3],[243,3],[244,3],[271,148],[259,135],[260,149],[273,150],[272,135],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[274,135],[276,135],[275,135],[280,151],[277,135],[278,135],[279,152],[360,153],[284,154],[281,135],[283,155],[282,135],[285,135],[287,156],[286,135],[288,135],[289,157],[319,3],[320,3],[321,158],[322,159],[323,3],[324,135],[325,135],[326,160],[327,161],[329,162],[330,163],[331,164],[328,135],[332,160],[333,165],[334,3],[339,166],[341,167],[336,168],[345,135],[346,169],[335,135],[337,160],[338,170],[351,171],[343,3],[340,172],[342,173],[344,174],[347,175],[348,135],[349,176],[350,177],[352,3],[353,3],[354,135],[355,178],[300,135],[301,135],[302,135],[303,135],[318,179],[305,180],[306,135],[307,3],[308,135],[309,135],[310,135],[311,181],[312,3],[313,135],[314,135],[315,135],[304,135],[316,135],[317,135],[356,182],[298,3],[291,3],[290,3],[292,183],[293,3],[294,135],[297,160],[299,184],[295,135],[296,135],[357,185],[358,135],[359,186]],"latestChangedDtsFile":"./module/index.d.ts","version":"5.6.2"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@mainnet-cash/bcmr",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.31",
|
|
5
5
|
"module": "dist/module/index.js",
|
|
6
6
|
"types": "dist/module/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"author": "readcash",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"mainnet-js": "2.7.
|
|
13
|
+
"mainnet-js": "2.7.31"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {},
|
|
16
16
|
"scripts": {
|