mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 11:11:01 +00:00
1 line
48 KiB
Plaintext
1 line
48 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"name":"./init.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":18,"index":962},"end":{"line":6,"column":38,"index":982}}],"key":"OJnLEEGOajObuRPzfJPwtQuh1Lg=","exportNames":["*"],"imports":1}},{"name":"./packageInfo.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":23,"index":1118},"end":{"line":8,"column":50,"index":1145}}],"key":"Ffmb0bdQh5N+BVJ7J3zvmqqfh9A=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _asyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.twox = exports.sha512 = exports.sha256 = exports.scrypt = exports.pbkdf2 = exports.keccak512 = exports.keccak256 = exports.hmacSha512 = exports.hmacSha256 = exports.blake2b = exports.vrfVerify = exports.vrfSign = exports.sr25519Agree = exports.sr25519Verify = exports.sr25519Sign = exports.sr25519KeypairFromSeed = exports.sr25519DerivePublicSoft = exports.sr25519DeriveKeypairSoft = exports.sr25519DeriveKeypairHard = exports.secp256k1Sign = exports.secp256k1Recover = exports.secp256k1Expand = exports.secp256k1Compress = exports.secp256k1FromSeed = exports.ed25519Verify = exports.ed25519Sign = exports.ed25519KeypairFromSeed = exports.bip39Validate = exports.bip39ToSeed = exports.bip39ToMiniSecret = exports.bip39ToEntropy = exports.bip39Generate = exports.bridge = exports.packageInfo = void 0;\n exports.isReady = isReady;\n exports.waitReady = waitReady;\n var init_js_1 = require(_dependencyMap[1], \"./init.js\");\n Object.defineProperty(exports, \"bridge\", {\n enumerable: true,\n get: function () {\n return init_js_1.bridge;\n }\n });\n var packageInfo_js_1 = require(_dependencyMap[2], \"./packageInfo.js\");\n Object.defineProperty(exports, \"packageInfo\", {\n enumerable: true,\n get: function () {\n return packageInfo_js_1.packageInfo;\n }\n });\n /**\n * @internal\n * @description\n * This create an extenal interface function from the signature, all the while checking\n * the actual bridge wasm interface to ensure it has been initialized.\n *\n * This means that we can call it\n *\n * withWasm(wasm: WasmCryptoInstance, a: number, b: string) => Uint8Array\n *\n * and in this case it will create an interface function with the signarure\n *\n * (a: number, b: string) => Uint8Array\n */\n function withWasm(fn) {\n return function () {\n if (!init_js_1.bridge.wasm) {\n throw new Error('The WASM interface has not been initialized. Ensure that you wait for the initialization Promise with waitReady() from @polkadot/wasm-crypto (or cryptoWaitReady() from @polkadot/util-crypto) before attempting to use WASM-only interfaces.');\n }\n for (var _len = arguments.length, params = new Array(_len), _key = 0; _key < _len; _key++) {\n params[_key] = arguments[_key];\n }\n return fn(init_js_1.bridge.wasm, ...params);\n };\n }\n exports.bip39Generate = withWasm((wasm, words) => {\n wasm.ext_bip39_generate(8, words);\n return init_js_1.bridge.resultString();\n });\n exports.bip39ToEntropy = withWasm((wasm, phrase) => {\n wasm.ext_bip39_to_entropy(8, ...init_js_1.bridge.allocString(phrase));\n return init_js_1.bridge.resultU8a();\n });\n exports.bip39ToMiniSecret = withWasm((wasm, phrase, password) => {\n wasm.ext_bip39_to_mini_secret(8, ...init_js_1.bridge.allocString(phrase), ...init_js_1.bridge.allocString(password));\n return init_js_1.bridge.resultU8a();\n });\n exports.bip39ToSeed = withWasm((wasm, phrase, password) => {\n wasm.ext_bip39_to_seed(8, ...init_js_1.bridge.allocString(phrase), ...init_js_1.bridge.allocString(password));\n return init_js_1.bridge.resultU8a();\n });\n exports.bip39Validate = withWasm((wasm, phrase) => {\n var ret = wasm.ext_bip39_validate(...init_js_1.bridge.allocString(phrase));\n return ret !== 0;\n });\n exports.ed25519KeypairFromSeed = withWasm((wasm, seed) => {\n wasm.ext_ed_from_seed(8, ...init_js_1.bridge.allocU8a(seed));\n return init_js_1.bridge.resultU8a();\n });\n exports.ed25519Sign = withWasm((wasm, pubkey, seckey, message) => {\n wasm.ext_ed_sign(8, ...init_js_1.bridge.allocU8a(pubkey), ...init_js_1.bridge.allocU8a(seckey), ...init_js_1.bridge.allocU8a(message));\n return init_js_1.bridge.resultU8a();\n });\n exports.ed25519Verify = withWasm((wasm, signature, message, pubkey) => {\n var ret = wasm.ext_ed_verify(...init_js_1.bridge.allocU8a(signature), ...init_js_1.bridge.allocU8a(message), ...init_js_1.bridge.allocU8a(pubkey));\n return ret !== 0;\n });\n exports.secp256k1FromSeed = withWasm((wasm, seckey) => {\n wasm.ext_secp_from_seed(8, ...init_js_1.bridge.allocU8a(seckey));\n return init_js_1.bridge.resultU8a();\n });\n exports.secp256k1Compress = withWasm((wasm, pubkey) => {\n wasm.ext_secp_pub_compress(8, ...init_js_1.bridge.allocU8a(pubkey));\n return init_js_1.bridge.resultU8a();\n });\n exports.secp256k1Expand = withWasm((wasm, pubkey) => {\n wasm.ext_secp_pub_expand(8, ...init_js_1.bridge.allocU8a(pubkey));\n return init_js_1.bridge.resultU8a();\n });\n exports.secp256k1Recover = withWasm((wasm, msgHash, sig, recovery) => {\n wasm.ext_secp_recover(8, ...init_js_1.bridge.allocU8a(msgHash), ...init_js_1.bridge.allocU8a(sig), recovery);\n return init_js_1.bridge.resultU8a();\n });\n exports.secp256k1Sign = withWasm((wasm, msgHash, seckey) => {\n wasm.ext_secp_sign(8, ...init_js_1.bridge.allocU8a(msgHash), ...init_js_1.bridge.allocU8a(seckey));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519DeriveKeypairHard = withWasm((wasm, pair, cc) => {\n wasm.ext_sr_derive_keypair_hard(8, ...init_js_1.bridge.allocU8a(pair), ...init_js_1.bridge.allocU8a(cc));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519DeriveKeypairSoft = withWasm((wasm, pair, cc) => {\n wasm.ext_sr_derive_keypair_soft(8, ...init_js_1.bridge.allocU8a(pair), ...init_js_1.bridge.allocU8a(cc));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519DerivePublicSoft = withWasm((wasm, pubkey, cc) => {\n wasm.ext_sr_derive_public_soft(8, ...init_js_1.bridge.allocU8a(pubkey), ...init_js_1.bridge.allocU8a(cc));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519KeypairFromSeed = withWasm((wasm, seed) => {\n wasm.ext_sr_from_seed(8, ...init_js_1.bridge.allocU8a(seed));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519Sign = withWasm((wasm, pubkey, secret, message) => {\n wasm.ext_sr_sign(8, ...init_js_1.bridge.allocU8a(pubkey), ...init_js_1.bridge.allocU8a(secret), ...init_js_1.bridge.allocU8a(message));\n return init_js_1.bridge.resultU8a();\n });\n exports.sr25519Verify = withWasm((wasm, signature, message, pubkey) => {\n var ret = wasm.ext_sr_verify(...init_js_1.bridge.allocU8a(signature), ...init_js_1.bridge.allocU8a(message), ...init_js_1.bridge.allocU8a(pubkey));\n return ret !== 0;\n });\n exports.sr25519Agree = withWasm((wasm, pubkey, secret) => {\n wasm.ext_sr_agree(8, ...init_js_1.bridge.allocU8a(pubkey), ...init_js_1.bridge.allocU8a(secret));\n return init_js_1.bridge.resultU8a();\n });\n exports.vrfSign = withWasm((wasm, secret, context, message, extra) => {\n wasm.ext_vrf_sign(8, ...init_js_1.bridge.allocU8a(secret), ...init_js_1.bridge.allocU8a(context), ...init_js_1.bridge.allocU8a(message), ...init_js_1.bridge.allocU8a(extra));\n return init_js_1.bridge.resultU8a();\n });\n exports.vrfVerify = withWasm((wasm, pubkey, context, message, extra, outAndProof) => {\n var ret = wasm.ext_vrf_verify(...init_js_1.bridge.allocU8a(pubkey), ...init_js_1.bridge.allocU8a(context), ...init_js_1.bridge.allocU8a(message), ...init_js_1.bridge.allocU8a(extra), ...init_js_1.bridge.allocU8a(outAndProof));\n return ret !== 0;\n });\n exports.blake2b = withWasm((wasm, data, key, size) => {\n wasm.ext_blake2b(8, ...init_js_1.bridge.allocU8a(data), ...init_js_1.bridge.allocU8a(key), size);\n return init_js_1.bridge.resultU8a();\n });\n exports.hmacSha256 = withWasm((wasm, key, data) => {\n wasm.ext_hmac_sha256(8, ...init_js_1.bridge.allocU8a(key), ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.hmacSha512 = withWasm((wasm, key, data) => {\n wasm.ext_hmac_sha512(8, ...init_js_1.bridge.allocU8a(key), ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.keccak256 = withWasm((wasm, data) => {\n wasm.ext_keccak256(8, ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.keccak512 = withWasm((wasm, data) => {\n wasm.ext_keccak512(8, ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.pbkdf2 = withWasm((wasm, data, salt, rounds) => {\n wasm.ext_pbkdf2(8, ...init_js_1.bridge.allocU8a(data), ...init_js_1.bridge.allocU8a(salt), rounds);\n return init_js_1.bridge.resultU8a();\n });\n exports.scrypt = withWasm((wasm, password, salt, log2n, r, p) => {\n wasm.ext_scrypt(8, ...init_js_1.bridge.allocU8a(password), ...init_js_1.bridge.allocU8a(salt), log2n, r, p);\n return init_js_1.bridge.resultU8a();\n });\n exports.sha256 = withWasm((wasm, data) => {\n wasm.ext_sha256(8, ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.sha512 = withWasm((wasm, data) => {\n wasm.ext_sha512(8, ...init_js_1.bridge.allocU8a(data));\n return init_js_1.bridge.resultU8a();\n });\n exports.twox = withWasm((wasm, data, rounds) => {\n wasm.ext_twox(8, ...init_js_1.bridge.allocU8a(data), rounds);\n return init_js_1.bridge.resultU8a();\n });\n function isReady() {\n return !!init_js_1.bridge.wasm;\n }\n function waitReady() {\n return _waitReady.apply(this, arguments);\n }\n function _waitReady() {\n _waitReady = _asyncToGenerator(function* () {\n try {\n var wasm = yield (0, init_js_1.initBridge)();\n return !!wasm;\n } catch {\n return false;\n }\n });\n return _waitReady.apply(this, arguments);\n }\n});","lineCount":195,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_asyncToGenerator"],[4,23,1,13],[4,26,1,13,"require"],[4,33,1,13],[4,34,1,13,"_dependencyMap"],[4,48,1,13],[4,96,1,13,"default"],[4,103,1,13],[5,2,2,0,"Object"],[5,8,2,6],[5,9,2,7,"defineProperty"],[5,23,2,21],[5,24,2,22,"exports"],[5,31,2,29],[5,33,2,31],[5,45,2,43],[5,47,2,45],[6,4,2,47,"value"],[6,9,2,52],[6,11,2,54],[7,2,2,59],[7,3,2,60],[7,4,2,61],[8,2,3,0,"exports"],[8,9,3,7],[8,10,3,8,"twox"],[8,14,3,12],[8,17,3,15,"exports"],[8,24,3,22],[8,25,3,23,"sha512"],[8,31,3,29],[8,34,3,32,"exports"],[8,41,3,39],[8,42,3,40,"sha256"],[8,48,3,46],[8,51,3,49,"exports"],[8,58,3,56],[8,59,3,57,"scrypt"],[8,65,3,63],[8,68,3,66,"exports"],[8,75,3,73],[8,76,3,74,"pbkdf2"],[8,82,3,80],[8,85,3,83,"exports"],[8,92,3,90],[8,93,3,91,"keccak512"],[8,102,3,100],[8,105,3,103,"exports"],[8,112,3,110],[8,113,3,111,"keccak256"],[8,122,3,120],[8,125,3,123,"exports"],[8,132,3,130],[8,133,3,131,"hmacSha512"],[8,143,3,141],[8,146,3,144,"exports"],[8,153,3,151],[8,154,3,152,"hmacSha256"],[8,164,3,162],[8,167,3,165,"exports"],[8,174,3,172],[8,175,3,173,"blake2b"],[8,182,3,180],[8,185,3,183,"exports"],[8,192,3,190],[8,193,3,191,"vrfVerify"],[8,202,3,200],[8,205,3,203,"exports"],[8,212,3,210],[8,213,3,211,"vrfSign"],[8,220,3,218],[8,223,3,221,"exports"],[8,230,3,228],[8,231,3,229,"sr25519Agree"],[8,243,3,241],[8,246,3,244,"exports"],[8,253,3,251],[8,254,3,252,"sr25519Verify"],[8,267,3,265],[8,270,3,268,"exports"],[8,277,3,275],[8,278,3,276,"sr25519Sign"],[8,289,3,287],[8,292,3,290,"exports"],[8,299,3,297],[8,300,3,298,"sr25519KeypairFromSeed"],[8,322,3,320],[8,325,3,323,"exports"],[8,332,3,330],[8,333,3,331,"sr25519DerivePublicSoft"],[8,356,3,354],[8,359,3,357,"exports"],[8,366,3,364],[8,367,3,365,"sr25519DeriveKeypairSoft"],[8,391,3,389],[8,394,3,392,"exports"],[8,401,3,399],[8,402,3,400,"sr25519DeriveKeypairHard"],[8,426,3,424],[8,429,3,427,"exports"],[8,436,3,434],[8,437,3,435,"secp256k1Sign"],[8,450,3,448],[8,453,3,451,"exports"],[8,460,3,458],[8,461,3,459,"secp256k1Recover"],[8,477,3,475],[8,480,3,478,"exports"],[8,487,3,485],[8,488,3,486,"secp256k1Expand"],[8,503,3,501],[8,506,3,504,"exports"],[8,513,3,511],[8,514,3,512,"secp256k1Compress"],[8,531,3,529],[8,534,3,532,"exports"],[8,541,3,539],[8,542,3,540,"secp256k1FromSeed"],[8,559,3,557],[8,562,3,560,"exports"],[8,569,3,567],[8,570,3,568,"ed25519Verify"],[8,583,3,581],[8,586,3,584,"exports"],[8,593,3,591],[8,594,3,592,"ed25519Sign"],[8,605,3,603],[8,608,3,606,"exports"],[8,615,3,613],[8,616,3,614,"ed25519KeypairFromSeed"],[8,638,3,636],[8,641,3,639,"exports"],[8,648,3,646],[8,649,3,647,"bip39Validate"],[8,662,3,660],[8,665,3,663,"exports"],[8,672,3,670],[8,673,3,671,"bip39ToSeed"],[8,684,3,682],[8,687,3,685,"exports"],[8,694,3,692],[8,695,3,693,"bip39ToMiniSecret"],[8,712,3,710],[8,715,3,713,"exports"],[8,722,3,720],[8,723,3,721,"bip39ToEntropy"],[8,737,3,735],[8,740,3,738,"exports"],[8,747,3,745],[8,748,3,746,"bip39Generate"],[8,761,3,759],[8,764,3,762,"exports"],[8,771,3,769],[8,772,3,770,"bridge"],[8,778,3,776],[8,781,3,779,"exports"],[8,788,3,786],[8,789,3,787,"packageInfo"],[8,800,3,798],[8,803,3,801],[8,808,3,806],[8,809,3,807],[9,2,4,0,"exports"],[9,9,4,7],[9,10,4,8,"isReady"],[9,17,4,15],[9,20,4,18,"isReady"],[9,27,4,25],[10,2,5,0,"exports"],[10,9,5,7],[10,10,5,8,"waitReady"],[10,19,5,17],[10,22,5,20,"waitReady"],[10,31,5,29],[11,2,6,0],[11,6,6,6,"init_js_1"],[11,15,6,15],[11,18,6,18,"require"],[11,25,6,25],[11,26,6,25,"_dependencyMap"],[11,40,6,25],[11,56,6,37],[11,57,6,38],[12,2,7,0,"Object"],[12,8,7,6],[12,9,7,7,"defineProperty"],[12,23,7,21],[12,24,7,22,"exports"],[12,31,7,29],[12,33,7,31],[12,41,7,39],[12,43,7,41],[13,4,7,43,"enumerable"],[13,14,7,53],[13,16,7,55],[13,20,7,59],[14,4,7,61,"get"],[14,7,7,64],[14,9,7,66],[14,18,7,66,"get"],[14,19,7,66],[14,21,7,78],[15,6,7,80],[15,13,7,87,"init_js_1"],[15,22,7,96],[15,23,7,97,"bridge"],[15,29,7,103],[16,4,7,105],[17,2,7,107],[17,3,7,108],[17,4,7,109],[18,2,8,0],[18,6,8,4,"packageInfo_js_1"],[18,22,8,20],[18,25,8,23,"require"],[18,32,8,30],[18,33,8,30,"_dependencyMap"],[18,47,8,30],[18,70,8,49],[18,71,8,50],[19,2,9,0,"Object"],[19,8,9,6],[19,9,9,7,"defineProperty"],[19,23,9,21],[19,24,9,22,"exports"],[19,31,9,29],[19,33,9,31],[19,46,9,44],[19,48,9,46],[20,4,9,48,"enumerable"],[20,14,9,58],[20,16,9,60],[20,20,9,64],[21,4,9,66,"get"],[21,7,9,69],[21,9,9,71],[21,18,9,71,"get"],[21,19,9,71],[21,21,9,83],[22,6,9,85],[22,13,9,92,"packageInfo_js_1"],[22,29,9,108],[22,30,9,109,"packageInfo"],[22,41,9,120],[23,4,9,122],[24,2,9,124],[24,3,9,125],[24,4,9,126],[25,2,10,0],[26,0,11,0],[27,0,12,0],[28,0,13,0],[29,0,14,0],[30,0,15,0],[31,0,16,0],[32,0,17,0],[33,0,18,0],[34,0,19,0],[35,0,20,0],[36,0,21,0],[37,0,22,0],[38,0,23,0],[39,2,24,0],[39,11,24,9,"withWasm"],[39,19,24,17,"withWasm"],[39,20,24,18,"fn"],[39,22,24,20],[39,24,24,22],[40,4,25,4],[40,11,25,11],[40,23,25,26],[41,6,26,8],[41,10,26,12],[41,11,26,13,"init_js_1"],[41,20,26,22],[41,21,26,23,"bridge"],[41,27,26,29],[41,28,26,30,"wasm"],[41,32,26,34],[41,34,26,36],[42,8,27,12],[42,14,27,18],[42,18,27,22,"Error"],[42,23,27,27],[42,24,27,28],[42,263,27,267],[42,264,27,268],[43,6,28,8],[44,6,28,9],[44,15,28,9,"_len"],[44,19,28,9],[44,22,28,9,"arguments"],[44,31,28,9],[44,32,28,9,"length"],[44,38,28,9],[44,40,25,15,"params"],[44,46,25,21],[44,53,25,21,"Array"],[44,58,25,21],[44,59,25,21,"_len"],[44,63,25,21],[44,66,25,21,"_key"],[44,70,25,21],[44,76,25,21,"_key"],[44,80,25,21],[44,83,25,21,"_len"],[44,87,25,21],[44,89,25,21,"_key"],[44,93,25,21],[45,8,25,15,"params"],[45,14,25,21],[45,15,25,21,"_key"],[45,19,25,21],[45,23,25,21,"arguments"],[45,32,25,21],[45,33,25,21,"_key"],[45,37,25,21],[46,6,25,21],[47,6,29,8],[47,13,29,15,"fn"],[47,15,29,17],[47,16,29,18,"init_js_1"],[47,25,29,27],[47,26,29,28,"bridge"],[47,32,29,34],[47,33,29,35,"wasm"],[47,37,29,39],[47,39,29,41],[47,42,29,44,"params"],[47,48,29,50],[47,49,29,51],[48,4,30,4],[48,5,30,5],[49,2,31,0],[50,2,32,0,"exports"],[50,9,32,7],[50,10,32,8,"bip39Generate"],[50,23,32,21],[50,26,32,24,"withWasm"],[50,34,32,32],[50,35,32,33],[50,36,32,34,"wasm"],[50,40,32,38],[50,42,32,40,"words"],[50,47,32,45],[50,52,32,50],[51,4,33,4,"wasm"],[51,8,33,8],[51,9,33,9,"ext_bip39_generate"],[51,27,33,27],[51,28,33,28],[51,29,33,29],[51,31,33,31,"words"],[51,36,33,36],[51,37,33,37],[52,4,34,4],[52,11,34,11,"init_js_1"],[52,20,34,20],[52,21,34,21,"bridge"],[52,27,34,27],[52,28,34,28,"resultString"],[52,40,34,40],[52,41,34,41],[52,42,34,42],[53,2,35,0],[53,3,35,1],[53,4,35,2],[54,2,36,0,"exports"],[54,9,36,7],[54,10,36,8,"bip39ToEntropy"],[54,24,36,22],[54,27,36,25,"withWasm"],[54,35,36,33],[54,36,36,34],[54,37,36,35,"wasm"],[54,41,36,39],[54,43,36,41,"phrase"],[54,49,36,47],[54,54,36,52],[55,4,37,4,"wasm"],[55,8,37,8],[55,9,37,9,"ext_bip39_to_entropy"],[55,29,37,29],[55,30,37,30],[55,31,37,31],[55,33,37,33],[55,36,37,36,"init_js_1"],[55,45,37,45],[55,46,37,46,"bridge"],[55,52,37,52],[55,53,37,53,"allocString"],[55,64,37,64],[55,65,37,65,"phrase"],[55,71,37,71],[55,72,37,72],[55,73,37,73],[56,4,38,4],[56,11,38,11,"init_js_1"],[56,20,38,20],[56,21,38,21,"bridge"],[56,27,38,27],[56,28,38,28,"resultU8a"],[56,37,38,37],[56,38,38,38],[56,39,38,39],[57,2,39,0],[57,3,39,1],[57,4,39,2],[58,2,40,0,"exports"],[58,9,40,7],[58,10,40,8,"bip39ToMiniSecret"],[58,27,40,25],[58,30,40,28,"withWasm"],[58,38,40,36],[58,39,40,37],[58,40,40,38,"wasm"],[58,44,40,42],[58,46,40,44,"phrase"],[58,52,40,50],[58,54,40,52,"password"],[58,62,40,60],[58,67,40,65],[59,4,41,4,"wasm"],[59,8,41,8],[59,9,41,9,"ext_bip39_to_mini_secret"],[59,33,41,33],[59,34,41,34],[59,35,41,35],[59,37,41,37],[59,40,41,40,"init_js_1"],[59,49,41,49],[59,50,41,50,"bridge"],[59,56,41,56],[59,57,41,57,"allocString"],[59,68,41,68],[59,69,41,69,"phrase"],[59,75,41,75],[59,76,41,76],[59,78,41,78],[59,81,41,81,"init_js_1"],[59,90,41,90],[59,91,41,91,"bridge"],[59,97,41,97],[59,98,41,98,"allocString"],[59,109,41,109],[59,110,41,110,"password"],[59,118,41,118],[59,119,41,119],[59,120,41,120],[60,4,42,4],[60,11,42,11,"init_js_1"],[60,20,42,20],[60,21,42,21,"bridge"],[60,27,42,27],[60,28,42,28,"resultU8a"],[60,37,42,37],[60,38,42,38],[60,39,42,39],[61,2,43,0],[61,3,43,1],[61,4,43,2],[62,2,44,0,"exports"],[62,9,44,7],[62,10,44,8,"bip39ToSeed"],[62,21,44,19],[62,24,44,22,"withWasm"],[62,32,44,30],[62,33,44,31],[62,34,44,32,"wasm"],[62,38,44,36],[62,40,44,38,"phrase"],[62,46,44,44],[62,48,44,46,"password"],[62,56,44,54],[62,61,44,59],[63,4,45,4,"wasm"],[63,8,45,8],[63,9,45,9,"ext_bip39_to_seed"],[63,26,45,26],[63,27,45,27],[63,28,45,28],[63,30,45,30],[63,33,45,33,"init_js_1"],[63,42,45,42],[63,43,45,43,"bridge"],[63,49,45,49],[63,50,45,50,"allocString"],[63,61,45,61],[63,62,45,62,"phrase"],[63,68,45,68],[63,69,45,69],[63,71,45,71],[63,74,45,74,"init_js_1"],[63,83,45,83],[63,84,45,84,"bridge"],[63,90,45,90],[63,91,45,91,"allocString"],[63,102,45,102],[63,103,45,103,"password"],[63,111,45,111],[63,112,45,112],[63,113,45,113],[64,4,46,4],[64,11,46,11,"init_js_1"],[64,20,46,20],[64,21,46,21,"bridge"],[64,27,46,27],[64,28,46,28,"resultU8a"],[64,37,46,37],[64,38,46,38],[64,39,46,39],[65,2,47,0],[65,3,47,1],[65,4,47,2],[66,2,48,0,"exports"],[66,9,48,7],[66,10,48,8,"bip39Validate"],[66,23,48,21],[66,26,48,24,"withWasm"],[66,34,48,32],[66,35,48,33],[66,36,48,34,"wasm"],[66,40,48,38],[66,42,48,40,"phrase"],[66,48,48,46],[66,53,48,51],[67,4,49,4],[67,8,49,10,"ret"],[67,11,49,13],[67,14,49,16,"wasm"],[67,18,49,20],[67,19,49,21,"ext_bip39_validate"],[67,37,49,39],[67,38,49,40],[67,41,49,43,"init_js_1"],[67,50,49,52],[67,51,49,53,"bridge"],[67,57,49,59],[67,58,49,60,"allocString"],[67,69,49,71],[67,70,49,72,"phrase"],[67,76,49,78],[67,77,49,79],[67,78,49,80],[68,4,50,4],[68,11,50,11,"ret"],[68,14,50,14],[68,19,50,19],[68,20,50,20],[69,2,51,0],[69,3,51,1],[69,4,51,2],[70,2,52,0,"exports"],[70,9,52,7],[70,10,52,8,"ed25519KeypairFromSeed"],[70,32,52,30],[70,35,52,33,"withWasm"],[70,43,52,41],[70,44,52,42],[70,45,52,43,"wasm"],[70,49,52,47],[70,51,52,49,"seed"],[70,55,52,53],[70,60,52,58],[71,4,53,4,"wasm"],[71,8,53,8],[71,9,53,9,"ext_ed_from_seed"],[71,25,53,25],[71,26,53,26],[71,27,53,27],[71,29,53,29],[71,32,53,32,"init_js_1"],[71,41,53,41],[71,42,53,42,"bridge"],[71,48,53,48],[71,49,53,49,"allocU8a"],[71,57,53,57],[71,58,53,58,"seed"],[71,62,53,62],[71,63,53,63],[71,64,53,64],[72,4,54,4],[72,11,54,11,"init_js_1"],[72,20,54,20],[72,21,54,21,"bridge"],[72,27,54,27],[72,28,54,28,"resultU8a"],[72,37,54,37],[72,38,54,38],[72,39,54,39],[73,2,55,0],[73,3,55,1],[73,4,55,2],[74,2,56,0,"exports"],[74,9,56,7],[74,10,56,8,"ed25519Sign"],[74,21,56,19],[74,24,56,22,"withWasm"],[74,32,56,30],[74,33,56,31],[74,34,56,32,"wasm"],[74,38,56,36],[74,40,56,38,"pubkey"],[74,46,56,44],[74,48,56,46,"seckey"],[74,54,56,52],[74,56,56,54,"message"],[74,63,56,61],[74,68,56,66],[75,4,57,4,"wasm"],[75,8,57,8],[75,9,57,9,"ext_ed_sign"],[75,20,57,20],[75,21,57,21],[75,22,57,22],[75,24,57,24],[75,27,57,27,"init_js_1"],[75,36,57,36],[75,37,57,37,"bridge"],[75,43,57,43],[75,44,57,44,"allocU8a"],[75,52,57,52],[75,53,57,53,"pubkey"],[75,59,57,59],[75,60,57,60],[75,62,57,62],[75,65,57,65,"init_js_1"],[75,74,57,74],[75,75,57,75,"bridge"],[75,81,57,81],[75,82,57,82,"allocU8a"],[75,90,57,90],[75,91,57,91,"seckey"],[75,97,57,97],[75,98,57,98],[75,100,57,100],[75,103,57,103,"init_js_1"],[75,112,57,112],[75,113,57,113,"bridge"],[75,119,57,119],[75,120,57,120,"allocU8a"],[75,128,57,128],[75,129,57,129,"message"],[75,136,57,136],[75,137,57,137],[75,138,57,138],[76,4,58,4],[76,11,58,11,"init_js_1"],[76,20,58,20],[76,21,58,21,"bridge"],[76,27,58,27],[76,28,58,28,"resultU8a"],[76,37,58,37],[76,38,58,38],[76,39,58,39],[77,2,59,0],[77,3,59,1],[77,4,59,2],[78,2,60,0,"exports"],[78,9,60,7],[78,10,60,8,"ed25519Verify"],[78,23,60,21],[78,26,60,24,"withWasm"],[78,34,60,32],[78,35,60,33],[78,36,60,34,"wasm"],[78,40,60,38],[78,42,60,40,"signature"],[78,51,60,49],[78,53,60,51,"message"],[78,60,60,58],[78,62,60,60,"pubkey"],[78,68,60,66],[78,73,60,71],[79,4,61,4],[79,8,61,10,"ret"],[79,11,61,13],[79,14,61,16,"wasm"],[79,18,61,20],[79,19,61,21,"ext_ed_verify"],[79,32,61,34],[79,33,61,35],[79,36,61,38,"init_js_1"],[79,45,61,47],[79,46,61,48,"bridge"],[79,52,61,54],[79,53,61,55,"allocU8a"],[79,61,61,63],[79,62,61,64,"signature"],[79,71,61,73],[79,72,61,74],[79,74,61,76],[79,77,61,79,"init_js_1"],[79,86,61,88],[79,87,61,89,"bridge"],[79,93,61,95],[79,94,61,96,"allocU8a"],[79,102,61,104],[79,103,61,105,"message"],[79,110,61,112],[79,111,61,113],[79,113,61,115],[79,116,61,118,"init_js_1"],[79,125,61,127],[79,126,61,128,"bridge"],[79,132,61,134],[79,133,61,135,"allocU8a"],[79,141,61,143],[79,142,61,144,"pubkey"],[79,148,61,150],[79,149,61,151],[79,150,61,152],[80,4,62,4],[80,11,62,11,"ret"],[80,14,62,14],[80,19,62,19],[80,20,62,20],[81,2,63,0],[81,3,63,1],[81,4,63,2],[82,2,64,0,"exports"],[82,9,64,7],[82,10,64,8,"secp256k1FromSeed"],[82,27,64,25],[82,30,64,28,"withWasm"],[82,38,64,36],[82,39,64,37],[82,40,64,38,"wasm"],[82,44,64,42],[82,46,64,44,"seckey"],[82,52,64,50],[82,57,64,55],[83,4,65,4,"wasm"],[83,8,65,8],[83,9,65,9,"ext_secp_from_seed"],[83,27,65,27],[83,28,65,28],[83,29,65,29],[83,31,65,31],[83,34,65,34,"init_js_1"],[83,43,65,43],[83,44,65,44,"bridge"],[83,50,65,50],[83,51,65,51,"allocU8a"],[83,59,65,59],[83,60,65,60,"seckey"],[83,66,65,66],[83,67,65,67],[83,68,65,68],[84,4,66,4],[84,11,66,11,"init_js_1"],[84,20,66,20],[84,21,66,21,"bridge"],[84,27,66,27],[84,28,66,28,"resultU8a"],[84,37,66,37],[84,38,66,38],[84,39,66,39],[85,2,67,0],[85,3,67,1],[85,4,67,2],[86,2,68,0,"exports"],[86,9,68,7],[86,10,68,8,"secp256k1Compress"],[86,27,68,25],[86,30,68,28,"withWasm"],[86,38,68,36],[86,39,68,37],[86,40,68,38,"wasm"],[86,44,68,42],[86,46,68,44,"pubkey"],[86,52,68,50],[86,57,68,55],[87,4,69,4,"wasm"],[87,8,69,8],[87,9,69,9,"ext_secp_pub_compress"],[87,30,69,30],[87,31,69,31],[87,32,69,32],[87,34,69,34],[87,37,69,37,"init_js_1"],[87,46,69,46],[87,47,69,47,"bridge"],[87,53,69,53],[87,54,69,54,"allocU8a"],[87,62,69,62],[87,63,69,63,"pubkey"],[87,69,69,69],[87,70,69,70],[87,71,69,71],[88,4,70,4],[88,11,70,11,"init_js_1"],[88,20,70,20],[88,21,70,21,"bridge"],[88,27,70,27],[88,28,70,28,"resultU8a"],[88,37,70,37],[88,38,70,38],[88,39,70,39],[89,2,71,0],[89,3,71,1],[89,4,71,2],[90,2,72,0,"exports"],[90,9,72,7],[90,10,72,8,"secp256k1Expand"],[90,25,72,23],[90,28,72,26,"withWasm"],[90,36,72,34],[90,37,72,35],[90,38,72,36,"wasm"],[90,42,72,40],[90,44,72,42,"pubkey"],[90,50,72,48],[90,55,72,53],[91,4,73,4,"wasm"],[91,8,73,8],[91,9,73,9,"ext_secp_pub_expand"],[91,28,73,28],[91,29,73,29],[91,30,73,30],[91,32,73,32],[91,35,73,35,"init_js_1"],[91,44,73,44],[91,45,73,45,"bridge"],[91,51,73,51],[91,52,73,52,"allocU8a"],[91,60,73,60],[91,61,73,61,"pubkey"],[91,67,73,67],[91,68,73,68],[91,69,73,69],[92,4,74,4],[92,11,74,11,"init_js_1"],[92,20,74,20],[92,21,74,21,"bridge"],[92,27,74,27],[92,28,74,28,"resultU8a"],[92,37,74,37],[92,38,74,38],[92,39,74,39],[93,2,75,0],[93,3,75,1],[93,4,75,2],[94,2,76,0,"exports"],[94,9,76,7],[94,10,76,8,"secp256k1Recover"],[94,26,76,24],[94,29,76,27,"withWasm"],[94,37,76,35],[94,38,76,36],[94,39,76,37,"wasm"],[94,43,76,41],[94,45,76,43,"msgHash"],[94,52,76,50],[94,54,76,52,"sig"],[94,57,76,55],[94,59,76,57,"recovery"],[94,67,76,65],[94,72,76,70],[95,4,77,4,"wasm"],[95,8,77,8],[95,9,77,9,"ext_secp_recover"],[95,25,77,25],[95,26,77,26],[95,27,77,27],[95,29,77,29],[95,32,77,32,"init_js_1"],[95,41,77,41],[95,42,77,42,"bridge"],[95,48,77,48],[95,49,77,49,"allocU8a"],[95,57,77,57],[95,58,77,58,"msgHash"],[95,65,77,65],[95,66,77,66],[95,68,77,68],[95,71,77,71,"init_js_1"],[95,80,77,80],[95,81,77,81,"bridge"],[95,87,77,87],[95,88,77,88,"allocU8a"],[95,96,77,96],[95,97,77,97,"sig"],[95,100,77,100],[95,101,77,101],[95,103,77,103,"recovery"],[95,111,77,111],[95,112,77,112],[96,4,78,4],[96,11,78,11,"init_js_1"],[96,20,78,20],[96,21,78,21,"bridge"],[96,27,78,27],[96,28,78,28,"resultU8a"],[96,37,78,37],[96,38,78,38],[96,39,78,39],[97,2,79,0],[97,3,79,1],[97,4,79,2],[98,2,80,0,"exports"],[98,9,80,7],[98,10,80,8,"secp256k1Sign"],[98,23,80,21],[98,26,80,24,"withWasm"],[98,34,80,32],[98,35,80,33],[98,36,80,34,"wasm"],[98,40,80,38],[98,42,80,40,"msgHash"],[98,49,80,47],[98,51,80,49,"seckey"],[98,57,80,55],[98,62,80,60],[99,4,81,4,"wasm"],[99,8,81,8],[99,9,81,9,"ext_secp_sign"],[99,22,81,22],[99,23,81,23],[99,24,81,24],[99,26,81,26],[99,29,81,29,"init_js_1"],[99,38,81,38],[99,39,81,39,"bridge"],[99,45,81,45],[99,46,81,46,"allocU8a"],[99,54,81,54],[99,55,81,55,"msgHash"],[99,62,81,62],[99,63,81,63],[99,65,81,65],[99,68,81,68,"init_js_1"],[99,77,81,77],[99,78,81,78,"bridge"],[99,84,81,84],[99,85,81,85,"allocU8a"],[99,93,81,93],[99,94,81,94,"seckey"],[99,100,81,100],[99,101,81,101],[99,102,81,102],[100,4,82,4],[100,11,82,11,"init_js_1"],[100,20,82,20],[100,21,82,21,"bridge"],[100,27,82,27],[100,28,82,28,"resultU8a"],[100,37,82,37],[100,38,82,38],[100,39,82,39],[101,2,83,0],[101,3,83,1],[101,4,83,2],[102,2,84,0,"exports"],[102,9,84,7],[102,10,84,8,"sr25519DeriveKeypairHard"],[102,34,84,32],[102,37,84,35,"withWasm"],[102,45,84,43],[102,46,84,44],[102,47,84,45,"wasm"],[102,51,84,49],[102,53,84,51,"pair"],[102,57,84,55],[102,59,84,57,"cc"],[102,61,84,59],[102,66,84,64],[103,4,85,4,"wasm"],[103,8,85,8],[103,9,85,9,"ext_sr_derive_keypair_hard"],[103,35,85,35],[103,36,85,36],[103,37,85,37],[103,39,85,39],[103,42,85,42,"init_js_1"],[103,51,85,51],[103,52,85,52,"bridge"],[103,58,85,58],[103,59,85,59,"allocU8a"],[103,67,85,67],[103,68,85,68,"pair"],[103,72,85,72],[103,73,85,73],[103,75,85,75],[103,78,85,78,"init_js_1"],[103,87,85,87],[103,88,85,88,"bridge"],[103,94,85,94],[103,95,85,95,"allocU8a"],[103,103,85,103],[103,104,85,104,"cc"],[103,106,85,106],[103,107,85,107],[103,108,85,108],[104,4,86,4],[104,11,86,11,"init_js_1"],[104,20,86,20],[104,21,86,21,"bridge"],[104,27,86,27],[104,28,86,28,"resultU8a"],[104,37,86,37],[104,38,86,38],[104,39,86,39],[105,2,87,0],[105,3,87,1],[105,4,87,2],[106,2,88,0,"exports"],[106,9,88,7],[106,10,88,8,"sr25519DeriveKeypairSoft"],[106,34,88,32],[106,37,88,35,"withWasm"],[106,45,88,43],[106,46,88,44],[106,47,88,45,"wasm"],[106,51,88,49],[106,53,88,51,"pair"],[106,57,88,55],[106,59,88,57,"cc"],[106,61,88,59],[106,66,88,64],[107,4,89,4,"wasm"],[107,8,89,8],[107,9,89,9,"ext_sr_derive_keypair_soft"],[107,35,89,35],[107,36,89,36],[107,37,89,37],[107,39,89,39],[107,42,89,42,"init_js_1"],[107,51,89,51],[107,52,89,52,"bridge"],[107,58,89,58],[107,59,89,59,"allocU8a"],[107,67,89,67],[107,68,89,68,"pair"],[107,72,89,72],[107,73,89,73],[107,75,89,75],[107,78,89,78,"init_js_1"],[107,87,89,87],[107,88,89,88,"bridge"],[107,94,89,94],[107,95,89,95,"allocU8a"],[107,103,89,103],[107,104,89,104,"cc"],[107,106,89,106],[107,107,89,107],[107,108,89,108],[108,4,90,4],[108,11,90,11,"init_js_1"],[108,20,90,20],[108,21,90,21,"bridge"],[108,27,90,27],[108,28,90,28,"resultU8a"],[108,37,90,37],[108,38,90,38],[108,39,90,39],[109,2,91,0],[109,3,91,1],[109,4,91,2],[110,2,92,0,"exports"],[110,9,92,7],[110,10,92,8,"sr25519DerivePublicSoft"],[110,33,92,31],[110,36,92,34,"withWasm"],[110,44,92,42],[110,45,92,43],[110,46,92,44,"wasm"],[110,50,92,48],[110,52,92,50,"pubkey"],[110,58,92,56],[110,60,92,58,"cc"],[110,62,92,60],[110,67,92,65],[111,4,93,4,"wasm"],[111,8,93,8],[111,9,93,9,"ext_sr_derive_public_soft"],[111,34,93,34],[111,35,93,35],[111,36,93,36],[111,38,93,38],[111,41,93,41,"init_js_1"],[111,50,93,50],[111,51,93,51,"bridge"],[111,57,93,57],[111,58,93,58,"allocU8a"],[111,66,93,66],[111,67,93,67,"pubkey"],[111,73,93,73],[111,74,93,74],[111,76,93,76],[111,79,93,79,"init_js_1"],[111,88,93,88],[111,89,93,89,"bridge"],[111,95,93,95],[111,96,93,96,"allocU8a"],[111,104,93,104],[111,105,93,105,"cc"],[111,107,93,107],[111,108,93,108],[111,109,93,109],[112,4,94,4],[112,11,94,11,"init_js_1"],[112,20,94,20],[112,21,94,21,"bridge"],[112,27,94,27],[112,28,94,28,"resultU8a"],[112,37,94,37],[112,38,94,38],[112,39,94,39],[113,2,95,0],[113,3,95,1],[113,4,95,2],[114,2,96,0,"exports"],[114,9,96,7],[114,10,96,8,"sr25519KeypairFromSeed"],[114,32,96,30],[114,35,96,33,"withWasm"],[114,43,96,41],[114,44,96,42],[114,45,96,43,"wasm"],[114,49,96,47],[114,51,96,49,"seed"],[114,55,96,53],[114,60,96,58],[115,4,97,4,"wasm"],[115,8,97,8],[115,9,97,9,"ext_sr_from_seed"],[115,25,97,25],[115,26,97,26],[115,27,97,27],[115,29,97,29],[115,32,97,32,"init_js_1"],[115,41,97,41],[115,42,97,42,"bridge"],[115,48,97,48],[115,49,97,49,"allocU8a"],[115,57,97,57],[115,58,97,58,"seed"],[115,62,97,62],[115,63,97,63],[115,64,97,64],[116,4,98,4],[116,11,98,11,"init_js_1"],[116,20,98,20],[116,21,98,21,"bridge"],[116,27,98,27],[116,28,98,28,"resultU8a"],[116,37,98,37],[116,38,98,38],[116,39,98,39],[117,2,99,0],[117,3,99,1],[117,4,99,2],[118,2,100,0,"exports"],[118,9,100,7],[118,10,100,8,"sr25519Sign"],[118,21,100,19],[118,24,100,22,"withWasm"],[118,32,100,30],[118,33,100,31],[118,34,100,32,"wasm"],[118,38,100,36],[118,40,100,38,"pubkey"],[118,46,100,44],[118,48,100,46,"secret"],[118,54,100,52],[118,56,100,54,"message"],[118,63,100,61],[118,68,100,66],[119,4,101,4,"wasm"],[119,8,101,8],[119,9,101,9,"ext_sr_sign"],[119,20,101,20],[119,21,101,21],[119,22,101,22],[119,24,101,24],[119,27,101,27,"init_js_1"],[119,36,101,36],[119,37,101,37,"bridge"],[119,43,101,43],[119,44,101,44,"allocU8a"],[119,52,101,52],[119,53,101,53,"pubkey"],[119,59,101,59],[119,60,101,60],[119,62,101,62],[119,65,101,65,"init_js_1"],[119,74,101,74],[119,75,101,75,"bridge"],[119,81,101,81],[119,82,101,82,"allocU8a"],[119,90,101,90],[119,91,101,91,"secret"],[119,97,101,97],[119,98,101,98],[119,100,101,100],[119,103,101,103,"init_js_1"],[119,112,101,112],[119,113,101,113,"bridge"],[119,119,101,119],[119,120,101,120,"allocU8a"],[119,128,101,128],[119,129,101,129,"message"],[119,136,101,136],[119,137,101,137],[119,138,101,138],[120,4,102,4],[120,11,102,11,"init_js_1"],[120,20,102,20],[120,21,102,21,"bridge"],[120,27,102,27],[120,28,102,28,"resultU8a"],[120,37,102,37],[120,38,102,38],[120,39,102,39],[121,2,103,0],[121,3,103,1],[121,4,103,2],[122,2,104,0,"exports"],[122,9,104,7],[122,10,104,8,"sr25519Verify"],[122,23,104,21],[122,26,104,24,"withWasm"],[122,34,104,32],[122,35,104,33],[122,36,104,34,"wasm"],[122,40,104,38],[122,42,104,40,"signature"],[122,51,104,49],[122,53,104,51,"message"],[122,60,104,58],[122,62,104,60,"pubkey"],[122,68,104,66],[122,73,104,71],[123,4,105,4],[123,8,105,10,"ret"],[123,11,105,13],[123,14,105,16,"wasm"],[123,18,105,20],[123,19,105,21,"ext_sr_verify"],[123,32,105,34],[123,33,105,35],[123,36,105,38,"init_js_1"],[123,45,105,47],[123,46,105,48,"bridge"],[123,52,105,54],[123,53,105,55,"allocU8a"],[123,61,105,63],[123,62,105,64,"signature"],[123,71,105,73],[123,72,105,74],[123,74,105,76],[123,77,105,79,"init_js_1"],[123,86,105,88],[123,87,105,89,"bridge"],[123,93,105,95],[123,94,105,96,"allocU8a"],[123,102,105,104],[123,103,105,105,"message"],[123,110,105,112],[123,111,105,113],[123,113,105,115],[123,116,105,118,"init_js_1"],[123,125,105,127],[123,126,105,128,"bridge"],[123,132,105,134],[123,133,105,135,"allocU8a"],[123,141,105,143],[123,142,105,144,"pubkey"],[123,148,105,150],[123,149,105,151],[123,150,105,152],[124,4,106,4],[124,11,106,11,"ret"],[124,14,106,14],[124,19,106,19],[124,20,106,20],[125,2,107,0],[125,3,107,1],[125,4,107,2],[126,2,108,0,"exports"],[126,9,108,7],[126,10,108,8,"sr25519Agree"],[126,22,108,20],[126,25,108,23,"withWasm"],[126,33,108,31],[126,34,108,32],[126,35,108,33,"wasm"],[126,39,108,37],[126,41,108,39,"pubkey"],[126,47,108,45],[126,49,108,47,"secret"],[126,55,108,53],[126,60,108,58],[127,4,109,4,"wasm"],[127,8,109,8],[127,9,109,9,"ext_sr_agree"],[127,21,109,21],[127,22,109,22],[127,23,109,23],[127,25,109,25],[127,28,109,28,"init_js_1"],[127,37,109,37],[127,38,109,38,"bridge"],[127,44,109,44],[127,45,109,45,"allocU8a"],[127,53,109,53],[127,54,109,54,"pubkey"],[127,60,109,60],[127,61,109,61],[127,63,109,63],[127,66,109,66,"init_js_1"],[127,75,109,75],[127,76,109,76,"bridge"],[127,82,109,82],[127,83,109,83,"allocU8a"],[127,91,109,91],[127,92,109,92,"secret"],[127,98,109,98],[127,99,109,99],[127,100,109,100],[128,4,110,4],[128,11,110,11,"init_js_1"],[128,20,110,20],[128,21,110,21,"bridge"],[128,27,110,27],[128,28,110,28,"resultU8a"],[128,37,110,37],[128,38,110,38],[128,39,110,39],[129,2,111,0],[129,3,111,1],[129,4,111,2],[130,2,112,0,"exports"],[130,9,112,7],[130,10,112,8,"vrfSign"],[130,17,112,15],[130,20,112,18,"withWasm"],[130,28,112,26],[130,29,112,27],[130,30,112,28,"wasm"],[130,34,112,32],[130,36,112,34,"secret"],[130,42,112,40],[130,44,112,42,"context"],[130,51,112,49],[130,53,112,51,"message"],[130,60,112,58],[130,62,112,60,"extra"],[130,67,112,65],[130,72,112,70],[131,4,113,4,"wasm"],[131,8,113,8],[131,9,113,9,"ext_vrf_sign"],[131,21,113,21],[131,22,113,22],[131,23,113,23],[131,25,113,25],[131,28,113,28,"init_js_1"],[131,37,113,37],[131,38,113,38,"bridge"],[131,44,113,44],[131,45,113,45,"allocU8a"],[131,53,113,53],[131,54,113,54,"secret"],[131,60,113,60],[131,61,113,61],[131,63,113,63],[131,66,113,66,"init_js_1"],[131,75,113,75],[131,76,113,76,"bridge"],[131,82,113,82],[131,83,113,83,"allocU8a"],[131,91,113,91],[131,92,113,92,"context"],[131,99,113,99],[131,100,113,100],[131,102,113,102],[131,105,113,105,"init_js_1"],[131,114,113,114],[131,115,113,115,"bridge"],[131,121,113,121],[131,122,113,122,"allocU8a"],[131,130,113,130],[131,131,113,131,"message"],[131,138,113,138],[131,139,113,139],[131,141,113,141],[131,144,113,144,"init_js_1"],[131,153,113,153],[131,154,113,154,"bridge"],[131,160,113,160],[131,161,113,161,"allocU8a"],[131,169,113,169],[131,170,113,170,"extra"],[131,175,113,175],[131,176,113,176],[131,177,113,177],[132,4,114,4],[132,11,114,11,"init_js_1"],[132,20,114,20],[132,21,114,21,"bridge"],[132,27,114,27],[132,28,114,28,"resultU8a"],[132,37,114,37],[132,38,114,38],[132,39,114,39],[133,2,115,0],[133,3,115,1],[133,4,115,2],[134,2,116,0,"exports"],[134,9,116,7],[134,10,116,8,"vrfVerify"],[134,19,116,17],[134,22,116,20,"withWasm"],[134,30,116,28],[134,31,116,29],[134,32,116,30,"wasm"],[134,36,116,34],[134,38,116,36,"pubkey"],[134,44,116,42],[134,46,116,44,"context"],[134,53,116,51],[134,55,116,53,"message"],[134,62,116,60],[134,64,116,62,"extra"],[134,69,116,67],[134,71,116,69,"outAndProof"],[134,82,116,80],[134,87,116,85],[135,4,117,4],[135,8,117,10,"ret"],[135,11,117,13],[135,14,117,16,"wasm"],[135,18,117,20],[135,19,117,21,"ext_vrf_verify"],[135,33,117,35],[135,34,117,36],[135,37,117,39,"init_js_1"],[135,46,117,48],[135,47,117,49,"bridge"],[135,53,117,55],[135,54,117,56,"allocU8a"],[135,62,117,64],[135,63,117,65,"pubkey"],[135,69,117,71],[135,70,117,72],[135,72,117,74],[135,75,117,77,"init_js_1"],[135,84,117,86],[135,85,117,87,"bridge"],[135,91,117,93],[135,92,117,94,"allocU8a"],[135,100,117,102],[135,101,117,103,"context"],[135,108,117,110],[135,109,117,111],[135,111,117,113],[135,114,117,116,"init_js_1"],[135,123,117,125],[135,124,117,126,"bridge"],[135,130,117,132],[135,131,117,133,"allocU8a"],[135,139,117,141],[135,140,117,142,"message"],[135,147,117,149],[135,148,117,150],[135,150,117,152],[135,153,117,155,"init_js_1"],[135,162,117,164],[135,163,117,165,"bridge"],[135,169,117,171],[135,170,117,172,"allocU8a"],[135,178,117,180],[135,179,117,181,"extra"],[135,184,117,186],[135,185,117,187],[135,187,117,189],[135,190,117,192,"init_js_1"],[135,199,117,201],[135,200,117,202,"bridge"],[135,206,117,208],[135,207,117,209,"allocU8a"],[135,215,117,217],[135,216,117,218,"outAndProof"],[135,227,117,229],[135,228,117,230],[135,229,117,231],[136,4,118,4],[136,11,118,11,"ret"],[136,14,118,14],[136,19,118,19],[136,20,118,20],[137,2,119,0],[137,3,119,1],[137,4,119,2],[138,2,120,0,"exports"],[138,9,120,7],[138,10,120,8,"blake2b"],[138,17,120,15],[138,20,120,18,"withWasm"],[138,28,120,26],[138,29,120,27],[138,30,120,28,"wasm"],[138,34,120,32],[138,36,120,34,"data"],[138,40,120,38],[138,42,120,40,"key"],[138,45,120,43],[138,47,120,45,"size"],[138,51,120,49],[138,56,120,54],[139,4,121,4,"wasm"],[139,8,121,8],[139,9,121,9,"ext_blake2b"],[139,20,121,20],[139,21,121,21],[139,22,121,22],[139,24,121,24],[139,27,121,27,"init_js_1"],[139,36,121,36],[139,37,121,37,"bridge"],[139,43,121,43],[139,44,121,44,"allocU8a"],[139,52,121,52],[139,53,121,53,"data"],[139,57,121,57],[139,58,121,58],[139,60,121,60],[139,63,121,63,"init_js_1"],[139,72,121,72],[139,73,121,73,"bridge"],[139,79,121,79],[139,80,121,80,"allocU8a"],[139,88,121,88],[139,89,121,89,"key"],[139,92,121,92],[139,93,121,93],[139,95,121,95,"size"],[139,99,121,99],[139,100,121,100],[140,4,122,4],[140,11,122,11,"init_js_1"],[140,20,122,20],[140,21,122,21,"bridge"],[140,27,122,27],[140,28,122,28,"resultU8a"],[140,37,122,37],[140,38,122,38],[140,39,122,39],[141,2,123,0],[141,3,123,1],[141,4,123,2],[142,2,124,0,"exports"],[142,9,124,7],[142,10,124,8,"hmacSha256"],[142,20,124,18],[142,23,124,21,"withWasm"],[142,31,124,29],[142,32,124,30],[142,33,124,31,"wasm"],[142,37,124,35],[142,39,124,37,"key"],[142,42,124,40],[142,44,124,42,"data"],[142,48,124,46],[142,53,124,51],[143,4,125,4,"wasm"],[143,8,125,8],[143,9,125,9,"ext_hmac_sha256"],[143,24,125,24],[143,25,125,25],[143,26,125,26],[143,28,125,28],[143,31,125,31,"init_js_1"],[143,40,125,40],[143,41,125,41,"bridge"],[143,47,125,47],[143,48,125,48,"allocU8a"],[143,56,125,56],[143,57,125,57,"key"],[143,60,125,60],[143,61,125,61],[143,63,125,63],[143,66,125,66,"init_js_1"],[143,75,125,75],[143,76,125,76,"bridge"],[143,82,125,82],[143,83,125,83,"allocU8a"],[143,91,125,91],[143,92,125,92,"data"],[143,96,125,96],[143,97,125,97],[143,98,125,98],[144,4,126,4],[144,11,126,11,"init_js_1"],[144,20,126,20],[144,21,126,21,"bridge"],[144,27,126,27],[144,28,126,28,"resultU8a"],[144,37,126,37],[144,38,126,38],[144,39,126,39],[145,2,127,0],[145,3,127,1],[145,4,127,2],[146,2,128,0,"exports"],[146,9,128,7],[146,10,128,8,"hmacSha512"],[146,20,128,18],[146,23,128,21,"withWasm"],[146,31,128,29],[146,32,128,30],[146,33,128,31,"wasm"],[146,37,128,35],[146,39,128,37,"key"],[146,42,128,40],[146,44,128,42,"data"],[146,48,128,46],[146,53,128,51],[147,4,129,4,"wasm"],[147,8,129,8],[147,9,129,9,"ext_hmac_sha512"],[147,24,129,24],[147,25,129,25],[147,26,129,26],[147,28,129,28],[147,31,129,31,"init_js_1"],[147,40,129,40],[147,41,129,41,"bridge"],[147,47,129,47],[147,48,129,48,"allocU8a"],[147,56,129,56],[147,57,129,57,"key"],[147,60,129,60],[147,61,129,61],[147,63,129,63],[147,66,129,66,"init_js_1"],[147,75,129,75],[147,76,129,76,"bridge"],[147,82,129,82],[147,83,129,83,"allocU8a"],[147,91,129,91],[147,92,129,92,"data"],[147,96,129,96],[147,97,129,97],[147,98,129,98],[148,4,130,4],[148,11,130,11,"init_js_1"],[148,20,130,20],[148,21,130,21,"bridge"],[148,27,130,27],[148,28,130,28,"resultU8a"],[148,37,130,37],[148,38,130,38],[148,39,130,39],[149,2,131,0],[149,3,131,1],[149,4,131,2],[150,2,132,0,"exports"],[150,9,132,7],[150,10,132,8,"keccak256"],[150,19,132,17],[150,22,132,20,"withWasm"],[150,30,132,28],[150,31,132,29],[150,32,132,30,"wasm"],[150,36,132,34],[150,38,132,36,"data"],[150,42,132,40],[150,47,132,45],[151,4,133,4,"wasm"],[151,8,133,8],[151,9,133,9,"ext_keccak256"],[151,22,133,22],[151,23,133,23],[151,24,133,24],[151,26,133,26],[151,29,133,29,"init_js_1"],[151,38,133,38],[151,39,133,39,"bridge"],[151,45,133,45],[151,46,133,46,"allocU8a"],[151,54,133,54],[151,55,133,55,"data"],[151,59,133,59],[151,60,133,60],[151,61,133,61],[152,4,134,4],[152,11,134,11,"init_js_1"],[152,20,134,20],[152,21,134,21,"bridge"],[152,27,134,27],[152,28,134,28,"resultU8a"],[152,37,134,37],[152,38,134,38],[152,39,134,39],[153,2,135,0],[153,3,135,1],[153,4,135,2],[154,2,136,0,"exports"],[154,9,136,7],[154,10,136,8,"keccak512"],[154,19,136,17],[154,22,136,20,"withWasm"],[154,30,136,28],[154,31,136,29],[154,32,136,30,"wasm"],[154,36,136,34],[154,38,136,36,"data"],[154,42,136,40],[154,47,136,45],[155,4,137,4,"wasm"],[155,8,137,8],[155,9,137,9,"ext_keccak512"],[155,22,137,22],[155,23,137,23],[155,24,137,24],[155,26,137,26],[155,29,137,29,"init_js_1"],[155,38,137,38],[155,39,137,39,"bridge"],[155,45,137,45],[155,46,137,46,"allocU8a"],[155,54,137,54],[155,55,137,55,"data"],[155,59,137,59],[155,60,137,60],[155,61,137,61],[156,4,138,4],[156,11,138,11,"init_js_1"],[156,20,138,20],[156,21,138,21,"bridge"],[156,27,138,27],[156,28,138,28,"resultU8a"],[156,37,138,37],[156,38,138,38],[156,39,138,39],[157,2,139,0],[157,3,139,1],[157,4,139,2],[158,2,140,0,"exports"],[158,9,140,7],[158,10,140,8,"pbkdf2"],[158,16,140,14],[158,19,140,17,"withWasm"],[158,27,140,25],[158,28,140,26],[158,29,140,27,"wasm"],[158,33,140,31],[158,35,140,33,"data"],[158,39,140,37],[158,41,140,39,"salt"],[158,45,140,43],[158,47,140,45,"rounds"],[158,53,140,51],[158,58,140,56],[159,4,141,4,"wasm"],[159,8,141,8],[159,9,141,9,"ext_pbkdf2"],[159,19,141,19],[159,20,141,20],[159,21,141,21],[159,23,141,23],[159,26,141,26,"init_js_1"],[159,35,141,35],[159,36,141,36,"bridge"],[159,42,141,42],[159,43,141,43,"allocU8a"],[159,51,141,51],[159,52,141,52,"data"],[159,56,141,56],[159,57,141,57],[159,59,141,59],[159,62,141,62,"init_js_1"],[159,71,141,71],[159,72,141,72,"bridge"],[159,78,141,78],[159,79,141,79,"allocU8a"],[159,87,141,87],[159,88,141,88,"salt"],[159,92,141,92],[159,93,141,93],[159,95,141,95,"rounds"],[159,101,141,101],[159,102,141,102],[160,4,142,4],[160,11,142,11,"init_js_1"],[160,20,142,20],[160,21,142,21,"bridge"],[160,27,142,27],[160,28,142,28,"resultU8a"],[160,37,142,37],[160,38,142,38],[160,39,142,39],[161,2,143,0],[161,3,143,1],[161,4,143,2],[162,2,144,0,"exports"],[162,9,144,7],[162,10,144,8,"scrypt"],[162,16,144,14],[162,19,144,17,"withWasm"],[162,27,144,25],[162,28,144,26],[162,29,144,27,"wasm"],[162,33,144,31],[162,35,144,33,"password"],[162,43,144,41],[162,45,144,43,"salt"],[162,49,144,47],[162,51,144,49,"log2n"],[162,56,144,54],[162,58,144,56,"r"],[162,59,144,57],[162,61,144,59,"p"],[162,62,144,60],[162,67,144,65],[163,4,145,4,"wasm"],[163,8,145,8],[163,9,145,9,"ext_scrypt"],[163,19,145,19],[163,20,145,20],[163,21,145,21],[163,23,145,23],[163,26,145,26,"init_js_1"],[163,35,145,35],[163,36,145,36,"bridge"],[163,42,145,42],[163,43,145,43,"allocU8a"],[163,51,145,51],[163,52,145,52,"password"],[163,60,145,60],[163,61,145,61],[163,63,145,63],[163,66,145,66,"init_js_1"],[163,75,145,75],[163,76,145,76,"bridge"],[163,82,145,82],[163,83,145,83,"allocU8a"],[163,91,145,91],[163,92,145,92,"salt"],[163,96,145,96],[163,97,145,97],[163,99,145,99,"log2n"],[163,104,145,104],[163,106,145,106,"r"],[163,107,145,107],[163,109,145,109,"p"],[163,110,145,110],[163,111,145,111],[164,4,146,4],[164,11,146,11,"init_js_1"],[164,20,146,20],[164,21,146,21,"bridge"],[164,27,146,27],[164,28,146,28,"resultU8a"],[164,37,146,37],[164,38,146,38],[164,39,146,39],[165,2,147,0],[165,3,147,1],[165,4,147,2],[166,2,148,0,"exports"],[166,9,148,7],[166,10,148,8,"sha256"],[166,16,148,14],[166,19,148,17,"withWasm"],[166,27,148,25],[166,28,148,26],[166,29,148,27,"wasm"],[166,33,148,31],[166,35,148,33,"data"],[166,39,148,37],[166,44,148,42],[167,4,149,4,"wasm"],[167,8,149,8],[167,9,149,9,"ext_sha256"],[167,19,149,19],[167,20,149,20],[167,21,149,21],[167,23,149,23],[167,26,149,26,"init_js_1"],[167,35,149,35],[167,36,149,36,"bridge"],[167,42,149,42],[167,43,149,43,"allocU8a"],[167,51,149,51],[167,52,149,52,"data"],[167,56,149,56],[167,57,149,57],[167,58,149,58],[168,4,150,4],[168,11,150,11,"init_js_1"],[168,20,150,20],[168,21,150,21,"bridge"],[168,27,150,27],[168,28,150,28,"resultU8a"],[168,37,150,37],[168,38,150,38],[168,39,150,39],[169,2,151,0],[169,3,151,1],[169,4,151,2],[170,2,152,0,"exports"],[170,9,152,7],[170,10,152,8,"sha512"],[170,16,152,14],[170,19,152,17,"withWasm"],[170,27,152,25],[170,28,152,26],[170,29,152,27,"wasm"],[170,33,152,31],[170,35,152,33,"data"],[170,39,152,37],[170,44,152,42],[171,4,153,4,"wasm"],[171,8,153,8],[171,9,153,9,"ext_sha512"],[171,19,153,19],[171,20,153,20],[171,21,153,21],[171,23,153,23],[171,26,153,26,"init_js_1"],[171,35,153,35],[171,36,153,36,"bridge"],[171,42,153,42],[171,43,153,43,"allocU8a"],[171,51,153,51],[171,52,153,52,"data"],[171,56,153,56],[171,57,153,57],[171,58,153,58],[172,4,154,4],[172,11,154,11,"init_js_1"],[172,20,154,20],[172,21,154,21,"bridge"],[172,27,154,27],[172,28,154,28,"resultU8a"],[172,37,154,37],[172,38,154,38],[172,39,154,39],[173,2,155,0],[173,3,155,1],[173,4,155,2],[174,2,156,0,"exports"],[174,9,156,7],[174,10,156,8,"twox"],[174,14,156,12],[174,17,156,15,"withWasm"],[174,25,156,23],[174,26,156,24],[174,27,156,25,"wasm"],[174,31,156,29],[174,33,156,31,"data"],[174,37,156,35],[174,39,156,37,"rounds"],[174,45,156,43],[174,50,156,48],[175,4,157,4,"wasm"],[175,8,157,8],[175,9,157,9,"ext_twox"],[175,17,157,17],[175,18,157,18],[175,19,157,19],[175,21,157,21],[175,24,157,24,"init_js_1"],[175,33,157,33],[175,34,157,34,"bridge"],[175,40,157,40],[175,41,157,41,"allocU8a"],[175,49,157,49],[175,50,157,50,"data"],[175,54,157,54],[175,55,157,55],[175,57,157,57,"rounds"],[175,63,157,63],[175,64,157,64],[176,4,158,4],[176,11,158,11,"init_js_1"],[176,20,158,20],[176,21,158,21,"bridge"],[176,27,158,27],[176,28,158,28,"resultU8a"],[176,37,158,37],[176,38,158,38],[176,39,158,39],[177,2,159,0],[177,3,159,1],[177,4,159,2],[178,2,160,0],[178,11,160,9,"isReady"],[178,18,160,16,"isReady"],[178,19,160,16],[178,21,160,19],[179,4,161,4],[179,11,161,11],[179,12,161,12],[179,13,161,13,"init_js_1"],[179,22,161,22],[179,23,161,23,"bridge"],[179,29,161,29],[179,30,161,30,"wasm"],[179,34,161,34],[180,2,162,0],[181,2,162,1],[181,11,163,15,"waitReady"],[181,20,163,24,"waitReady"],[181,21,163,24],[182,4,163,24],[182,11,163,24,"_waitReady"],[182,21,163,24],[182,22,163,24,"apply"],[182,27,163,24],[182,34,163,24,"arguments"],[182,43,163,24],[183,2,163,24],[184,2,163,24],[184,11,163,24,"_waitReady"],[184,22,163,24],[185,4,163,24,"_waitReady"],[185,14,163,24],[185,17,163,24,"_asyncToGenerator"],[185,34,163,24],[185,35,163,0],[185,48,163,27],[186,6,164,4],[186,10,164,8],[187,8,165,8],[187,12,165,14,"wasm"],[187,16,165,18],[187,25,165,27],[187,26,165,28],[187,27,165,29],[187,29,165,31,"init_js_1"],[187,38,165,40],[187,39,165,41,"initBridge"],[187,49,165,51],[187,51,165,53],[187,52,165,54],[188,8,166,8],[188,15,166,15],[188,16,166,16],[188,17,166,17,"wasm"],[188,21,166,21],[189,6,167,4],[189,7,167,5],[189,8,168,4],[189,14,168,10],[190,8,169,8],[190,15,169,15],[190,20,169,20],[191,6,170,4],[192,4,171,0],[192,5,171,1],[193,4,171,1],[193,11,171,1,"_waitReady"],[193,21,171,1],[193,22,171,1,"apply"],[193,27,171,1],[193,34,171,1,"arguments"],[193,43,171,1],[194,2,171,1],[195,0,171,1],[195,3]],"functionMap":{"names":["<global>","Object.defineProperty$argument_2.get","withWasm","<anonymous>","withWasm$argument_0","isReady","waitReady"],"mappings":"AAA;kECM,wCD;uECE,oDD;AEe;WCC;KDK;CFC;iCIC;CJG;kCIC;CJG;qCIC;CJG;+BIC;CJG;iCIC;CJG;0CIC;CJG;+BIC;CJG;iCIC;CJG;qCIC;CJG;qCIC;CJG;mCIC;CJG;oCIC;CJG;iCIC;CJG;4CIC;CJG;4CIC;CJG;2CIC;CJG;0CIC;CJG;+BIC;CJG;iCIC;CJG;gCIC;CJG;2BIC;CJG;6BIC;CJG;2BIC;CJG;8BIC;CJG;8BIC;CJG;6BIC;CJG;6BIC;CJG;0BIC;CJG;0BIC;CJG;0BIC;CJG;0BIC;CJG;wBIC;CJG;AKC;CLE;AMC;CNQ"},"hasCjsExports":true},"type":"js/module"}]} |