Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/96/ed07dc80f8b55d4788984982b952c9ba829942714cf894a5ea3b78519b8b00553796c4
T
2025-10-24 02:46:57 +00:00

1 line
50 KiB
Plaintext

{"dependencies":[{"name":"@noble/hashes/sha2.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":9,"column":0,"index":312},"end":{"line":9,"column":47,"index":359}}],"key":"6+AQdZFmgXxbBRsj7vXjiW169Ao=","exportNames":["*"],"imports":1}},{"name":"@noble/hashes/utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":360},"end":{"line":10,"column":53,"index":413}}],"key":"9JUbQ31V1iDWPVrlEOLWo2H+V7Q=","exportNames":["*"],"imports":1}},{"name":"./_shortw_utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":414},"end":{"line":11,"column":49,"index":463}}],"key":"qfak+fZeAAdpyPs7gJkb3vcu3gM=","exportNames":["*"],"imports":1}},{"name":"./abstract/hash-to-curve.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":464},"end":{"line":12,"column":72,"index":536}}],"key":"6cIrPYlRjjJUQl2gr4hN6UWsQZg=","exportNames":["*"],"imports":1}},{"name":"./abstract/modular.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":537},"end":{"line":13,"column":73,"index":610}}],"key":"x/hC1jRUt/ly9bL40f8FeUx///E=","exportNames":["*"],"imports":1}},{"name":"./abstract/weierstrass.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":611},"end":{"line":14,"column":81,"index":692}}],"key":"yErLR4yREQp6ndIwpB6BpPlLSiM=","exportNames":["*"],"imports":1}},{"name":"./utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":693},"end":{"line":15,"column":111,"index":804}}],"key":"NIaSEHO1E48gsZc7jH9Ex1xTHgE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"secp256k1\", {\n enumerable: true,\n get: function () {\n return secp256k1;\n }\n });\n Object.defineProperty(exports, \"schnorr\", {\n enumerable: true,\n get: function () {\n return schnorr;\n }\n });\n Object.defineProperty(exports, \"secp256k1_hasher\", {\n enumerable: true,\n get: function () {\n return secp256k1_hasher;\n }\n });\n Object.defineProperty(exports, \"hashToCurve\", {\n enumerable: true,\n get: function () {\n return hashToCurve;\n }\n });\n Object.defineProperty(exports, \"encodeToCurve\", {\n enumerable: true,\n get: function () {\n return encodeToCurve;\n }\n });\n var _nobleHashesSha2Js = require(_dependencyMap[0], \"@noble/hashes/sha2.js\");\n var _nobleHashesUtilsJs = require(_dependencyMap[1], \"@noble/hashes/utils.js\");\n var _shortw_utilsJs = require(_dependencyMap[2], \"./_shortw_utils.js\");\n var _abstractHashToCurveJs = require(_dependencyMap[3], \"./abstract/hash-to-curve.js\");\n var _abstractModularJs = require(_dependencyMap[4], \"./abstract/modular.js\");\n var _abstractWeierstrassJs = require(_dependencyMap[5], \"./abstract/weierstrass.js\");\n var _utilsJs = require(_dependencyMap[6], \"./utils.js\");\n /**\n * SECG secp256k1. See [pdf](https://www.secg.org/sec2-v2.pdf).\n *\n * Belongs to Koblitz curves: it has efficiently-computable GLV endomorphism ψ,\n * check out {@link EndomorphismOpts}. Seems to be rigid (not backdoored).\n * @module\n */\n /*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */\n\n // Seems like generator was produced from some seed:\n // `Point.BASE.multiply(Point.Fn.inv(2n, N)).toAffine().x`\n // // gives short x 0x3b78ce563f89a0ed9414f5aa28ad0d96d6795f9c63n\n const secp256k1_CURVE = {\n p: BigInt('0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f'),\n n: BigInt('0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141'),\n h: BigInt(1),\n a: BigInt(0),\n b: BigInt(7),\n Gx: BigInt('0x79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798'),\n Gy: BigInt('0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8')\n };\n const secp256k1_ENDO = {\n beta: BigInt('0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee'),\n basises: [[BigInt('0x3086d221a7d46bcde86c90e49284eb15'), -BigInt('0xe4437ed6010e88286f547fa90abfe4c3')], [BigInt('0x114ca50f7a8e2f3f657c1108d9d44cfd8'), BigInt('0x3086d221a7d46bcde86c90e49284eb15')]]\n };\n const _0n = /* @__PURE__ */BigInt(0);\n const _1n = /* @__PURE__ */BigInt(1);\n const _2n = /* @__PURE__ */BigInt(2);\n /**\n * √n = n^((p+1)/4) for fields p = 3 mod 4. We unwrap the loop and multiply bit-by-bit.\n * (P+1n/4n).toString(2) would produce bits [223x 1, 0, 22x 1, 4x 0, 11, 00]\n */\n function sqrtMod(y) {\n const P = secp256k1_CURVE.p;\n // prettier-ignore\n const _3n = BigInt(3),\n _6n = BigInt(6),\n _11n = BigInt(11),\n _22n = BigInt(22);\n // prettier-ignore\n const _23n = BigInt(23),\n _44n = BigInt(44),\n _88n = BigInt(88);\n const b2 = y * y * y % P; // x^3, 11\n const b3 = b2 * b2 * y % P; // x^7\n const b6 = (0, _abstractModularJs.pow2)(b3, _3n, P) * b3 % P;\n const b9 = (0, _abstractModularJs.pow2)(b6, _3n, P) * b3 % P;\n const b11 = (0, _abstractModularJs.pow2)(b9, _2n, P) * b2 % P;\n const b22 = (0, _abstractModularJs.pow2)(b11, _11n, P) * b11 % P;\n const b44 = (0, _abstractModularJs.pow2)(b22, _22n, P) * b22 % P;\n const b88 = (0, _abstractModularJs.pow2)(b44, _44n, P) * b44 % P;\n const b176 = (0, _abstractModularJs.pow2)(b88, _88n, P) * b88 % P;\n const b220 = (0, _abstractModularJs.pow2)(b176, _44n, P) * b44 % P;\n const b223 = (0, _abstractModularJs.pow2)(b220, _3n, P) * b3 % P;\n const t1 = (0, _abstractModularJs.pow2)(b223, _23n, P) * b22 % P;\n const t2 = (0, _abstractModularJs.pow2)(t1, _6n, P) * b2 % P;\n const root = (0, _abstractModularJs.pow2)(t2, _2n, P);\n if (!Fpk1.eql(Fpk1.sqr(root), y)) throw new Error('Cannot find square root');\n return root;\n }\n const Fpk1 = (0, _abstractModularJs.Field)(secp256k1_CURVE.p, {\n sqrt: sqrtMod\n });\n /**\n * secp256k1 curve, ECDSA and ECDH methods.\n *\n * Field: `2n**256n - 2n**32n - 2n**9n - 2n**8n - 2n**7n - 2n**6n - 2n**4n - 1n`\n *\n * @example\n * ```js\n * import { secp256k1 } from '@noble/curves/secp256k1';\n * const { secretKey, publicKey } = secp256k1.keygen();\n * const msg = new TextEncoder().encode('hello');\n * const sig = secp256k1.sign(msg, secretKey);\n * const isValid = secp256k1.verify(sig, msg, publicKey) === true;\n * ```\n */\n const secp256k1 = (0, _shortw_utilsJs.createCurve)({\n ...secp256k1_CURVE,\n Fp: Fpk1,\n lowS: true,\n endo: secp256k1_ENDO\n }, _nobleHashesSha2Js.sha256);\n // Schnorr signatures are superior to ECDSA from above. Below is Schnorr-specific BIP0340 code.\n // https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki\n /** An object mapping tags to their tagged hash prefix of [SHA256(tag) | SHA256(tag)] */\n const TAGGED_HASH_PREFIXES = {};\n function taggedHash(tag, ...messages) {\n let tagP = TAGGED_HASH_PREFIXES[tag];\n if (tagP === undefined) {\n const tagH = (0, _nobleHashesSha2Js.sha256)((0, _utilsJs.utf8ToBytes)(tag));\n tagP = (0, _utilsJs.concatBytes)(tagH, tagH);\n TAGGED_HASH_PREFIXES[tag] = tagP;\n }\n return (0, _nobleHashesSha2Js.sha256)((0, _utilsJs.concatBytes)(tagP, ...messages));\n }\n // ECDSA compact points are 33-byte. Schnorr is 32: we strip first byte 0x02 or 0x03\n const pointToBytes = point => point.toBytes(true).slice(1);\n const Pointk1 = /* @__PURE__ */(() => secp256k1.Point)();\n const hasEven = y => y % _2n === _0n;\n // Calculate point, scalar and bytes\n function schnorrGetExtPubKey(priv) {\n const {\n Fn,\n BASE\n } = Pointk1;\n const d_ = (0, _abstractWeierstrassJs._normFnElement)(Fn, priv);\n const p = BASE.multiply(d_); // P = d'⋅G; 0 < d' < n check is done inside\n const scalar = hasEven(p.y) ? d_ : Fn.neg(d_);\n return {\n scalar,\n bytes: pointToBytes(p)\n };\n }\n /**\n * lift_x from BIP340. Convert 32-byte x coordinate to elliptic curve point.\n * @returns valid point checked for being on-curve\n */\n function lift_x(x) {\n const Fp = Fpk1;\n if (!Fp.isValidNot0(x)) throw new Error('invalid x: Fail if x ≥ p');\n const xx = Fp.create(x * x);\n const c = Fp.create(xx * x + BigInt(7)); // Let c = x³ + 7 mod p.\n let y = Fp.sqrt(c); // Let y = c^(p+1)/4 mod p. Same as sqrt().\n // Return the unique point P such that x(P) = x and\n // y(P) = y if y mod 2 = 0 or y(P) = p-y otherwise.\n if (!hasEven(y)) y = Fp.neg(y);\n const p = Pointk1.fromAffine({\n x,\n y\n });\n p.assertValidity();\n return p;\n }\n const num = _utilsJs.bytesToNumberBE;\n /**\n * Create tagged hash, convert it to bigint, reduce modulo-n.\n */\n function challenge(...args) {\n return Pointk1.Fn.create(num(taggedHash('BIP0340/challenge', ...args)));\n }\n /**\n * Schnorr public key is just `x` coordinate of Point as per BIP340.\n */\n function schnorrGetPublicKey(secretKey) {\n return schnorrGetExtPubKey(secretKey).bytes; // d'=int(sk). Fail if d'=0 or d'≥n. Ret bytes(d'⋅G)\n }\n /**\n * Creates Schnorr signature as per BIP340. Verifies itself before returning anything.\n * auxRand is optional and is not the sole source of k generation: bad CSPRNG won't be dangerous.\n */\n function schnorrSign(message, secretKey, auxRand = (0, _nobleHashesUtilsJs.randomBytes)(32)) {\n const {\n Fn\n } = Pointk1;\n const m = (0, _utilsJs.ensureBytes)('message', message);\n const {\n bytes: px,\n scalar: d\n } = schnorrGetExtPubKey(secretKey); // checks for isWithinCurveOrder\n const a = (0, _utilsJs.ensureBytes)('auxRand', auxRand, 32); // Auxiliary random data a: a 32-byte array\n const t = Fn.toBytes(d ^ num(taggedHash('BIP0340/aux', a))); // Let t be the byte-wise xor of bytes(d) and hash/aux(a)\n const rand = taggedHash('BIP0340/nonce', t, px, m); // Let rand = hash/nonce(t || bytes(P) || m)\n // Let k' = int(rand) mod n. Fail if k' = 0. Let R = k'⋅G\n const {\n bytes: rx,\n scalar: k\n } = schnorrGetExtPubKey(rand);\n const e = challenge(rx, px, m); // Let e = int(hash/challenge(bytes(R) || bytes(P) || m)) mod n.\n const sig = new Uint8Array(64); // Let sig = bytes(R) || bytes((k + ed) mod n).\n sig.set(rx, 0);\n sig.set(Fn.toBytes(Fn.create(k + e * d)), 32);\n // If Verify(bytes(P), m, sig) (see below) returns failure, abort\n if (!schnorrVerify(sig, m, px)) throw new Error('sign: Invalid signature produced');\n return sig;\n }\n /**\n * Verifies Schnorr signature.\n * Will swallow errors & return false except for initial type validation of arguments.\n */\n function schnorrVerify(signature, message, publicKey) {\n const {\n Fn,\n BASE\n } = Pointk1;\n const sig = (0, _utilsJs.ensureBytes)('signature', signature, 64);\n const m = (0, _utilsJs.ensureBytes)('message', message);\n const pub = (0, _utilsJs.ensureBytes)('publicKey', publicKey, 32);\n try {\n const P = lift_x(num(pub)); // P = lift_x(int(pk)); fail if that fails\n const r = num(sig.subarray(0, 32)); // Let r = int(sig[0:32]); fail if r ≥ p.\n if (!(0, _utilsJs.inRange)(r, _1n, secp256k1_CURVE.p)) return false;\n const s = num(sig.subarray(32, 64)); // Let s = int(sig[32:64]); fail if s ≥ n.\n if (!(0, _utilsJs.inRange)(s, _1n, secp256k1_CURVE.n)) return false;\n // int(challenge(bytes(r)||bytes(P)||m))%n\n const e = challenge(Fn.toBytes(r), pointToBytes(P), m);\n // R = s⋅G - e⋅P, where -eP == (n-e)P\n const R = BASE.multiplyUnsafe(s).add(P.multiplyUnsafe(Fn.neg(e)));\n const {\n x,\n y\n } = R.toAffine();\n // Fail if is_infinite(R) / not has_even_y(R) / x(R) ≠ r.\n if (R.is0() || !hasEven(y) || x !== r) return false;\n return true;\n } catch (error) {\n return false;\n }\n }\n /**\n * Schnorr signatures over secp256k1.\n * https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki\n * @example\n * ```js\n * import { schnorr } from '@noble/curves/secp256k1';\n * const { secretKey, publicKey } = schnorr.keygen();\n * // const publicKey = schnorr.getPublicKey(secretKey);\n * const msg = new TextEncoder().encode('hello');\n * const sig = schnorr.sign(msg, secretKey);\n * const isValid = schnorr.verify(sig, msg, publicKey);\n * ```\n */\n const schnorr = /* @__PURE__ */(() => {\n const size = 32;\n const seedLength = 48;\n const randomSecretKey = (seed = (0, _nobleHashesUtilsJs.randomBytes)(seedLength)) => {\n return (0, _abstractModularJs.mapHashToField)(seed, secp256k1_CURVE.n);\n };\n // TODO: remove\n secp256k1.utils.randomSecretKey;\n function keygen(seed) {\n const secretKey = randomSecretKey(seed);\n return {\n secretKey,\n publicKey: schnorrGetPublicKey(secretKey)\n };\n }\n return {\n keygen,\n getPublicKey: schnorrGetPublicKey,\n sign: schnorrSign,\n verify: schnorrVerify,\n Point: Pointk1,\n utils: {\n randomSecretKey: randomSecretKey,\n randomPrivateKey: randomSecretKey,\n taggedHash,\n // TODO: remove\n lift_x,\n pointToBytes,\n numberToBytesBE: _utilsJs.numberToBytesBE,\n bytesToNumberBE: _utilsJs.bytesToNumberBE,\n mod: _abstractModularJs.mod\n },\n lengths: {\n secretKey: size,\n publicKey: size,\n publicKeyHasPrefix: false,\n signature: size * 2,\n seed: seedLength\n }\n };\n })();\n const isoMap = /* @__PURE__ */(() => (0, _abstractHashToCurveJs.isogenyMap)(Fpk1, [\n // xNum\n ['0x8e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38daaaaa8c7', '0x7d3d4c80bc321d5b9f315cea7fd44c5d595d2fc0bf63b92dfff1044f17c6581', '0x534c328d23f234e6e2a413deca25caece4506144037c40314ecbd0b53d9dd262', '0x8e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38daaaaa88c'],\n // xDen\n ['0xd35771193d94918a9ca34ccbb7b640dd86cd409542f8487d9fe6b745781eb49b', '0xedadc6f64383dc1df7c4b2d51b54225406d36b641f5e41bbc52a56612a8c6d14', '0x0000000000000000000000000000000000000000000000000000000000000001' // LAST 1\n ],\n // yNum\n ['0x4bda12f684bda12f684bda12f684bda12f684bda12f684bda12f684b8e38e23c', '0xc75e0c32d5cb7c0fa9d0a54b12a0a6d5647ab046d686da6fdffc90fc201d71a3', '0x29a6194691f91a73715209ef6512e576722830a201be2018a765e85a9ecee931', '0x2f684bda12f684bda12f684bda12f684bda12f684bda12f684bda12f38e38d84'],\n // yDen\n ['0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffff93b', '0x7a06534bb8bdb49fd5e9e6632722c2989467c1bfc8e8d978dfb425d2685c2573', '0x6484aa716545ca2cf3a70c3fa8fe337e0a3d21162f0d6299a7bf8192bfd2a76f', '0x0000000000000000000000000000000000000000000000000000000000000001' // LAST 1\n ]].map(i => i.map(j => BigInt(j)))))();\n const mapSWU = /* @__PURE__ */(() => (0, _abstractWeierstrassJs.mapToCurveSimpleSWU)(Fpk1, {\n A: BigInt('0x3f8731abdd661adca08a5558f0f5d272e953d363cb6f0e5d405447c01a444533'),\n B: BigInt('1771'),\n Z: Fpk1.create(BigInt('-11'))\n }))();\n /** Hashing / encoding to secp256k1 points / field. RFC 9380 methods. */\n const secp256k1_hasher = /* @__PURE__ */(() => (0, _abstractHashToCurveJs.createHasher)(secp256k1.Point, scalars => {\n const {\n x,\n y\n } = mapSWU(Fpk1.create(scalars[0]));\n return isoMap(x, y);\n }, {\n DST: 'secp256k1_XMD:SHA-256_SSWU_RO_',\n encodeDST: 'secp256k1_XMD:SHA-256_SSWU_NU_',\n p: Fpk1.ORDER,\n m: 1,\n k: 128,\n expand: 'xmd',\n hash: _nobleHashesSha2Js.sha256\n }))();\n /** @deprecated use `import { secp256k1_hasher } from '@noble/curves/secp256k1.js';` */\n const hashToCurve = /* @__PURE__ */(() => secp256k1_hasher.hashToCurve)();\n /** @deprecated use `import { secp256k1_hasher } from '@noble/curves/secp256k1.js';` */\n const encodeToCurve = /* @__PURE__ */(() => secp256k1_hasher.encodeToCurve)();\n});","lineCount":343,"map":[[7,2,81,0,"Object"],[7,8,81,0],[7,9,81,0,"defineProperty"],[7,23,81,0],[7,24,81,0,"exports"],[7,31,81,0],[8,4,81,0,"enumerable"],[8,14,81,0],[9,4,81,0,"get"],[9,7,81,0],[9,18,81,0,"get"],[9,19,81,0],[10,6,81,0],[10,13,81,0,"secp256k1"],[10,22,81,0],[11,4,81,0],[12,2,81,0],[13,2,205,0,"Object"],[13,8,205,0],[13,9,205,0,"defineProperty"],[13,23,205,0],[13,24,205,0,"exports"],[13,31,205,0],[14,4,205,0,"enumerable"],[14,14,205,0],[15,4,205,0,"get"],[15,7,205,0],[15,18,205,0,"get"],[15,19,205,0],[16,6,205,0],[16,13,205,0,"schnorr"],[16,20,205,0],[17,4,205,0],[18,2,205,0],[19,2,278,0,"Object"],[19,8,278,0],[19,9,278,0,"defineProperty"],[19,23,278,0],[19,24,278,0,"exports"],[19,31,278,0],[20,4,278,0,"enumerable"],[20,14,278,0],[21,4,278,0,"get"],[21,7,278,0],[21,18,278,0,"get"],[21,19,278,0],[22,6,278,0],[22,13,278,0,"secp256k1_hasher"],[22,29,278,0],[23,4,278,0],[24,2,278,0],[25,2,291,0,"Object"],[25,8,291,0],[25,9,291,0,"defineProperty"],[25,23,291,0],[25,24,291,0,"exports"],[25,31,291,0],[26,4,291,0,"enumerable"],[26,14,291,0],[27,4,291,0,"get"],[27,7,291,0],[27,18,291,0,"get"],[27,19,291,0],[28,6,291,0],[28,13,291,0,"hashToCurve"],[28,24,291,0],[29,4,291,0],[30,2,291,0],[31,2,293,0,"Object"],[31,8,293,0],[31,9,293,0,"defineProperty"],[31,23,293,0],[31,24,293,0,"exports"],[31,31,293,0],[32,4,293,0,"enumerable"],[32,14,293,0],[33,4,293,0,"get"],[33,7,293,0],[33,18,293,0,"get"],[33,19,293,0],[34,6,293,0],[34,13,293,0,"encodeToCurve"],[34,26,293,0],[35,4,293,0],[36,2,293,0],[37,2,9,0],[37,6,9,0,"_nobleHashesSha2Js"],[37,24,9,0],[37,27,9,0,"require"],[37,34,9,0],[37,35,9,0,"_dependencyMap"],[37,49,9,0],[38,2,10,0],[38,6,10,0,"_nobleHashesUtilsJs"],[38,25,10,0],[38,28,10,0,"require"],[38,35,10,0],[38,36,10,0,"_dependencyMap"],[38,50,10,0],[39,2,11,0],[39,6,11,0,"_shortw_utilsJs"],[39,21,11,0],[39,24,11,0,"require"],[39,31,11,0],[39,32,11,0,"_dependencyMap"],[39,46,11,0],[40,2,12,0],[40,6,12,0,"_abstractHashToCurveJs"],[40,28,12,0],[40,31,12,0,"require"],[40,38,12,0],[40,39,12,0,"_dependencyMap"],[40,53,12,0],[41,2,13,0],[41,6,13,0,"_abstractModularJs"],[41,24,13,0],[41,27,13,0,"require"],[41,34,13,0],[41,35,13,0,"_dependencyMap"],[41,49,13,0],[42,2,14,0],[42,6,14,0,"_abstractWeierstrassJs"],[42,28,14,0],[42,31,14,0,"require"],[42,38,14,0],[42,39,14,0,"_dependencyMap"],[42,53,14,0],[43,2,15,0],[43,6,15,0,"_utilsJs"],[43,14,15,0],[43,17,15,0,"require"],[43,24,15,0],[43,25,15,0,"_dependencyMap"],[43,39,15,0],[44,2,1,0],[45,0,2,0],[46,0,3,0],[47,0,4,0],[48,0,5,0],[49,0,6,0],[50,0,7,0],[51,2,8,0],[53,2,16,0],[54,2,17,0],[55,2,18,0],[56,2,19,0],[56,8,19,6,"secp256k1_CURVE"],[56,23,19,21],[56,26,19,24],[57,4,20,4,"p"],[57,5,20,5],[57,7,20,7,"BigInt"],[57,13,20,13],[57,14,20,14],[57,82,20,82],[57,83,20,83],[58,4,21,4,"n"],[58,5,21,5],[58,7,21,7,"BigInt"],[58,13,21,13],[58,14,21,14],[58,82,21,82],[58,83,21,83],[59,4,22,4,"h"],[59,5,22,5],[59,7,22,7,"BigInt"],[59,13,22,13],[59,14,22,14],[59,15,22,15],[59,16,22,16],[60,4,23,4,"a"],[60,5,23,5],[60,7,23,7,"BigInt"],[60,13,23,13],[60,14,23,14],[60,15,23,15],[60,16,23,16],[61,4,24,4,"b"],[61,5,24,5],[61,7,24,7,"BigInt"],[61,13,24,13],[61,14,24,14],[61,15,24,15],[61,16,24,16],[62,4,25,4,"Gx"],[62,6,25,6],[62,8,25,8,"BigInt"],[62,14,25,14],[62,15,25,15],[62,83,25,83],[62,84,25,84],[63,4,26,4,"Gy"],[63,6,26,6],[63,8,26,8,"BigInt"],[63,14,26,14],[63,15,26,15],[63,83,26,83],[64,2,27,0],[64,3,27,1],[65,2,28,0],[65,8,28,6,"secp256k1_ENDO"],[65,22,28,20],[65,25,28,23],[66,4,29,4,"beta"],[66,8,29,8],[66,10,29,10,"BigInt"],[66,16,29,16],[66,17,29,17],[66,85,29,85],[66,86,29,86],[67,4,30,4,"basises"],[67,11,30,11],[67,13,30,13],[67,14,31,8],[67,15,31,9,"BigInt"],[67,21,31,15],[67,22,31,16],[67,58,31,52],[67,59,31,53],[67,61,31,55],[67,62,31,56,"BigInt"],[67,68,31,62],[67,69,31,63],[67,105,31,99],[67,106,31,100],[67,107,31,101],[67,109,32,8],[67,110,32,9,"BigInt"],[67,116,32,15],[67,117,32,16],[67,154,32,53],[67,155,32,54],[67,157,32,56,"BigInt"],[67,163,32,62],[67,164,32,63],[67,200,32,99],[67,201,32,100],[67,202,32,101],[68,2,34,0],[68,3,34,1],[69,2,35,0],[69,8,35,6,"_0n"],[69,11,35,9],[69,14,35,12],[69,29,35,28,"BigInt"],[69,35,35,34],[69,36,35,35],[69,37,35,36],[69,38,35,37],[70,2,36,0],[70,8,36,6,"_1n"],[70,11,36,9],[70,14,36,12],[70,29,36,28,"BigInt"],[70,35,36,34],[70,36,36,35],[70,37,36,36],[70,38,36,37],[71,2,37,0],[71,8,37,6,"_2n"],[71,11,37,9],[71,14,37,12],[71,29,37,28,"BigInt"],[71,35,37,34],[71,36,37,35],[71,37,37,36],[71,38,37,37],[72,2,38,0],[73,0,39,0],[74,0,40,0],[75,0,41,0],[76,2,42,0],[76,11,42,9,"sqrtMod"],[76,18,42,16,"sqrtMod"],[76,19,42,17,"y"],[76,20,42,18],[76,22,42,20],[77,4,43,4],[77,10,43,10,"P"],[77,11,43,11],[77,14,43,14,"secp256k1_CURVE"],[77,29,43,29],[77,30,43,30,"p"],[77,31,43,31],[78,4,44,4],[79,4,45,4],[79,10,45,10,"_3n"],[79,13,45,13],[79,16,45,16,"BigInt"],[79,22,45,22],[79,23,45,23],[79,24,45,24],[79,25,45,25],[80,6,45,27,"_6n"],[80,9,45,30],[80,12,45,33,"BigInt"],[80,18,45,39],[80,19,45,40],[80,20,45,41],[80,21,45,42],[81,6,45,44,"_11n"],[81,10,45,48],[81,13,45,51,"BigInt"],[81,19,45,57],[81,20,45,58],[81,22,45,60],[81,23,45,61],[82,6,45,63,"_22n"],[82,10,45,67],[82,13,45,70,"BigInt"],[82,19,45,76],[82,20,45,77],[82,22,45,79],[82,23,45,80],[83,4,46,4],[84,4,47,4],[84,10,47,10,"_23n"],[84,14,47,14],[84,17,47,17,"BigInt"],[84,23,47,23],[84,24,47,24],[84,26,47,26],[84,27,47,27],[85,6,47,29,"_44n"],[85,10,47,33],[85,13,47,36,"BigInt"],[85,19,47,42],[85,20,47,43],[85,22,47,45],[85,23,47,46],[86,6,47,48,"_88n"],[86,10,47,52],[86,13,47,55,"BigInt"],[86,19,47,61],[86,20,47,62],[86,22,47,64],[86,23,47,65],[87,4,48,4],[87,10,48,10,"b2"],[87,12,48,12],[87,15,48,16,"y"],[87,16,48,17],[87,19,48,20,"y"],[87,20,48,21],[87,23,48,24,"y"],[87,24,48,25],[87,27,48,29,"P"],[87,28,48,30],[87,29,48,31],[87,30,48,32],[88,4,49,4],[88,10,49,10,"b3"],[88,12,49,12],[88,15,49,16,"b2"],[88,17,49,18],[88,20,49,21,"b2"],[88,22,49,23],[88,25,49,26,"y"],[88,26,49,27],[88,29,49,31,"P"],[88,30,49,32],[88,31,49,33],[88,32,49,34],[89,4,50,4],[89,10,50,10,"b6"],[89,12,50,12],[89,15,50,16],[89,19,50,16,"pow2"],[89,37,50,20],[89,38,50,20,"pow2"],[89,42,50,20],[89,44,50,21,"b3"],[89,46,50,23],[89,48,50,25,"_3n"],[89,51,50,28],[89,53,50,30,"P"],[89,54,50,31],[89,55,50,32],[89,58,50,35,"b3"],[89,60,50,37],[89,63,50,41,"P"],[89,64,50,42],[90,4,51,4],[90,10,51,10,"b9"],[90,12,51,12],[90,15,51,16],[90,19,51,16,"pow2"],[90,37,51,20],[90,38,51,20,"pow2"],[90,42,51,20],[90,44,51,21,"b6"],[90,46,51,23],[90,48,51,25,"_3n"],[90,51,51,28],[90,53,51,30,"P"],[90,54,51,31],[90,55,51,32],[90,58,51,35,"b3"],[90,60,51,37],[90,63,51,41,"P"],[90,64,51,42],[91,4,52,4],[91,10,52,10,"b11"],[91,13,52,13],[91,16,52,17],[91,20,52,17,"pow2"],[91,38,52,21],[91,39,52,21,"pow2"],[91,43,52,21],[91,45,52,22,"b9"],[91,47,52,24],[91,49,52,26,"_2n"],[91,52,52,29],[91,54,52,31,"P"],[91,55,52,32],[91,56,52,33],[91,59,52,36,"b2"],[91,61,52,38],[91,64,52,42,"P"],[91,65,52,43],[92,4,53,4],[92,10,53,10,"b22"],[92,13,53,13],[92,16,53,17],[92,20,53,17,"pow2"],[92,38,53,21],[92,39,53,21,"pow2"],[92,43,53,21],[92,45,53,22,"b11"],[92,48,53,25],[92,50,53,27,"_11n"],[92,54,53,31],[92,56,53,33,"P"],[92,57,53,34],[92,58,53,35],[92,61,53,38,"b11"],[92,64,53,41],[92,67,53,45,"P"],[92,68,53,46],[93,4,54,4],[93,10,54,10,"b44"],[93,13,54,13],[93,16,54,17],[93,20,54,17,"pow2"],[93,38,54,21],[93,39,54,21,"pow2"],[93,43,54,21],[93,45,54,22,"b22"],[93,48,54,25],[93,50,54,27,"_22n"],[93,54,54,31],[93,56,54,33,"P"],[93,57,54,34],[93,58,54,35],[93,61,54,38,"b22"],[93,64,54,41],[93,67,54,45,"P"],[93,68,54,46],[94,4,55,4],[94,10,55,10,"b88"],[94,13,55,13],[94,16,55,17],[94,20,55,17,"pow2"],[94,38,55,21],[94,39,55,21,"pow2"],[94,43,55,21],[94,45,55,22,"b44"],[94,48,55,25],[94,50,55,27,"_44n"],[94,54,55,31],[94,56,55,33,"P"],[94,57,55,34],[94,58,55,35],[94,61,55,38,"b44"],[94,64,55,41],[94,67,55,45,"P"],[94,68,55,46],[95,4,56,4],[95,10,56,10,"b176"],[95,14,56,14],[95,17,56,18],[95,21,56,18,"pow2"],[95,39,56,22],[95,40,56,22,"pow2"],[95,44,56,22],[95,46,56,23,"b88"],[95,49,56,26],[95,51,56,28,"_88n"],[95,55,56,32],[95,57,56,34,"P"],[95,58,56,35],[95,59,56,36],[95,62,56,39,"b88"],[95,65,56,42],[95,68,56,46,"P"],[95,69,56,47],[96,4,57,4],[96,10,57,10,"b220"],[96,14,57,14],[96,17,57,18],[96,21,57,18,"pow2"],[96,39,57,22],[96,40,57,22,"pow2"],[96,44,57,22],[96,46,57,23,"b176"],[96,50,57,27],[96,52,57,29,"_44n"],[96,56,57,33],[96,58,57,35,"P"],[96,59,57,36],[96,60,57,37],[96,63,57,40,"b44"],[96,66,57,43],[96,69,57,47,"P"],[96,70,57,48],[97,4,58,4],[97,10,58,10,"b223"],[97,14,58,14],[97,17,58,18],[97,21,58,18,"pow2"],[97,39,58,22],[97,40,58,22,"pow2"],[97,44,58,22],[97,46,58,23,"b220"],[97,50,58,27],[97,52,58,29,"_3n"],[97,55,58,32],[97,57,58,34,"P"],[97,58,58,35],[97,59,58,36],[97,62,58,39,"b3"],[97,64,58,41],[97,67,58,45,"P"],[97,68,58,46],[98,4,59,4],[98,10,59,10,"t1"],[98,12,59,12],[98,15,59,16],[98,19,59,16,"pow2"],[98,37,59,20],[98,38,59,20,"pow2"],[98,42,59,20],[98,44,59,21,"b223"],[98,48,59,25],[98,50,59,27,"_23n"],[98,54,59,31],[98,56,59,33,"P"],[98,57,59,34],[98,58,59,35],[98,61,59,38,"b22"],[98,64,59,41],[98,67,59,45,"P"],[98,68,59,46],[99,4,60,4],[99,10,60,10,"t2"],[99,12,60,12],[99,15,60,16],[99,19,60,16,"pow2"],[99,37,60,20],[99,38,60,20,"pow2"],[99,42,60,20],[99,44,60,21,"t1"],[99,46,60,23],[99,48,60,25,"_6n"],[99,51,60,28],[99,53,60,30,"P"],[99,54,60,31],[99,55,60,32],[99,58,60,35,"b2"],[99,60,60,37],[99,63,60,41,"P"],[99,64,60,42],[100,4,61,4],[100,10,61,10,"root"],[100,14,61,14],[100,17,61,17],[100,21,61,17,"pow2"],[100,39,61,21],[100,40,61,21,"pow2"],[100,44,61,21],[100,46,61,22,"t2"],[100,48,61,24],[100,50,61,26,"_2n"],[100,53,61,29],[100,55,61,31,"P"],[100,56,61,32],[100,57,61,33],[101,4,62,4],[101,8,62,8],[101,9,62,9,"Fpk1"],[101,13,62,13],[101,14,62,14,"eql"],[101,17,62,17],[101,18,62,18,"Fpk1"],[101,22,62,22],[101,23,62,23,"sqr"],[101,26,62,26],[101,27,62,27,"root"],[101,31,62,31],[101,32,62,32],[101,34,62,34,"y"],[101,35,62,35],[101,36,62,36],[101,38,63,8],[101,44,63,14],[101,48,63,18,"Error"],[101,53,63,23],[101,54,63,24],[101,79,63,49],[101,80,63,50],[102,4,64,4],[102,11,64,11,"root"],[102,15,64,15],[103,2,65,0],[104,2,66,0],[104,8,66,6,"Fpk1"],[104,12,66,10],[104,15,66,13],[104,19,66,13,"Field"],[104,37,66,18],[104,38,66,18,"Field"],[104,43,66,18],[104,45,66,19,"secp256k1_CURVE"],[104,60,66,34],[104,61,66,35,"p"],[104,62,66,36],[104,64,66,38],[105,4,66,40,"sqrt"],[105,8,66,44],[105,10,66,46,"sqrtMod"],[106,2,66,54],[106,3,66,55],[106,4,66,56],[107,2,67,0],[108,0,68,0],[109,0,69,0],[110,0,70,0],[111,0,71,0],[112,0,72,0],[113,0,73,0],[114,0,74,0],[115,0,75,0],[116,0,76,0],[117,0,77,0],[118,0,78,0],[119,0,79,0],[120,0,80,0],[121,2,81,7],[121,8,81,13,"secp256k1"],[121,17,81,22],[121,20,81,25],[121,24,81,25,"createCurve"],[121,39,81,36],[121,40,81,36,"createCurve"],[121,51,81,36],[121,53,81,37],[122,4,81,39],[122,7,81,42,"secp256k1_CURVE"],[122,22,81,57],[123,4,81,59,"Fp"],[123,6,81,61],[123,8,81,63,"Fpk1"],[123,12,81,67],[124,4,81,69,"lowS"],[124,8,81,73],[124,10,81,75],[124,14,81,79],[125,4,81,81,"endo"],[125,8,81,85],[125,10,81,87,"secp256k1_ENDO"],[126,2,81,102],[126,3,81,103],[126,5,81,105,"sha256"],[126,23,81,111],[126,24,81,111,"sha256"],[126,30,81,111],[126,31,81,112],[127,2,82,0],[128,2,83,0],[129,2,84,0],[130,2,85,0],[130,8,85,6,"TAGGED_HASH_PREFIXES"],[130,28,85,26],[130,31,85,29],[130,32,85,30],[130,33,85,31],[131,2,86,0],[131,11,86,9,"taggedHash"],[131,21,86,19,"taggedHash"],[131,22,86,20,"tag"],[131,25,86,23],[131,27,86,25],[131,30,86,28,"messages"],[131,38,86,36],[131,40,86,38],[132,4,87,4],[132,8,87,8,"tagP"],[132,12,87,12],[132,15,87,15,"TAGGED_HASH_PREFIXES"],[132,35,87,35],[132,36,87,36,"tag"],[132,39,87,39],[132,40,87,40],[133,4,88,4],[133,8,88,8,"tagP"],[133,12,88,12],[133,17,88,17,"undefined"],[133,26,88,26],[133,28,88,28],[134,6,89,8],[134,12,89,14,"tagH"],[134,16,89,18],[134,19,89,21],[134,23,89,21,"sha256"],[134,41,89,27],[134,42,89,27,"sha256"],[134,48,89,27],[134,50,89,28],[134,54,89,28,"utf8ToBytes"],[134,62,89,39],[134,63,89,39,"utf8ToBytes"],[134,74,89,39],[134,76,89,40,"tag"],[134,79,89,43],[134,80,89,44],[134,81,89,45],[135,6,90,8,"tagP"],[135,10,90,12],[135,13,90,15],[135,17,90,15,"concatBytes"],[135,25,90,26],[135,26,90,26,"concatBytes"],[135,37,90,26],[135,39,90,27,"tagH"],[135,43,90,31],[135,45,90,33,"tagH"],[135,49,90,37],[135,50,90,38],[136,6,91,8,"TAGGED_HASH_PREFIXES"],[136,26,91,28],[136,27,91,29,"tag"],[136,30,91,32],[136,31,91,33],[136,34,91,36,"tagP"],[136,38,91,40],[137,4,92,4],[138,4,93,4],[138,11,93,11],[138,15,93,11,"sha256"],[138,33,93,17],[138,34,93,17,"sha256"],[138,40,93,17],[138,42,93,18],[138,46,93,18,"concatBytes"],[138,54,93,29],[138,55,93,29,"concatBytes"],[138,66,93,29],[138,68,93,30,"tagP"],[138,72,93,34],[138,74,93,36],[138,77,93,39,"messages"],[138,85,93,47],[138,86,93,48],[138,87,93,49],[139,2,94,0],[140,2,95,0],[141,2,96,0],[141,8,96,6,"pointToBytes"],[141,20,96,18],[141,23,96,22,"point"],[141,28,96,27],[141,32,96,32,"point"],[141,37,96,37],[141,38,96,38,"toBytes"],[141,45,96,45],[141,46,96,46],[141,50,96,50],[141,51,96,51],[141,52,96,52,"slice"],[141,57,96,57],[141,58,96,58],[141,59,96,59],[141,60,96,60],[142,2,97,0],[142,8,97,6,"Pointk1"],[142,15,97,13],[142,18,97,16],[142,33,97,32],[142,34,97,33],[142,40,97,39,"secp256k1"],[142,49,97,48],[142,50,97,49,"Point"],[142,55,97,54],[142,57,97,56],[142,58,97,57],[143,2,98,0],[143,8,98,6,"hasEven"],[143,15,98,13],[143,18,98,17,"y"],[143,19,98,18],[143,23,98,23,"y"],[143,24,98,24],[143,27,98,27,"_2n"],[143,30,98,30],[143,35,98,35,"_0n"],[143,38,98,38],[144,2,99,0],[145,2,100,0],[145,11,100,9,"schnorrGetExtPubKey"],[145,30,100,28,"schnorrGetExtPubKey"],[145,31,100,29,"priv"],[145,35,100,33],[145,37,100,35],[146,4,101,4],[146,10,101,10],[147,6,101,12,"Fn"],[147,8,101,14],[148,6,101,16,"BASE"],[149,4,101,21],[149,5,101,22],[149,8,101,25,"Pointk1"],[149,15,101,32],[150,4,102,4],[150,10,102,10,"d_"],[150,12,102,12],[150,15,102,15],[150,19,102,15,"_normFnElement"],[150,41,102,29],[150,42,102,29,"_normFnElement"],[150,56,102,29],[150,58,102,30,"Fn"],[150,60,102,32],[150,62,102,34,"priv"],[150,66,102,38],[150,67,102,39],[151,4,103,4],[151,10,103,10,"p"],[151,11,103,11],[151,14,103,14,"BASE"],[151,18,103,18],[151,19,103,19,"multiply"],[151,27,103,27],[151,28,103,28,"d_"],[151,30,103,30],[151,31,103,31],[151,32,103,32],[151,33,103,33],[152,4,104,4],[152,10,104,10,"scalar"],[152,16,104,16],[152,19,104,19,"hasEven"],[152,26,104,26],[152,27,104,27,"p"],[152,28,104,28],[152,29,104,29,"y"],[152,30,104,30],[152,31,104,31],[152,34,104,34,"d_"],[152,36,104,36],[152,39,104,39,"Fn"],[152,41,104,41],[152,42,104,42,"neg"],[152,45,104,45],[152,46,104,46,"d_"],[152,48,104,48],[152,49,104,49],[153,4,105,4],[153,11,105,11],[154,6,105,13,"scalar"],[154,12,105,19],[155,6,105,21,"bytes"],[155,11,105,26],[155,13,105,28,"pointToBytes"],[155,25,105,40],[155,26,105,41,"p"],[155,27,105,42],[156,4,105,44],[156,5,105,45],[157,2,106,0],[158,2,107,0],[159,0,108,0],[160,0,109,0],[161,0,110,0],[162,2,111,0],[162,11,111,9,"lift_x"],[162,17,111,15,"lift_x"],[162,18,111,16,"x"],[162,19,111,17],[162,21,111,19],[163,4,112,4],[163,10,112,10,"Fp"],[163,12,112,12],[163,15,112,15,"Fpk1"],[163,19,112,19],[164,4,113,4],[164,8,113,8],[164,9,113,9,"Fp"],[164,11,113,11],[164,12,113,12,"isValidNot0"],[164,23,113,23],[164,24,113,24,"x"],[164,25,113,25],[164,26,113,26],[164,28,114,8],[164,34,114,14],[164,38,114,18,"Error"],[164,43,114,23],[164,44,114,24],[164,70,114,50],[164,71,114,51],[165,4,115,4],[165,10,115,10,"xx"],[165,12,115,12],[165,15,115,15,"Fp"],[165,17,115,17],[165,18,115,18,"create"],[165,24,115,24],[165,25,115,25,"x"],[165,26,115,26],[165,29,115,29,"x"],[165,30,115,30],[165,31,115,31],[166,4,116,4],[166,10,116,10,"c"],[166,11,116,11],[166,14,116,14,"Fp"],[166,16,116,16],[166,17,116,17,"create"],[166,23,116,23],[166,24,116,24,"xx"],[166,26,116,26],[166,29,116,29,"x"],[166,30,116,30],[166,33,116,33,"BigInt"],[166,39,116,39],[166,40,116,40],[166,41,116,41],[166,42,116,42],[166,43,116,43],[166,44,116,44],[166,45,116,45],[167,4,117,4],[167,8,117,8,"y"],[167,9,117,9],[167,12,117,12,"Fp"],[167,14,117,14],[167,15,117,15,"sqrt"],[167,19,117,19],[167,20,117,20,"c"],[167,21,117,21],[167,22,117,22],[167,23,117,23],[167,24,117,24],[168,4,118,4],[169,4,119,4],[170,4,120,4],[170,8,120,8],[170,9,120,9,"hasEven"],[170,16,120,16],[170,17,120,17,"y"],[170,18,120,18],[170,19,120,19],[170,21,121,8,"y"],[170,22,121,9],[170,25,121,12,"Fp"],[170,27,121,14],[170,28,121,15,"neg"],[170,31,121,18],[170,32,121,19,"y"],[170,33,121,20],[170,34,121,21],[171,4,122,4],[171,10,122,10,"p"],[171,11,122,11],[171,14,122,14,"Pointk1"],[171,21,122,21],[171,22,122,22,"fromAffine"],[171,32,122,32],[171,33,122,33],[172,6,122,35,"x"],[172,7,122,36],[173,6,122,38,"y"],[174,4,122,40],[174,5,122,41],[174,6,122,42],[175,4,123,4,"p"],[175,5,123,5],[175,6,123,6,"assertValidity"],[175,20,123,20],[175,21,123,21],[175,22,123,22],[176,4,124,4],[176,11,124,11,"p"],[176,12,124,12],[177,2,125,0],[178,2,126,0],[178,8,126,6,"num"],[178,11,126,9],[178,14,126,12,"bytesToNumberBE"],[178,22,126,27],[178,23,126,27,"bytesToNumberBE"],[178,38,126,27],[179,2,127,0],[180,0,128,0],[181,0,129,0],[182,2,130,0],[182,11,130,9,"challenge"],[182,20,130,18,"challenge"],[182,21,130,19],[182,24,130,22,"args"],[182,28,130,26],[182,30,130,28],[183,4,131,4],[183,11,131,11,"Pointk1"],[183,18,131,18],[183,19,131,19,"Fn"],[183,21,131,21],[183,22,131,22,"create"],[183,28,131,28],[183,29,131,29,"num"],[183,32,131,32],[183,33,131,33,"taggedHash"],[183,43,131,43],[183,44,131,44],[183,63,131,63],[183,65,131,65],[183,68,131,68,"args"],[183,72,131,72],[183,73,131,73],[183,74,131,74],[183,75,131,75],[184,2,132,0],[185,2,133,0],[186,0,134,0],[187,0,135,0],[188,2,136,0],[188,11,136,9,"schnorrGetPublicKey"],[188,30,136,28,"schnorrGetPublicKey"],[188,31,136,29,"secretKey"],[188,40,136,38],[188,42,136,40],[189,4,137,4],[189,11,137,11,"schnorrGetExtPubKey"],[189,30,137,30],[189,31,137,31,"secretKey"],[189,40,137,40],[189,41,137,41],[189,42,137,42,"bytes"],[189,47,137,47],[189,48,137,48],[189,49,137,49],[190,2,138,0],[191,2,139,0],[192,0,140,0],[193,0,141,0],[194,0,142,0],[195,2,143,0],[195,11,143,9,"schnorrSign"],[195,22,143,20,"schnorrSign"],[195,23,143,21,"message"],[195,30,143,28],[195,32,143,30,"secretKey"],[195,41,143,39],[195,43,143,41,"auxRand"],[195,50,143,48],[195,53,143,51],[195,57,143,51,"randomBytes"],[195,76,143,62],[195,77,143,62,"randomBytes"],[195,88,143,62],[195,90,143,63],[195,92,143,65],[195,93,143,66],[195,95,143,68],[196,4,144,4],[196,10,144,10],[197,6,144,12,"Fn"],[198,4,144,15],[198,5,144,16],[198,8,144,19,"Pointk1"],[198,15,144,26],[199,4,145,4],[199,10,145,10,"m"],[199,11,145,11],[199,14,145,14],[199,18,145,14,"ensureBytes"],[199,26,145,25],[199,27,145,25,"ensureBytes"],[199,38,145,25],[199,40,145,26],[199,49,145,35],[199,51,145,37,"message"],[199,58,145,44],[199,59,145,45],[200,4,146,4],[200,10,146,10],[201,6,146,12,"bytes"],[201,11,146,17],[201,13,146,19,"px"],[201,15,146,21],[202,6,146,23,"scalar"],[202,12,146,29],[202,14,146,31,"d"],[203,4,146,33],[203,5,146,34],[203,8,146,37,"schnorrGetExtPubKey"],[203,27,146,56],[203,28,146,57,"secretKey"],[203,37,146,66],[203,38,146,67],[203,39,146,68],[203,40,146,69],[204,4,147,4],[204,10,147,10,"a"],[204,11,147,11],[204,14,147,14],[204,18,147,14,"ensureBytes"],[204,26,147,25],[204,27,147,25,"ensureBytes"],[204,38,147,25],[204,40,147,26],[204,49,147,35],[204,51,147,37,"auxRand"],[204,58,147,44],[204,60,147,46],[204,62,147,48],[204,63,147,49],[204,64,147,50],[204,65,147,51],[205,4,148,4],[205,10,148,10,"t"],[205,11,148,11],[205,14,148,14,"Fn"],[205,16,148,16],[205,17,148,17,"toBytes"],[205,24,148,24],[205,25,148,25,"d"],[205,26,148,26],[205,29,148,29,"num"],[205,32,148,32],[205,33,148,33,"taggedHash"],[205,43,148,43],[205,44,148,44],[205,57,148,57],[205,59,148,59,"a"],[205,60,148,60],[205,61,148,61],[205,62,148,62],[205,63,148,63],[205,64,148,64],[205,65,148,65],[206,4,149,4],[206,10,149,10,"rand"],[206,14,149,14],[206,17,149,17,"taggedHash"],[206,27,149,27],[206,28,149,28],[206,43,149,43],[206,45,149,45,"t"],[206,46,149,46],[206,48,149,48,"px"],[206,50,149,50],[206,52,149,52,"m"],[206,53,149,53],[206,54,149,54],[206,55,149,55],[206,56,149,56],[207,4,150,4],[208,4,151,4],[208,10,151,10],[209,6,151,12,"bytes"],[209,11,151,17],[209,13,151,19,"rx"],[209,15,151,21],[210,6,151,23,"scalar"],[210,12,151,29],[210,14,151,31,"k"],[211,4,151,33],[211,5,151,34],[211,8,151,37,"schnorrGetExtPubKey"],[211,27,151,56],[211,28,151,57,"rand"],[211,32,151,61],[211,33,151,62],[212,4,152,4],[212,10,152,10,"e"],[212,11,152,11],[212,14,152,14,"challenge"],[212,23,152,23],[212,24,152,24,"rx"],[212,26,152,26],[212,28,152,28,"px"],[212,30,152,30],[212,32,152,32,"m"],[212,33,152,33],[212,34,152,34],[212,35,152,35],[212,36,152,36],[213,4,153,4],[213,10,153,10,"sig"],[213,13,153,13],[213,16,153,16],[213,20,153,20,"Uint8Array"],[213,30,153,30],[213,31,153,31],[213,33,153,33],[213,34,153,34],[213,35,153,35],[213,36,153,36],[214,4,154,4,"sig"],[214,7,154,7],[214,8,154,8,"set"],[214,11,154,11],[214,12,154,12,"rx"],[214,14,154,14],[214,16,154,16],[214,17,154,17],[214,18,154,18],[215,4,155,4,"sig"],[215,7,155,7],[215,8,155,8,"set"],[215,11,155,11],[215,12,155,12,"Fn"],[215,14,155,14],[215,15,155,15,"toBytes"],[215,22,155,22],[215,23,155,23,"Fn"],[215,25,155,25],[215,26,155,26,"create"],[215,32,155,32],[215,33,155,33,"k"],[215,34,155,34],[215,37,155,37,"e"],[215,38,155,38],[215,41,155,41,"d"],[215,42,155,42],[215,43,155,43],[215,44,155,44],[215,46,155,46],[215,48,155,48],[215,49,155,49],[216,4,156,4],[217,4,157,4],[217,8,157,8],[217,9,157,9,"schnorrVerify"],[217,22,157,22],[217,23,157,23,"sig"],[217,26,157,26],[217,28,157,28,"m"],[217,29,157,29],[217,31,157,31,"px"],[217,33,157,33],[217,34,157,34],[217,36,158,8],[217,42,158,14],[217,46,158,18,"Error"],[217,51,158,23],[217,52,158,24],[217,86,158,58],[217,87,158,59],[218,4,159,4],[218,11,159,11,"sig"],[218,14,159,14],[219,2,160,0],[220,2,161,0],[221,0,162,0],[222,0,163,0],[223,0,164,0],[224,2,165,0],[224,11,165,9,"schnorrVerify"],[224,24,165,22,"schnorrVerify"],[224,25,165,23,"signature"],[224,34,165,32],[224,36,165,34,"message"],[224,43,165,41],[224,45,165,43,"publicKey"],[224,54,165,52],[224,56,165,54],[225,4,166,4],[225,10,166,10],[226,6,166,12,"Fn"],[226,8,166,14],[227,6,166,16,"BASE"],[228,4,166,21],[228,5,166,22],[228,8,166,25,"Pointk1"],[228,15,166,32],[229,4,167,4],[229,10,167,10,"sig"],[229,13,167,13],[229,16,167,16],[229,20,167,16,"ensureBytes"],[229,28,167,27],[229,29,167,27,"ensureBytes"],[229,40,167,27],[229,42,167,28],[229,53,167,39],[229,55,167,41,"signature"],[229,64,167,50],[229,66,167,52],[229,68,167,54],[229,69,167,55],[230,4,168,4],[230,10,168,10,"m"],[230,11,168,11],[230,14,168,14],[230,18,168,14,"ensureBytes"],[230,26,168,25],[230,27,168,25,"ensureBytes"],[230,38,168,25],[230,40,168,26],[230,49,168,35],[230,51,168,37,"message"],[230,58,168,44],[230,59,168,45],[231,4,169,4],[231,10,169,10,"pub"],[231,13,169,13],[231,16,169,16],[231,20,169,16,"ensureBytes"],[231,28,169,27],[231,29,169,27,"ensureBytes"],[231,40,169,27],[231,42,169,28],[231,53,169,39],[231,55,169,41,"publicKey"],[231,64,169,50],[231,66,169,52],[231,68,169,54],[231,69,169,55],[232,4,170,4],[232,8,170,8],[233,6,171,8],[233,12,171,14,"P"],[233,13,171,15],[233,16,171,18,"lift_x"],[233,22,171,24],[233,23,171,25,"num"],[233,26,171,28],[233,27,171,29,"pub"],[233,30,171,32],[233,31,171,33],[233,32,171,34],[233,33,171,35],[233,34,171,36],[234,6,172,8],[234,12,172,14,"r"],[234,13,172,15],[234,16,172,18,"num"],[234,19,172,21],[234,20,172,22,"sig"],[234,23,172,25],[234,24,172,26,"subarray"],[234,32,172,34],[234,33,172,35],[234,34,172,36],[234,36,172,38],[234,38,172,40],[234,39,172,41],[234,40,172,42],[234,41,172,43],[234,42,172,44],[235,6,173,8],[235,10,173,12],[235,11,173,13],[235,15,173,13,"inRange"],[235,23,173,20],[235,24,173,20,"inRange"],[235,31,173,20],[235,33,173,21,"r"],[235,34,173,22],[235,36,173,24,"_1n"],[235,39,173,27],[235,41,173,29,"secp256k1_CURVE"],[235,56,173,44],[235,57,173,45,"p"],[235,58,173,46],[235,59,173,47],[235,61,174,12],[235,68,174,19],[235,73,174,24],[236,6,175,8],[236,12,175,14,"s"],[236,13,175,15],[236,16,175,18,"num"],[236,19,175,21],[236,20,175,22,"sig"],[236,23,175,25],[236,24,175,26,"subarray"],[236,32,175,34],[236,33,175,35],[236,35,175,37],[236,37,175,39],[236,39,175,41],[236,40,175,42],[236,41,175,43],[236,42,175,44],[236,43,175,45],[237,6,176,8],[237,10,176,12],[237,11,176,13],[237,15,176,13,"inRange"],[237,23,176,20],[237,24,176,20,"inRange"],[237,31,176,20],[237,33,176,21,"s"],[237,34,176,22],[237,36,176,24,"_1n"],[237,39,176,27],[237,41,176,29,"secp256k1_CURVE"],[237,56,176,44],[237,57,176,45,"n"],[237,58,176,46],[237,59,176,47],[237,61,177,12],[237,68,177,19],[237,73,177,24],[238,6,178,8],[239,6,179,8],[239,12,179,14,"e"],[239,13,179,15],[239,16,179,18,"challenge"],[239,25,179,27],[239,26,179,28,"Fn"],[239,28,179,30],[239,29,179,31,"toBytes"],[239,36,179,38],[239,37,179,39,"r"],[239,38,179,40],[239,39,179,41],[239,41,179,43,"pointToBytes"],[239,53,179,55],[239,54,179,56,"P"],[239,55,179,57],[239,56,179,58],[239,58,179,60,"m"],[239,59,179,61],[239,60,179,62],[240,6,180,8],[241,6,181,8],[241,12,181,14,"R"],[241,13,181,15],[241,16,181,18,"BASE"],[241,20,181,22],[241,21,181,23,"multiplyUnsafe"],[241,35,181,37],[241,36,181,38,"s"],[241,37,181,39],[241,38,181,40],[241,39,181,41,"add"],[241,42,181,44],[241,43,181,45,"P"],[241,44,181,46],[241,45,181,47,"multiplyUnsafe"],[241,59,181,61],[241,60,181,62,"Fn"],[241,62,181,64],[241,63,181,65,"neg"],[241,66,181,68],[241,67,181,69,"e"],[241,68,181,70],[241,69,181,71],[241,70,181,72],[241,71,181,73],[242,6,182,8],[242,12,182,14],[243,8,182,16,"x"],[243,9,182,17],[244,8,182,19,"y"],[245,6,182,21],[245,7,182,22],[245,10,182,25,"R"],[245,11,182,26],[245,12,182,27,"toAffine"],[245,20,182,35],[245,21,182,36],[245,22,182,37],[246,6,183,8],[247,6,184,8],[247,10,184,12,"R"],[247,11,184,13],[247,12,184,14,"is0"],[247,15,184,17],[247,16,184,18],[247,17,184,19],[247,21,184,23],[247,22,184,24,"hasEven"],[247,29,184,31],[247,30,184,32,"y"],[247,31,184,33],[247,32,184,34],[247,36,184,38,"x"],[247,37,184,39],[247,42,184,44,"r"],[247,43,184,45],[247,45,185,12],[247,52,185,19],[247,57,185,24],[248,6,186,8],[248,13,186,15],[248,17,186,19],[249,4,187,4],[249,5,187,5],[249,6,188,4],[249,13,188,11,"error"],[249,18,188,16],[249,20,188,18],[250,6,189,8],[250,13,189,15],[250,18,189,20],[251,4,190,4],[252,2,191,0],[253,2,192,0],[254,0,193,0],[255,0,194,0],[256,0,195,0],[257,0,196,0],[258,0,197,0],[259,0,198,0],[260,0,199,0],[261,0,200,0],[262,0,201,0],[263,0,202,0],[264,0,203,0],[265,0,204,0],[266,2,205,7],[266,8,205,13,"schnorr"],[266,15,205,20],[266,18,205,23],[266,33,205,39],[266,34,205,40],[266,40,205,46],[267,4,206,4],[267,10,206,10,"size"],[267,14,206,14],[267,17,206,17],[267,19,206,19],[268,4,207,4],[268,10,207,10,"seedLength"],[268,20,207,20],[268,23,207,23],[268,25,207,25],[269,4,208,4],[269,10,208,10,"randomSecretKey"],[269,25,208,25],[269,28,208,28,"randomSecretKey"],[269,29,208,29,"seed"],[269,33,208,33],[269,36,208,36],[269,40,208,36,"randomBytes"],[269,59,208,47],[269,60,208,47,"randomBytes"],[269,71,208,47],[269,73,208,48,"seedLength"],[269,83,208,58],[269,84,208,59],[269,89,208,64],[270,6,209,8],[270,13,209,15],[270,17,209,15,"mapHashToField"],[270,35,209,29],[270,36,209,29,"mapHashToField"],[270,50,209,29],[270,52,209,30,"seed"],[270,56,209,34],[270,58,209,36,"secp256k1_CURVE"],[270,73,209,51],[270,74,209,52,"n"],[270,75,209,53],[270,76,209,54],[271,4,210,4],[271,5,210,5],[272,4,211,4],[273,4,212,4,"secp256k1"],[273,13,212,13],[273,14,212,14,"utils"],[273,19,212,19],[273,20,212,20,"randomSecretKey"],[273,35,212,35],[274,4,213,4],[274,13,213,13,"keygen"],[274,19,213,19,"keygen"],[274,20,213,20,"seed"],[274,24,213,24],[274,26,213,26],[275,6,214,8],[275,12,214,14,"secretKey"],[275,21,214,23],[275,24,214,26,"randomSecretKey"],[275,39,214,41],[275,40,214,42,"seed"],[275,44,214,46],[275,45,214,47],[276,6,215,8],[276,13,215,15],[277,8,215,17,"secretKey"],[277,17,215,26],[278,8,215,28,"publicKey"],[278,17,215,37],[278,19,215,39,"schnorrGetPublicKey"],[278,38,215,58],[278,39,215,59,"secretKey"],[278,48,215,68],[279,6,215,70],[279,7,215,71],[280,4,216,4],[281,4,217,4],[281,11,217,11],[282,6,218,8,"keygen"],[282,12,218,14],[283,6,219,8,"getPublicKey"],[283,18,219,20],[283,20,219,22,"schnorrGetPublicKey"],[283,39,219,41],[284,6,220,8,"sign"],[284,10,220,12],[284,12,220,14,"schnorrSign"],[284,23,220,25],[285,6,221,8,"verify"],[285,12,221,14],[285,14,221,16,"schnorrVerify"],[285,27,221,29],[286,6,222,8,"Point"],[286,11,222,13],[286,13,222,15,"Pointk1"],[286,20,222,22],[287,6,223,8,"utils"],[287,11,223,13],[287,13,223,15],[288,8,224,12,"randomSecretKey"],[288,23,224,27],[288,25,224,29,"randomSecretKey"],[288,40,224,44],[289,8,225,12,"randomPrivateKey"],[289,24,225,28],[289,26,225,30,"randomSecretKey"],[289,41,225,45],[290,8,226,12,"taggedHash"],[290,18,226,22],[291,8,227,12],[292,8,228,12,"lift_x"],[292,14,228,18],[293,8,229,12,"pointToBytes"],[293,20,229,24],[294,8,230,12,"numberToBytesBE"],[294,23,230,27],[294,25,230,12,"numberToBytesBE"],[294,33,230,27],[294,34,230,27,"numberToBytesBE"],[294,49,230,27],[295,8,231,12,"bytesToNumberBE"],[295,23,231,27],[295,25,231,12,"bytesToNumberBE"],[295,33,231,27],[295,34,231,27,"bytesToNumberBE"],[295,49,231,27],[296,8,232,12,"mod"],[296,11,232,15],[296,13,232,12,"mod"],[296,31,232,15],[296,32,232,15,"mod"],[297,6,233,8],[297,7,233,9],[298,6,234,8,"lengths"],[298,13,234,15],[298,15,234,17],[299,8,235,12,"secretKey"],[299,17,235,21],[299,19,235,23,"size"],[299,23,235,27],[300,8,236,12,"publicKey"],[300,17,236,21],[300,19,236,23,"size"],[300,23,236,27],[301,8,237,12,"publicKeyHasPrefix"],[301,26,237,30],[301,28,237,32],[301,33,237,37],[302,8,238,12,"signature"],[302,17,238,21],[302,19,238,23,"size"],[302,23,238,27],[302,26,238,30],[302,27,238,31],[303,8,239,12,"seed"],[303,12,239,16],[303,14,239,18,"seedLength"],[304,6,240,8],[305,4,241,4],[305,5,241,5],[306,2,242,0],[306,3,242,1],[306,5,242,3],[306,6,242,4],[307,2,243,0],[307,8,243,6,"isoMap"],[307,14,243,12],[307,17,243,15],[307,32,243,31],[307,33,243,32],[307,39,243,38],[307,43,243,38,"isogenyMap"],[307,65,243,48],[307,66,243,48,"isogenyMap"],[307,76,243,48],[307,78,243,49,"Fpk1"],[307,82,243,53],[307,84,243,55],[308,2,244,4],[309,2,245,4],[309,3,246,8],[309,71,246,76],[309,73,247,8],[309,140,247,75],[309,142,248,8],[309,210,248,76],[309,212,249,8],[309,280,249,76],[309,281,250,5],[310,2,251,4],[311,2,252,4],[311,3,253,8],[311,71,253,76],[311,73,254,8],[311,141,254,76],[311,143,255,8],[311,211,255,76],[311,212,255,78],[312,2,255,78],[312,3,256,5],[313,2,257,4],[314,2,258,4],[314,3,259,8],[314,71,259,76],[314,73,260,8],[314,141,260,76],[314,143,261,8],[314,211,261,76],[314,213,262,8],[314,281,262,76],[314,282,263,5],[315,2,264,4],[316,2,265,4],[316,3,266,8],[316,71,266,76],[316,73,267,8],[316,141,267,76],[316,143,268,8],[316,211,268,76],[316,213,269,8],[316,281,269,76],[316,282,269,78],[317,2,269,78],[317,3,270,5],[317,4,271,1],[317,5,271,2,"map"],[317,8,271,5],[317,9,271,7,"i"],[317,10,271,8],[317,14,271,13,"i"],[317,15,271,14],[317,16,271,15,"map"],[317,19,271,18],[317,20,271,20,"j"],[317,21,271,21],[317,25,271,26,"BigInt"],[317,31,271,32],[317,32,271,33,"j"],[317,33,271,34],[317,34,271,35],[317,35,271,36],[317,36,271,37],[317,37,271,38],[317,39,271,40],[317,40,271,41],[318,2,272,0],[318,8,272,6,"mapSWU"],[318,14,272,12],[318,17,272,15],[318,32,272,31],[318,33,272,32],[318,39,272,38],[318,43,272,38,"mapToCurveSimpleSWU"],[318,65,272,57],[318,66,272,57,"mapToCurveSimpleSWU"],[318,85,272,57],[318,87,272,58,"Fpk1"],[318,91,272,62],[318,93,272,64],[319,4,273,4,"A"],[319,5,273,5],[319,7,273,7,"BigInt"],[319,13,273,13],[319,14,273,14],[319,82,273,82],[319,83,273,83],[320,4,274,4,"B"],[320,5,274,5],[320,7,274,7,"BigInt"],[320,13,274,13],[320,14,274,14],[320,20,274,20],[320,21,274,21],[321,4,275,4,"Z"],[321,5,275,5],[321,7,275,7,"Fpk1"],[321,11,275,11],[321,12,275,12,"create"],[321,18,275,18],[321,19,275,19,"BigInt"],[321,25,275,25],[321,26,275,26],[321,31,275,31],[321,32,275,32],[322,2,276,0],[322,3,276,1],[322,4,276,2],[322,6,276,4],[322,7,276,5],[323,2,277,0],[324,2,278,7],[324,8,278,13,"secp256k1_hasher"],[324,24,278,29],[324,27,278,32],[324,42,278,48],[324,43,278,49],[324,49,278,55],[324,53,278,55,"createHasher"],[324,75,278,67],[324,76,278,67,"createHasher"],[324,88,278,67],[324,90,278,68,"secp256k1"],[324,99,278,77],[324,100,278,78,"Point"],[324,105,278,83],[324,107,278,86,"scalars"],[324,114,278,93],[324,118,278,98],[325,4,279,4],[325,10,279,10],[326,6,279,12,"x"],[326,7,279,13],[327,6,279,15,"y"],[328,4,279,17],[328,5,279,18],[328,8,279,21,"mapSWU"],[328,14,279,27],[328,15,279,28,"Fpk1"],[328,19,279,32],[328,20,279,33,"create"],[328,26,279,39],[328,27,279,40,"scalars"],[328,34,279,47],[328,35,279,48],[328,36,279,49],[328,37,279,50],[328,38,279,51],[328,39,279,52],[329,4,280,4],[329,11,280,11,"isoMap"],[329,17,280,17],[329,18,280,18,"x"],[329,19,280,19],[329,21,280,21,"y"],[329,22,280,22],[329,23,280,23],[330,2,281,0],[330,3,281,1],[330,5,281,3],[331,4,282,4,"DST"],[331,7,282,7],[331,9,282,9],[331,41,282,41],[332,4,283,4,"encodeDST"],[332,13,283,13],[332,15,283,15],[332,47,283,47],[333,4,284,4,"p"],[333,5,284,5],[333,7,284,7,"Fpk1"],[333,11,284,11],[333,12,284,12,"ORDER"],[333,17,284,17],[334,4,285,4,"m"],[334,5,285,5],[334,7,285,7],[334,8,285,8],[335,4,286,4,"k"],[335,5,286,5],[335,7,286,7],[335,10,286,10],[336,4,287,4,"expand"],[336,10,287,10],[336,12,287,12],[336,17,287,17],[337,4,288,4,"hash"],[337,8,288,8],[337,10,288,10,"sha256"],[337,28,288,16],[337,29,288,16,"sha256"],[338,2,289,0],[338,3,289,1],[338,4,289,2],[338,6,289,4],[338,7,289,5],[339,2,290,0],[340,2,291,7],[340,8,291,13,"hashToCurve"],[340,19,291,24],[340,22,291,27],[340,37,291,43],[340,38,291,44],[340,44,291,50,"secp256k1_hasher"],[340,60,291,66],[340,61,291,67,"hashToCurve"],[340,72,291,78],[340,74,291,80],[340,75,291,81],[341,2,292,0],[342,2,293,7],[342,8,293,13,"encodeToCurve"],[342,21,293,26],[342,24,293,29],[342,39,293,45],[342,40,293,46],[342,46,293,52,"secp256k1_hasher"],[342,62,293,68],[342,63,293,69,"encodeToCurve"],[342,76,293,82],[342,78,293,84],[342,79,293,85],[343,0,293,86],[343,3]],"functionMap":{"names":["<global>","sqrtMod","taggedHash","pointToBytes","<anonymous>","hasEven","schnorrGetExtPubKey","lift_x","challenge","schnorrGetPublicKey","schnorrSign","schnorrVerify","randomSecretKey","keygen","map$argument_0","i.map$argument_0","createHasher$argument_1"],"mappings":"AAA;ACyC;CDuB;AEqB;CFQ;qBGE,uCH;iCIC,qBJ;gBKC,sBL;AME;CNM;AOK;CPc;AQK;CRE;ASI;CTE;AUK;CViB;AWK;CX0B;wCIc;4BQG;KRE;ISG;KTG;CJ0B;gCIC;MU4B,aC,gBD,CV,EJ;gCIC;EJI;iDIE,oCY;CZG;EJQ;4CIE,kCJ;8CIE,oCJ"},"hasCjsExports":false},"type":"js/module"}]}