{"dependencies":[{"name":"./pbkdf2.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":9,"column":20,"index":252},"end":{"line":9,"column":42,"index":274}}],"key":"pieO4DdgpjpREWgvAyMQvtohf+A=","exportNames":["*"],"imports":1}},{"name":"./sha2.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":10,"column":18,"index":294},"end":{"line":10,"column":38,"index":314}}],"key":"6/wC6kPCuE9AQ+btrgtq2UN1TnM=","exportNames":["*"],"imports":1}},{"name":"./utils.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":12,"column":19,"index":354},"end":{"line":12,"column":40,"index":375}}],"key":"v6h+l9IeOWbEcXdtKQqd2f4now4=","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 exports.scrypt = scrypt;\n exports.scryptAsync = scryptAsync;\n /**\n * RFC 7914 Scrypt KDF. Can be used to create a key from password and salt.\n * @module\n */\n const pbkdf2_ts_1 = require(_dependencyMap[0], \"./pbkdf2.js\");\n const sha2_ts_1 = require(_dependencyMap[1], \"./sha2.js\");\n // prettier-ignore\n const utils_ts_1 = require(_dependencyMap[2], \"./utils.js\");\n // The main Scrypt loop: uses Salsa extensively.\n // Six versions of the function were tried, this is the fastest one.\n // prettier-ignore\n function XorAndSalsa(prev, pi, input, ii, out, oi) {\n // Based on https://cr.yp.to/salsa20.html\n // Xor blocks\n let y00 = prev[pi++] ^ input[ii++],\n y01 = prev[pi++] ^ input[ii++];\n let y02 = prev[pi++] ^ input[ii++],\n y03 = prev[pi++] ^ input[ii++];\n let y04 = prev[pi++] ^ input[ii++],\n y05 = prev[pi++] ^ input[ii++];\n let y06 = prev[pi++] ^ input[ii++],\n y07 = prev[pi++] ^ input[ii++];\n let y08 = prev[pi++] ^ input[ii++],\n y09 = prev[pi++] ^ input[ii++];\n let y10 = prev[pi++] ^ input[ii++],\n y11 = prev[pi++] ^ input[ii++];\n let y12 = prev[pi++] ^ input[ii++],\n y13 = prev[pi++] ^ input[ii++];\n let y14 = prev[pi++] ^ input[ii++],\n y15 = prev[pi++] ^ input[ii++];\n // Save state to temporary variables (salsa)\n let x00 = y00,\n x01 = y01,\n x02 = y02,\n x03 = y03,\n x04 = y04,\n x05 = y05,\n x06 = y06,\n x07 = y07,\n x08 = y08,\n x09 = y09,\n x10 = y10,\n x11 = y11,\n x12 = y12,\n x13 = y13,\n x14 = y14,\n x15 = y15;\n // Main loop (salsa)\n for (let i = 0; i < 8; i += 2) {\n x04 ^= (0, utils_ts_1.rotl)(x00 + x12 | 0, 7);\n x08 ^= (0, utils_ts_1.rotl)(x04 + x00 | 0, 9);\n x12 ^= (0, utils_ts_1.rotl)(x08 + x04 | 0, 13);\n x00 ^= (0, utils_ts_1.rotl)(x12 + x08 | 0, 18);\n x09 ^= (0, utils_ts_1.rotl)(x05 + x01 | 0, 7);\n x13 ^= (0, utils_ts_1.rotl)(x09 + x05 | 0, 9);\n x01 ^= (0, utils_ts_1.rotl)(x13 + x09 | 0, 13);\n x05 ^= (0, utils_ts_1.rotl)(x01 + x13 | 0, 18);\n x14 ^= (0, utils_ts_1.rotl)(x10 + x06 | 0, 7);\n x02 ^= (0, utils_ts_1.rotl)(x14 + x10 | 0, 9);\n x06 ^= (0, utils_ts_1.rotl)(x02 + x14 | 0, 13);\n x10 ^= (0, utils_ts_1.rotl)(x06 + x02 | 0, 18);\n x03 ^= (0, utils_ts_1.rotl)(x15 + x11 | 0, 7);\n x07 ^= (0, utils_ts_1.rotl)(x03 + x15 | 0, 9);\n x11 ^= (0, utils_ts_1.rotl)(x07 + x03 | 0, 13);\n x15 ^= (0, utils_ts_1.rotl)(x11 + x07 | 0, 18);\n x01 ^= (0, utils_ts_1.rotl)(x00 + x03 | 0, 7);\n x02 ^= (0, utils_ts_1.rotl)(x01 + x00 | 0, 9);\n x03 ^= (0, utils_ts_1.rotl)(x02 + x01 | 0, 13);\n x00 ^= (0, utils_ts_1.rotl)(x03 + x02 | 0, 18);\n x06 ^= (0, utils_ts_1.rotl)(x05 + x04 | 0, 7);\n x07 ^= (0, utils_ts_1.rotl)(x06 + x05 | 0, 9);\n x04 ^= (0, utils_ts_1.rotl)(x07 + x06 | 0, 13);\n x05 ^= (0, utils_ts_1.rotl)(x04 + x07 | 0, 18);\n x11 ^= (0, utils_ts_1.rotl)(x10 + x09 | 0, 7);\n x08 ^= (0, utils_ts_1.rotl)(x11 + x10 | 0, 9);\n x09 ^= (0, utils_ts_1.rotl)(x08 + x11 | 0, 13);\n x10 ^= (0, utils_ts_1.rotl)(x09 + x08 | 0, 18);\n x12 ^= (0, utils_ts_1.rotl)(x15 + x14 | 0, 7);\n x13 ^= (0, utils_ts_1.rotl)(x12 + x15 | 0, 9);\n x14 ^= (0, utils_ts_1.rotl)(x13 + x12 | 0, 13);\n x15 ^= (0, utils_ts_1.rotl)(x14 + x13 | 0, 18);\n }\n // Write output (salsa)\n out[oi++] = y00 + x00 | 0;\n out[oi++] = y01 + x01 | 0;\n out[oi++] = y02 + x02 | 0;\n out[oi++] = y03 + x03 | 0;\n out[oi++] = y04 + x04 | 0;\n out[oi++] = y05 + x05 | 0;\n out[oi++] = y06 + x06 | 0;\n out[oi++] = y07 + x07 | 0;\n out[oi++] = y08 + x08 | 0;\n out[oi++] = y09 + x09 | 0;\n out[oi++] = y10 + x10 | 0;\n out[oi++] = y11 + x11 | 0;\n out[oi++] = y12 + x12 | 0;\n out[oi++] = y13 + x13 | 0;\n out[oi++] = y14 + x14 | 0;\n out[oi++] = y15 + x15 | 0;\n }\n function BlockMix(input, ii, out, oi, r) {\n // The block B is r 128-byte chunks (which is equivalent of 2r 64-byte chunks)\n let head = oi + 0;\n let tail = oi + 16 * r;\n for (let i = 0; i < 16; i++) out[tail + i] = input[ii + (2 * r - 1) * 16 + i]; // X ← B[2r−1]\n for (let i = 0; i < r; i++, head += 16, ii += 16) {\n // We write odd & even Yi at same time. Even: 0bXXXXX0 Odd: 0bXXXXX1\n XorAndSalsa(out, tail, input, ii, out, head); // head[i] = Salsa(blockIn[2*i] ^ tail[i-1])\n if (i > 0) tail += 16; // First iteration overwrites tmp value in tail\n XorAndSalsa(out, head, input, ii += 16, out, tail); // tail[i] = Salsa(blockIn[2*i+1] ^ head[i])\n }\n }\n // Common prologue and epilogue for sync/async functions\n function scryptInit(password, salt, _opts) {\n // Maxmem - 1GB+1KB by default\n const opts = (0, utils_ts_1.checkOpts)({\n dkLen: 32,\n asyncTick: 10,\n maxmem: 1024 ** 3 + 1024\n }, _opts);\n const {\n N,\n r,\n p,\n dkLen,\n asyncTick,\n maxmem,\n onProgress\n } = opts;\n (0, utils_ts_1.anumber)(N);\n (0, utils_ts_1.anumber)(r);\n (0, utils_ts_1.anumber)(p);\n (0, utils_ts_1.anumber)(dkLen);\n (0, utils_ts_1.anumber)(asyncTick);\n (0, utils_ts_1.anumber)(maxmem);\n if (onProgress !== undefined && typeof onProgress !== 'function') throw new Error('progressCb should be function');\n const blockSize = 128 * r;\n const blockSize32 = blockSize / 4;\n // Max N is 2^32 (Integrify is 32-bit). Real limit is 2^22: JS engines Uint8Array limit is 4GB in 2024.\n // Spec check `N >= 2^(blockSize / 8)` is not done for compat with popular libs,\n // which used incorrect r: 1, p: 8. Also, the check seems to be a spec error:\n // https://www.rfc-editor.org/errata_search.php?rfc=7914\n const pow32 = Math.pow(2, 32);\n if (N <= 1 || (N & N - 1) !== 0 || N > pow32) {\n throw new Error('Scrypt: N must be larger than 1, a power of 2, and less than 2^32');\n }\n if (p < 0 || p > (pow32 - 1) * 32 / blockSize) {\n throw new Error('Scrypt: p must be a positive integer less than or equal to ((2^32 - 1) * 32) / (128 * r)');\n }\n if (dkLen < 0 || dkLen > (pow32 - 1) * 32) {\n throw new Error('Scrypt: dkLen should be positive integer less than or equal to (2^32 - 1) * 32');\n }\n const memUsed = blockSize * (N + p);\n if (memUsed > maxmem) {\n throw new Error('Scrypt: memused is bigger than maxMem. Expected 128 * r * (N + p) > maxmem of ' + maxmem);\n }\n // [B0...Bp−1] ← PBKDF2HMAC-SHA256(Passphrase, Salt, 1, blockSize*ParallelizationFactor)\n // Since it has only one iteration there is no reason to use async variant\n const B = (0, pbkdf2_ts_1.pbkdf2)(sha2_ts_1.sha256, password, salt, {\n c: 1,\n dkLen: blockSize * p\n });\n const B32 = (0, utils_ts_1.u32)(B);\n // Re-used between parallel iterations. Array(iterations) of B\n const V = (0, utils_ts_1.u32)(new Uint8Array(blockSize * N));\n const tmp = (0, utils_ts_1.u32)(new Uint8Array(blockSize));\n let blockMixCb = () => {};\n if (onProgress) {\n const totalBlockMix = 2 * N * p;\n // Invoke callback if progress changes from 10.01 to 10.02\n // Allows to draw smooth progress bar on up to 8K screen\n const callbackPer = Math.max(Math.floor(totalBlockMix / 10000), 1);\n let blockMixCnt = 0;\n blockMixCb = () => {\n blockMixCnt++;\n if (onProgress && (!(blockMixCnt % callbackPer) || blockMixCnt === totalBlockMix)) onProgress(blockMixCnt / totalBlockMix);\n };\n }\n return {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb,\n asyncTick\n };\n }\n function scryptOutput(password, dkLen, B, V, tmp) {\n const res = (0, pbkdf2_ts_1.pbkdf2)(sha2_ts_1.sha256, password, B, {\n c: 1,\n dkLen\n });\n (0, utils_ts_1.clean)(B, V, tmp);\n return res;\n }\n /**\n * Scrypt KDF from RFC 7914.\n * @param password - pass\n * @param salt - salt\n * @param opts - parameters\n * - `N` is cpu/mem work factor (power of 2 e.g. 2**18)\n * - `r` is block size (8 is common), fine-tunes sequential memory read size and performance\n * - `p` is parallelization factor (1 is common)\n * - `dkLen` is output key length in bytes e.g. 32.\n * - `asyncTick` - (default: 10) max time in ms for which async function can block execution\n * - `maxmem` - (default: `1024 ** 3 + 1024` aka 1GB+1KB). A limit that the app could use for scrypt\n * - `onProgress` - callback function that would be executed for progress report\n * @returns Derived key\n * @example\n * scrypt('password', 'salt', { N: 2**18, r: 8, p: 1, dkLen: 32 });\n */\n function scrypt(password, salt, opts) {\n const {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb\n } = scryptInit(password, salt, opts);\n (0, utils_ts_1.swap32IfBE)(B32);\n for (let pi = 0; pi < p; pi++) {\n const Pi = blockSize32 * pi;\n for (let i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n for (let i = 0, pos = 0; i < N - 1; i++) {\n BlockMix(V, pos, V, pos += blockSize32, r); // V[i] = BlockMix(V[i-1]);\n blockMixCb();\n }\n BlockMix(V, (N - 1) * blockSize32, B32, Pi, r); // Process last element\n blockMixCb();\n for (let i = 0; i < N; i++) {\n // First u32 of the last 64-byte block (u32 is LE)\n const j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (let k = 0; k < blockSize32; k++) tmp[k] = B32[Pi + k] ^ V[j * blockSize32 + k]; // tmp = B ^ V[j]\n BlockMix(tmp, 0, B32, Pi, r); // B = BlockMix(B ^ V[j])\n blockMixCb();\n }\n }\n (0, utils_ts_1.swap32IfBE)(B32);\n return scryptOutput(password, dkLen, B, V, tmp);\n }\n /**\n * Scrypt KDF from RFC 7914. Async version.\n * @example\n * await scryptAsync('password', 'salt', { N: 2**18, r: 8, p: 1, dkLen: 32 });\n */\n async function scryptAsync(password, salt, opts) {\n const {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb,\n asyncTick\n } = scryptInit(password, salt, opts);\n (0, utils_ts_1.swap32IfBE)(B32);\n for (let pi = 0; pi < p; pi++) {\n const Pi = blockSize32 * pi;\n for (let i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n let pos = 0;\n await (0, utils_ts_1.asyncLoop)(N - 1, asyncTick, () => {\n BlockMix(V, pos, V, pos += blockSize32, r); // V[i] = BlockMix(V[i-1]);\n blockMixCb();\n });\n BlockMix(V, (N - 1) * blockSize32, B32, Pi, r); // Process last element\n blockMixCb();\n await (0, utils_ts_1.asyncLoop)(N, asyncTick, () => {\n // First u32 of the last 64-byte block (u32 is LE)\n const j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (let k = 0; k < blockSize32; k++) tmp[k] = B32[Pi + k] ^ V[j * blockSize32 + k]; // tmp = B ^ V[j]\n BlockMix(tmp, 0, B32, Pi, r); // B = BlockMix(B ^ V[j])\n blockMixCb();\n });\n }\n (0, utils_ts_1.swap32IfBE)(B32);\n return scryptOutput(password, dkLen, B, V, tmp);\n }\n});","lineCount":300,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"scrypt"],[7,16,3,14],[7,19,3,17,"scrypt"],[7,25,3,23],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"scryptAsync"],[8,21,4,19],[8,24,4,22,"scryptAsync"],[8,35,4,33],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,2,9,0],[13,8,9,6,"pbkdf2_ts_1"],[13,19,9,17],[13,22,9,20,"require"],[13,29,9,27],[13,30,9,27,"_dependencyMap"],[13,44,9,27],[13,62,9,41],[13,63,9,42],[14,2,10,0],[14,8,10,6,"sha2_ts_1"],[14,17,10,15],[14,20,10,18,"require"],[14,27,10,25],[14,28,10,25,"_dependencyMap"],[14,42,10,25],[14,58,10,37],[14,59,10,38],[15,2,11,0],[16,2,12,0],[16,8,12,6,"utils_ts_1"],[16,18,12,16],[16,21,12,19,"require"],[16,28,12,26],[16,29,12,26,"_dependencyMap"],[16,43,12,26],[16,60,12,39],[16,61,12,40],[17,2,13,0],[18,2,14,0],[19,2,15,0],[20,2,16,0],[20,11,16,9,"XorAndSalsa"],[20,22,16,20,"XorAndSalsa"],[20,23,16,21,"prev"],[20,27,16,25],[20,29,16,27,"pi"],[20,31,16,29],[20,33,16,31,"input"],[20,38,16,36],[20,40,16,38,"ii"],[20,42,16,40],[20,44,16,42,"out"],[20,47,16,45],[20,49,16,47,"oi"],[20,51,16,49],[20,53,16,51],[21,4,17,4],[22,4,18,4],[23,4,19,4],[23,8,19,8,"y00"],[23,11,19,11],[23,14,19,14,"prev"],[23,18,19,18],[23,19,19,19,"pi"],[23,21,19,21],[23,23,19,23],[23,24,19,24],[23,27,19,27,"input"],[23,32,19,32],[23,33,19,33,"ii"],[23,35,19,35],[23,37,19,37],[23,38,19,38],[24,6,19,40,"y01"],[24,9,19,43],[24,12,19,46,"prev"],[24,16,19,50],[24,17,19,51,"pi"],[24,19,19,53],[24,21,19,55],[24,22,19,56],[24,25,19,59,"input"],[24,30,19,64],[24,31,19,65,"ii"],[24,33,19,67],[24,35,19,69],[24,36,19,70],[25,4,20,4],[25,8,20,8,"y02"],[25,11,20,11],[25,14,20,14,"prev"],[25,18,20,18],[25,19,20,19,"pi"],[25,21,20,21],[25,23,20,23],[25,24,20,24],[25,27,20,27,"input"],[25,32,20,32],[25,33,20,33,"ii"],[25,35,20,35],[25,37,20,37],[25,38,20,38],[26,6,20,40,"y03"],[26,9,20,43],[26,12,20,46,"prev"],[26,16,20,50],[26,17,20,51,"pi"],[26,19,20,53],[26,21,20,55],[26,22,20,56],[26,25,20,59,"input"],[26,30,20,64],[26,31,20,65,"ii"],[26,33,20,67],[26,35,20,69],[26,36,20,70],[27,4,21,4],[27,8,21,8,"y04"],[27,11,21,11],[27,14,21,14,"prev"],[27,18,21,18],[27,19,21,19,"pi"],[27,21,21,21],[27,23,21,23],[27,24,21,24],[27,27,21,27,"input"],[27,32,21,32],[27,33,21,33,"ii"],[27,35,21,35],[27,37,21,37],[27,38,21,38],[28,6,21,40,"y05"],[28,9,21,43],[28,12,21,46,"prev"],[28,16,21,50],[28,17,21,51,"pi"],[28,19,21,53],[28,21,21,55],[28,22,21,56],[28,25,21,59,"input"],[28,30,21,64],[28,31,21,65,"ii"],[28,33,21,67],[28,35,21,69],[28,36,21,70],[29,4,22,4],[29,8,22,8,"y06"],[29,11,22,11],[29,14,22,14,"prev"],[29,18,22,18],[29,19,22,19,"pi"],[29,21,22,21],[29,23,22,23],[29,24,22,24],[29,27,22,27,"input"],[29,32,22,32],[29,33,22,33,"ii"],[29,35,22,35],[29,37,22,37],[29,38,22,38],[30,6,22,40,"y07"],[30,9,22,43],[30,12,22,46,"prev"],[30,16,22,50],[30,17,22,51,"pi"],[30,19,22,53],[30,21,22,55],[30,22,22,56],[30,25,22,59,"input"],[30,30,22,64],[30,31,22,65,"ii"],[30,33,22,67],[30,35,22,69],[30,36,22,70],[31,4,23,4],[31,8,23,8,"y08"],[31,11,23,11],[31,14,23,14,"prev"],[31,18,23,18],[31,19,23,19,"pi"],[31,21,23,21],[31,23,23,23],[31,24,23,24],[31,27,23,27,"input"],[31,32,23,32],[31,33,23,33,"ii"],[31,35,23,35],[31,37,23,37],[31,38,23,38],[32,6,23,40,"y09"],[32,9,23,43],[32,12,23,46,"prev"],[32,16,23,50],[32,17,23,51,"pi"],[32,19,23,53],[32,21,23,55],[32,22,23,56],[32,25,23,59,"input"],[32,30,23,64],[32,31,23,65,"ii"],[32,33,23,67],[32,35,23,69],[32,36,23,70],[33,4,24,4],[33,8,24,8,"y10"],[33,11,24,11],[33,14,24,14,"prev"],[33,18,24,18],[33,19,24,19,"pi"],[33,21,24,21],[33,23,24,23],[33,24,24,24],[33,27,24,27,"input"],[33,32,24,32],[33,33,24,33,"ii"],[33,35,24,35],[33,37,24,37],[33,38,24,38],[34,6,24,40,"y11"],[34,9,24,43],[34,12,24,46,"prev"],[34,16,24,50],[34,17,24,51,"pi"],[34,19,24,53],[34,21,24,55],[34,22,24,56],[34,25,24,59,"input"],[34,30,24,64],[34,31,24,65,"ii"],[34,33,24,67],[34,35,24,69],[34,36,24,70],[35,4,25,4],[35,8,25,8,"y12"],[35,11,25,11],[35,14,25,14,"prev"],[35,18,25,18],[35,19,25,19,"pi"],[35,21,25,21],[35,23,25,23],[35,24,25,24],[35,27,25,27,"input"],[35,32,25,32],[35,33,25,33,"ii"],[35,35,25,35],[35,37,25,37],[35,38,25,38],[36,6,25,40,"y13"],[36,9,25,43],[36,12,25,46,"prev"],[36,16,25,50],[36,17,25,51,"pi"],[36,19,25,53],[36,21,25,55],[36,22,25,56],[36,25,25,59,"input"],[36,30,25,64],[36,31,25,65,"ii"],[36,33,25,67],[36,35,25,69],[36,36,25,70],[37,4,26,4],[37,8,26,8,"y14"],[37,11,26,11],[37,14,26,14,"prev"],[37,18,26,18],[37,19,26,19,"pi"],[37,21,26,21],[37,23,26,23],[37,24,26,24],[37,27,26,27,"input"],[37,32,26,32],[37,33,26,33,"ii"],[37,35,26,35],[37,37,26,37],[37,38,26,38],[38,6,26,40,"y15"],[38,9,26,43],[38,12,26,46,"prev"],[38,16,26,50],[38,17,26,51,"pi"],[38,19,26,53],[38,21,26,55],[38,22,26,56],[38,25,26,59,"input"],[38,30,26,64],[38,31,26,65,"ii"],[38,33,26,67],[38,35,26,69],[38,36,26,70],[39,4,27,4],[40,4,28,4],[40,8,28,8,"x00"],[40,11,28,11],[40,14,28,14,"y00"],[40,17,28,17],[41,6,28,19,"x01"],[41,9,28,22],[41,12,28,25,"y01"],[41,15,28,28],[42,6,28,30,"x02"],[42,9,28,33],[42,12,28,36,"y02"],[42,15,28,39],[43,6,28,41,"x03"],[43,9,28,44],[43,12,28,47,"y03"],[43,15,28,50],[44,6,28,52,"x04"],[44,9,28,55],[44,12,28,58,"y04"],[44,15,28,61],[45,6,28,63,"x05"],[45,9,28,66],[45,12,28,69,"y05"],[45,15,28,72],[46,6,28,74,"x06"],[46,9,28,77],[46,12,28,80,"y06"],[46,15,28,83],[47,6,28,85,"x07"],[47,9,28,88],[47,12,28,91,"y07"],[47,15,28,94],[48,6,28,96,"x08"],[48,9,28,99],[48,12,28,102,"y08"],[48,15,28,105],[49,6,28,107,"x09"],[49,9,28,110],[49,12,28,113,"y09"],[49,15,28,116],[50,6,28,118,"x10"],[50,9,28,121],[50,12,28,124,"y10"],[50,15,28,127],[51,6,28,129,"x11"],[51,9,28,132],[51,12,28,135,"y11"],[51,15,28,138],[52,6,28,140,"x12"],[52,9,28,143],[52,12,28,146,"y12"],[52,15,28,149],[53,6,28,151,"x13"],[53,9,28,154],[53,12,28,157,"y13"],[53,15,28,160],[54,6,28,162,"x14"],[54,9,28,165],[54,12,28,168,"y14"],[54,15,28,171],[55,6,28,173,"x15"],[55,9,28,176],[55,12,28,179,"y15"],[55,15,28,182],[56,4,29,4],[57,4,30,4],[57,9,30,9],[57,13,30,13,"i"],[57,14,30,14],[57,17,30,17],[57,18,30,18],[57,20,30,20,"i"],[57,21,30,21],[57,24,30,24],[57,25,30,25],[57,27,30,27,"i"],[57,28,30,28],[57,32,30,32],[57,33,30,33],[57,35,30,35],[58,6,31,8,"x04"],[58,9,31,11],[58,13,31,15],[58,14,31,16],[58,15,31,17],[58,17,31,19,"utils_ts_1"],[58,27,31,29],[58,28,31,30,"rotl"],[58,32,31,34],[58,34,31,36,"x00"],[58,37,31,39],[58,40,31,42,"x12"],[58,43,31,45],[58,46,31,48],[58,47,31,49],[58,49,31,51],[58,50,31,52],[58,51,31,53],[59,6,32,8,"x08"],[59,9,32,11],[59,13,32,15],[59,14,32,16],[59,15,32,17],[59,17,32,19,"utils_ts_1"],[59,27,32,29],[59,28,32,30,"rotl"],[59,32,32,34],[59,34,32,36,"x04"],[59,37,32,39],[59,40,32,42,"x00"],[59,43,32,45],[59,46,32,48],[59,47,32,49],[59,49,32,51],[59,50,32,52],[59,51,32,53],[60,6,33,8,"x12"],[60,9,33,11],[60,13,33,15],[60,14,33,16],[60,15,33,17],[60,17,33,19,"utils_ts_1"],[60,27,33,29],[60,28,33,30,"rotl"],[60,32,33,34],[60,34,33,36,"x08"],[60,37,33,39],[60,40,33,42,"x04"],[60,43,33,45],[60,46,33,48],[60,47,33,49],[60,49,33,51],[60,51,33,53],[60,52,33,54],[61,6,34,8,"x00"],[61,9,34,11],[61,13,34,15],[61,14,34,16],[61,15,34,17],[61,17,34,19,"utils_ts_1"],[61,27,34,29],[61,28,34,30,"rotl"],[61,32,34,34],[61,34,34,36,"x12"],[61,37,34,39],[61,40,34,42,"x08"],[61,43,34,45],[61,46,34,48],[61,47,34,49],[61,49,34,51],[61,51,34,53],[61,52,34,54],[62,6,35,8,"x09"],[62,9,35,11],[62,13,35,15],[62,14,35,16],[62,15,35,17],[62,17,35,19,"utils_ts_1"],[62,27,35,29],[62,28,35,30,"rotl"],[62,32,35,34],[62,34,35,36,"x05"],[62,37,35,39],[62,40,35,42,"x01"],[62,43,35,45],[62,46,35,48],[62,47,35,49],[62,49,35,51],[62,50,35,52],[62,51,35,53],[63,6,36,8,"x13"],[63,9,36,11],[63,13,36,15],[63,14,36,16],[63,15,36,17],[63,17,36,19,"utils_ts_1"],[63,27,36,29],[63,28,36,30,"rotl"],[63,32,36,34],[63,34,36,36,"x09"],[63,37,36,39],[63,40,36,42,"x05"],[63,43,36,45],[63,46,36,48],[63,47,36,49],[63,49,36,51],[63,50,36,52],[63,51,36,53],[64,6,37,8,"x01"],[64,9,37,11],[64,13,37,15],[64,14,37,16],[64,15,37,17],[64,17,37,19,"utils_ts_1"],[64,27,37,29],[64,28,37,30,"rotl"],[64,32,37,34],[64,34,37,36,"x13"],[64,37,37,39],[64,40,37,42,"x09"],[64,43,37,45],[64,46,37,48],[64,47,37,49],[64,49,37,51],[64,51,37,53],[64,52,37,54],[65,6,38,8,"x05"],[65,9,38,11],[65,13,38,15],[65,14,38,16],[65,15,38,17],[65,17,38,19,"utils_ts_1"],[65,27,38,29],[65,28,38,30,"rotl"],[65,32,38,34],[65,34,38,36,"x01"],[65,37,38,39],[65,40,38,42,"x13"],[65,43,38,45],[65,46,38,48],[65,47,38,49],[65,49,38,51],[65,51,38,53],[65,52,38,54],[66,6,39,8,"x14"],[66,9,39,11],[66,13,39,15],[66,14,39,16],[66,15,39,17],[66,17,39,19,"utils_ts_1"],[66,27,39,29],[66,28,39,30,"rotl"],[66,32,39,34],[66,34,39,36,"x10"],[66,37,39,39],[66,40,39,42,"x06"],[66,43,39,45],[66,46,39,48],[66,47,39,49],[66,49,39,51],[66,50,39,52],[66,51,39,53],[67,6,40,8,"x02"],[67,9,40,11],[67,13,40,15],[67,14,40,16],[67,15,40,17],[67,17,40,19,"utils_ts_1"],[67,27,40,29],[67,28,40,30,"rotl"],[67,32,40,34],[67,34,40,36,"x14"],[67,37,40,39],[67,40,40,42,"x10"],[67,43,40,45],[67,46,40,48],[67,47,40,49],[67,49,40,51],[67,50,40,52],[67,51,40,53],[68,6,41,8,"x06"],[68,9,41,11],[68,13,41,15],[68,14,41,16],[68,15,41,17],[68,17,41,19,"utils_ts_1"],[68,27,41,29],[68,28,41,30,"rotl"],[68,32,41,34],[68,34,41,36,"x02"],[68,37,41,39],[68,40,41,42,"x14"],[68,43,41,45],[68,46,41,48],[68,47,41,49],[68,49,41,51],[68,51,41,53],[68,52,41,54],[69,6,42,8,"x10"],[69,9,42,11],[69,13,42,15],[69,14,42,16],[69,15,42,17],[69,17,42,19,"utils_ts_1"],[69,27,42,29],[69,28,42,30,"rotl"],[69,32,42,34],[69,34,42,36,"x06"],[69,37,42,39],[69,40,42,42,"x02"],[69,43,42,45],[69,46,42,48],[69,47,42,49],[69,49,42,51],[69,51,42,53],[69,52,42,54],[70,6,43,8,"x03"],[70,9,43,11],[70,13,43,15],[70,14,43,16],[70,15,43,17],[70,17,43,19,"utils_ts_1"],[70,27,43,29],[70,28,43,30,"rotl"],[70,32,43,34],[70,34,43,36,"x15"],[70,37,43,39],[70,40,43,42,"x11"],[70,43,43,45],[70,46,43,48],[70,47,43,49],[70,49,43,51],[70,50,43,52],[70,51,43,53],[71,6,44,8,"x07"],[71,9,44,11],[71,13,44,15],[71,14,44,16],[71,15,44,17],[71,17,44,19,"utils_ts_1"],[71,27,44,29],[71,28,44,30,"rotl"],[71,32,44,34],[71,34,44,36,"x03"],[71,37,44,39],[71,40,44,42,"x15"],[71,43,44,45],[71,46,44,48],[71,47,44,49],[71,49,44,51],[71,50,44,52],[71,51,44,53],[72,6,45,8,"x11"],[72,9,45,11],[72,13,45,15],[72,14,45,16],[72,15,45,17],[72,17,45,19,"utils_ts_1"],[72,27,45,29],[72,28,45,30,"rotl"],[72,32,45,34],[72,34,45,36,"x07"],[72,37,45,39],[72,40,45,42,"x03"],[72,43,45,45],[72,46,45,48],[72,47,45,49],[72,49,45,51],[72,51,45,53],[72,52,45,54],[73,6,46,8,"x15"],[73,9,46,11],[73,13,46,15],[73,14,46,16],[73,15,46,17],[73,17,46,19,"utils_ts_1"],[73,27,46,29],[73,28,46,30,"rotl"],[73,32,46,34],[73,34,46,36,"x11"],[73,37,46,39],[73,40,46,42,"x07"],[73,43,46,45],[73,46,46,48],[73,47,46,49],[73,49,46,51],[73,51,46,53],[73,52,46,54],[74,6,47,8,"x01"],[74,9,47,11],[74,13,47,15],[74,14,47,16],[74,15,47,17],[74,17,47,19,"utils_ts_1"],[74,27,47,29],[74,28,47,30,"rotl"],[74,32,47,34],[74,34,47,36,"x00"],[74,37,47,39],[74,40,47,42,"x03"],[74,43,47,45],[74,46,47,48],[74,47,47,49],[74,49,47,51],[74,50,47,52],[74,51,47,53],[75,6,48,8,"x02"],[75,9,48,11],[75,13,48,15],[75,14,48,16],[75,15,48,17],[75,17,48,19,"utils_ts_1"],[75,27,48,29],[75,28,48,30,"rotl"],[75,32,48,34],[75,34,48,36,"x01"],[75,37,48,39],[75,40,48,42,"x00"],[75,43,48,45],[75,46,48,48],[75,47,48,49],[75,49,48,51],[75,50,48,52],[75,51,48,53],[76,6,49,8,"x03"],[76,9,49,11],[76,13,49,15],[76,14,49,16],[76,15,49,17],[76,17,49,19,"utils_ts_1"],[76,27,49,29],[76,28,49,30,"rotl"],[76,32,49,34],[76,34,49,36,"x02"],[76,37,49,39],[76,40,49,42,"x01"],[76,43,49,45],[76,46,49,48],[76,47,49,49],[76,49,49,51],[76,51,49,53],[76,52,49,54],[77,6,50,8,"x00"],[77,9,50,11],[77,13,50,15],[77,14,50,16],[77,15,50,17],[77,17,50,19,"utils_ts_1"],[77,27,50,29],[77,28,50,30,"rotl"],[77,32,50,34],[77,34,50,36,"x03"],[77,37,50,39],[77,40,50,42,"x02"],[77,43,50,45],[77,46,50,48],[77,47,50,49],[77,49,50,51],[77,51,50,53],[77,52,50,54],[78,6,51,8,"x06"],[78,9,51,11],[78,13,51,15],[78,14,51,16],[78,15,51,17],[78,17,51,19,"utils_ts_1"],[78,27,51,29],[78,28,51,30,"rotl"],[78,32,51,34],[78,34,51,36,"x05"],[78,37,51,39],[78,40,51,42,"x04"],[78,43,51,45],[78,46,51,48],[78,47,51,49],[78,49,51,51],[78,50,51,52],[78,51,51,53],[79,6,52,8,"x07"],[79,9,52,11],[79,13,52,15],[79,14,52,16],[79,15,52,17],[79,17,52,19,"utils_ts_1"],[79,27,52,29],[79,28,52,30,"rotl"],[79,32,52,34],[79,34,52,36,"x06"],[79,37,52,39],[79,40,52,42,"x05"],[79,43,52,45],[79,46,52,48],[79,47,52,49],[79,49,52,51],[79,50,52,52],[79,51,52,53],[80,6,53,8,"x04"],[80,9,53,11],[80,13,53,15],[80,14,53,16],[80,15,53,17],[80,17,53,19,"utils_ts_1"],[80,27,53,29],[80,28,53,30,"rotl"],[80,32,53,34],[80,34,53,36,"x07"],[80,37,53,39],[80,40,53,42,"x06"],[80,43,53,45],[80,46,53,48],[80,47,53,49],[80,49,53,51],[80,51,53,53],[80,52,53,54],[81,6,54,8,"x05"],[81,9,54,11],[81,13,54,15],[81,14,54,16],[81,15,54,17],[81,17,54,19,"utils_ts_1"],[81,27,54,29],[81,28,54,30,"rotl"],[81,32,54,34],[81,34,54,36,"x04"],[81,37,54,39],[81,40,54,42,"x07"],[81,43,54,45],[81,46,54,48],[81,47,54,49],[81,49,54,51],[81,51,54,53],[81,52,54,54],[82,6,55,8,"x11"],[82,9,55,11],[82,13,55,15],[82,14,55,16],[82,15,55,17],[82,17,55,19,"utils_ts_1"],[82,27,55,29],[82,28,55,30,"rotl"],[82,32,55,34],[82,34,55,36,"x10"],[82,37,55,39],[82,40,55,42,"x09"],[82,43,55,45],[82,46,55,48],[82,47,55,49],[82,49,55,51],[82,50,55,52],[82,51,55,53],[83,6,56,8,"x08"],[83,9,56,11],[83,13,56,15],[83,14,56,16],[83,15,56,17],[83,17,56,19,"utils_ts_1"],[83,27,56,29],[83,28,56,30,"rotl"],[83,32,56,34],[83,34,56,36,"x11"],[83,37,56,39],[83,40,56,42,"x10"],[83,43,56,45],[83,46,56,48],[83,47,56,49],[83,49,56,51],[83,50,56,52],[83,51,56,53],[84,6,57,8,"x09"],[84,9,57,11],[84,13,57,15],[84,14,57,16],[84,15,57,17],[84,17,57,19,"utils_ts_1"],[84,27,57,29],[84,28,57,30,"rotl"],[84,32,57,34],[84,34,57,36,"x08"],[84,37,57,39],[84,40,57,42,"x11"],[84,43,57,45],[84,46,57,48],[84,47,57,49],[84,49,57,51],[84,51,57,53],[84,52,57,54],[85,6,58,8,"x10"],[85,9,58,11],[85,13,58,15],[85,14,58,16],[85,15,58,17],[85,17,58,19,"utils_ts_1"],[85,27,58,29],[85,28,58,30,"rotl"],[85,32,58,34],[85,34,58,36,"x09"],[85,37,58,39],[85,40,58,42,"x08"],[85,43,58,45],[85,46,58,48],[85,47,58,49],[85,49,58,51],[85,51,58,53],[85,52,58,54],[86,6,59,8,"x12"],[86,9,59,11],[86,13,59,15],[86,14,59,16],[86,15,59,17],[86,17,59,19,"utils_ts_1"],[86,27,59,29],[86,28,59,30,"rotl"],[86,32,59,34],[86,34,59,36,"x15"],[86,37,59,39],[86,40,59,42,"x14"],[86,43,59,45],[86,46,59,48],[86,47,59,49],[86,49,59,51],[86,50,59,52],[86,51,59,53],[87,6,60,8,"x13"],[87,9,60,11],[87,13,60,15],[87,14,60,16],[87,15,60,17],[87,17,60,19,"utils_ts_1"],[87,27,60,29],[87,28,60,30,"rotl"],[87,32,60,34],[87,34,60,36,"x12"],[87,37,60,39],[87,40,60,42,"x15"],[87,43,60,45],[87,46,60,48],[87,47,60,49],[87,49,60,51],[87,50,60,52],[87,51,60,53],[88,6,61,8,"x14"],[88,9,61,11],[88,13,61,15],[88,14,61,16],[88,15,61,17],[88,17,61,19,"utils_ts_1"],[88,27,61,29],[88,28,61,30,"rotl"],[88,32,61,34],[88,34,61,36,"x13"],[88,37,61,39],[88,40,61,42,"x12"],[88,43,61,45],[88,46,61,48],[88,47,61,49],[88,49,61,51],[88,51,61,53],[88,52,61,54],[89,6,62,8,"x15"],[89,9,62,11],[89,13,62,15],[89,14,62,16],[89,15,62,17],[89,17,62,19,"utils_ts_1"],[89,27,62,29],[89,28,62,30,"rotl"],[89,32,62,34],[89,34,62,36,"x14"],[89,37,62,39],[89,40,62,42,"x13"],[89,43,62,45],[89,46,62,48],[89,47,62,49],[89,49,62,51],[89,51,62,53],[89,52,62,54],[90,4,63,4],[91,4,64,4],[92,4,65,4,"out"],[92,7,65,7],[92,8,65,8,"oi"],[92,10,65,10],[92,12,65,12],[92,13,65,13],[92,16,65,17,"y00"],[92,19,65,20],[92,22,65,23,"x00"],[92,25,65,26],[92,28,65,30],[92,29,65,31],[93,4,66,4,"out"],[93,7,66,7],[93,8,66,8,"oi"],[93,10,66,10],[93,12,66,12],[93,13,66,13],[93,16,66,17,"y01"],[93,19,66,20],[93,22,66,23,"x01"],[93,25,66,26],[93,28,66,30],[93,29,66,31],[94,4,67,4,"out"],[94,7,67,7],[94,8,67,8,"oi"],[94,10,67,10],[94,12,67,12],[94,13,67,13],[94,16,67,17,"y02"],[94,19,67,20],[94,22,67,23,"x02"],[94,25,67,26],[94,28,67,30],[94,29,67,31],[95,4,68,4,"out"],[95,7,68,7],[95,8,68,8,"oi"],[95,10,68,10],[95,12,68,12],[95,13,68,13],[95,16,68,17,"y03"],[95,19,68,20],[95,22,68,23,"x03"],[95,25,68,26],[95,28,68,30],[95,29,68,31],[96,4,69,4,"out"],[96,7,69,7],[96,8,69,8,"oi"],[96,10,69,10],[96,12,69,12],[96,13,69,13],[96,16,69,17,"y04"],[96,19,69,20],[96,22,69,23,"x04"],[96,25,69,26],[96,28,69,30],[96,29,69,31],[97,4,70,4,"out"],[97,7,70,7],[97,8,70,8,"oi"],[97,10,70,10],[97,12,70,12],[97,13,70,13],[97,16,70,17,"y05"],[97,19,70,20],[97,22,70,23,"x05"],[97,25,70,26],[97,28,70,30],[97,29,70,31],[98,4,71,4,"out"],[98,7,71,7],[98,8,71,8,"oi"],[98,10,71,10],[98,12,71,12],[98,13,71,13],[98,16,71,17,"y06"],[98,19,71,20],[98,22,71,23,"x06"],[98,25,71,26],[98,28,71,30],[98,29,71,31],[99,4,72,4,"out"],[99,7,72,7],[99,8,72,8,"oi"],[99,10,72,10],[99,12,72,12],[99,13,72,13],[99,16,72,17,"y07"],[99,19,72,20],[99,22,72,23,"x07"],[99,25,72,26],[99,28,72,30],[99,29,72,31],[100,4,73,4,"out"],[100,7,73,7],[100,8,73,8,"oi"],[100,10,73,10],[100,12,73,12],[100,13,73,13],[100,16,73,17,"y08"],[100,19,73,20],[100,22,73,23,"x08"],[100,25,73,26],[100,28,73,30],[100,29,73,31],[101,4,74,4,"out"],[101,7,74,7],[101,8,74,8,"oi"],[101,10,74,10],[101,12,74,12],[101,13,74,13],[101,16,74,17,"y09"],[101,19,74,20],[101,22,74,23,"x09"],[101,25,74,26],[101,28,74,30],[101,29,74,31],[102,4,75,4,"out"],[102,7,75,7],[102,8,75,8,"oi"],[102,10,75,10],[102,12,75,12],[102,13,75,13],[102,16,75,17,"y10"],[102,19,75,20],[102,22,75,23,"x10"],[102,25,75,26],[102,28,75,30],[102,29,75,31],[103,4,76,4,"out"],[103,7,76,7],[103,8,76,8,"oi"],[103,10,76,10],[103,12,76,12],[103,13,76,13],[103,16,76,17,"y11"],[103,19,76,20],[103,22,76,23,"x11"],[103,25,76,26],[103,28,76,30],[103,29,76,31],[104,4,77,4,"out"],[104,7,77,7],[104,8,77,8,"oi"],[104,10,77,10],[104,12,77,12],[104,13,77,13],[104,16,77,17,"y12"],[104,19,77,20],[104,22,77,23,"x12"],[104,25,77,26],[104,28,77,30],[104,29,77,31],[105,4,78,4,"out"],[105,7,78,7],[105,8,78,8,"oi"],[105,10,78,10],[105,12,78,12],[105,13,78,13],[105,16,78,17,"y13"],[105,19,78,20],[105,22,78,23,"x13"],[105,25,78,26],[105,28,78,30],[105,29,78,31],[106,4,79,4,"out"],[106,7,79,7],[106,8,79,8,"oi"],[106,10,79,10],[106,12,79,12],[106,13,79,13],[106,16,79,17,"y14"],[106,19,79,20],[106,22,79,23,"x14"],[106,25,79,26],[106,28,79,30],[106,29,79,31],[107,4,80,4,"out"],[107,7,80,7],[107,8,80,8,"oi"],[107,10,80,10],[107,12,80,12],[107,13,80,13],[107,16,80,17,"y15"],[107,19,80,20],[107,22,80,23,"x15"],[107,25,80,26],[107,28,80,30],[107,29,80,31],[108,2,81,0],[109,2,82,0],[109,11,82,9,"BlockMix"],[109,19,82,17,"BlockMix"],[109,20,82,18,"input"],[109,25,82,23],[109,27,82,25,"ii"],[109,29,82,27],[109,31,82,29,"out"],[109,34,82,32],[109,36,82,34,"oi"],[109,38,82,36],[109,40,82,38,"r"],[109,41,82,39],[109,43,82,41],[110,4,83,4],[111,4,84,4],[111,8,84,8,"head"],[111,12,84,12],[111,15,84,15,"oi"],[111,17,84,17],[111,20,84,20],[111,21,84,21],[112,4,85,4],[112,8,85,8,"tail"],[112,12,85,12],[112,15,85,15,"oi"],[112,17,85,17],[112,20,85,20],[112,22,85,22],[112,25,85,25,"r"],[112,26,85,26],[113,4,86,4],[113,9,86,9],[113,13,86,13,"i"],[113,14,86,14],[113,17,86,17],[113,18,86,18],[113,20,86,20,"i"],[113,21,86,21],[113,24,86,24],[113,26,86,26],[113,28,86,28,"i"],[113,29,86,29],[113,31,86,31],[113,33,87,8,"out"],[113,36,87,11],[113,37,87,12,"tail"],[113,41,87,16],[113,44,87,19,"i"],[113,45,87,20],[113,46,87,21],[113,49,87,24,"input"],[113,54,87,29],[113,55,87,30,"ii"],[113,57,87,32],[113,60,87,35],[113,61,87,36],[113,62,87,37],[113,65,87,40,"r"],[113,66,87,41],[113,69,87,44],[113,70,87,45],[113,74,87,49],[113,76,87,51],[113,79,87,54,"i"],[113,80,87,55],[113,81,87,56],[113,82,87,57],[113,83,87,58],[114,4,88,4],[114,9,88,9],[114,13,88,13,"i"],[114,14,88,14],[114,17,88,17],[114,18,88,18],[114,20,88,20,"i"],[114,21,88,21],[114,24,88,24,"r"],[114,25,88,25],[114,27,88,27,"i"],[114,28,88,28],[114,30,88,30],[114,32,88,32,"head"],[114,36,88,36],[114,40,88,40],[114,42,88,42],[114,44,88,44,"ii"],[114,46,88,46],[114,50,88,50],[114,52,88,52],[114,54,88,54],[115,6,89,8],[116,6,90,8,"XorAndSalsa"],[116,17,90,19],[116,18,90,20,"out"],[116,21,90,23],[116,23,90,25,"tail"],[116,27,90,29],[116,29,90,31,"input"],[116,34,90,36],[116,36,90,38,"ii"],[116,38,90,40],[116,40,90,42,"out"],[116,43,90,45],[116,45,90,47,"head"],[116,49,90,51],[116,50,90,52],[116,51,90,53],[116,52,90,54],[117,6,91,8],[117,10,91,12,"i"],[117,11,91,13],[117,14,91,16],[117,15,91,17],[117,17,92,12,"tail"],[117,21,92,16],[117,25,92,20],[117,27,92,22],[117,28,92,23],[117,29,92,24],[118,6,93,8,"XorAndSalsa"],[118,17,93,19],[118,18,93,20,"out"],[118,21,93,23],[118,23,93,25,"head"],[118,27,93,29],[118,29,93,31,"input"],[118,34,93,36],[118,36,93,39,"ii"],[118,38,93,41],[118,42,93,45],[118,44,93,47],[118,46,93,50,"out"],[118,49,93,53],[118,51,93,55,"tail"],[118,55,93,59],[118,56,93,60],[118,57,93,61],[118,58,93,62],[119,4,94,4],[120,2,95,0],[121,2,96,0],[122,2,97,0],[122,11,97,9,"scryptInit"],[122,21,97,19,"scryptInit"],[122,22,97,20,"password"],[122,30,97,28],[122,32,97,30,"salt"],[122,36,97,34],[122,38,97,36,"_opts"],[122,43,97,41],[122,45,97,43],[123,4,98,4],[124,4,99,4],[124,10,99,10,"opts"],[124,14,99,14],[124,17,99,17],[124,18,99,18],[124,19,99,19],[124,21,99,21,"utils_ts_1"],[124,31,99,31],[124,32,99,32,"checkOpts"],[124,41,99,41],[124,43,99,43],[125,6,100,8,"dkLen"],[125,11,100,13],[125,13,100,15],[125,15,100,17],[126,6,101,8,"asyncTick"],[126,15,101,17],[126,17,101,19],[126,19,101,21],[127,6,102,8,"maxmem"],[127,12,102,14],[127,14,102,16],[127,18,102,20],[127,22,102,24],[127,23,102,25],[127,26,102,28],[128,4,103,4],[128,5,103,5],[128,7,103,7,"_opts"],[128,12,103,12],[128,13,103,13],[129,4,104,4],[129,10,104,10],[130,6,104,12,"N"],[130,7,104,13],[131,6,104,15,"r"],[131,7,104,16],[132,6,104,18,"p"],[132,7,104,19],[133,6,104,21,"dkLen"],[133,11,104,26],[134,6,104,28,"asyncTick"],[134,15,104,37],[135,6,104,39,"maxmem"],[135,12,104,45],[136,6,104,47,"onProgress"],[137,4,104,58],[137,5,104,59],[137,8,104,62,"opts"],[137,12,104,66],[138,4,105,4],[138,5,105,5],[138,6,105,6],[138,8,105,8,"utils_ts_1"],[138,18,105,18],[138,19,105,19,"anumber"],[138,26,105,26],[138,28,105,28,"N"],[138,29,105,29],[138,30,105,30],[139,4,106,4],[139,5,106,5],[139,6,106,6],[139,8,106,8,"utils_ts_1"],[139,18,106,18],[139,19,106,19,"anumber"],[139,26,106,26],[139,28,106,28,"r"],[139,29,106,29],[139,30,106,30],[140,4,107,4],[140,5,107,5],[140,6,107,6],[140,8,107,8,"utils_ts_1"],[140,18,107,18],[140,19,107,19,"anumber"],[140,26,107,26],[140,28,107,28,"p"],[140,29,107,29],[140,30,107,30],[141,4,108,4],[141,5,108,5],[141,6,108,6],[141,8,108,8,"utils_ts_1"],[141,18,108,18],[141,19,108,19,"anumber"],[141,26,108,26],[141,28,108,28,"dkLen"],[141,33,108,33],[141,34,108,34],[142,4,109,4],[142,5,109,5],[142,6,109,6],[142,8,109,8,"utils_ts_1"],[142,18,109,18],[142,19,109,19,"anumber"],[142,26,109,26],[142,28,109,28,"asyncTick"],[142,37,109,37],[142,38,109,38],[143,4,110,4],[143,5,110,5],[143,6,110,6],[143,8,110,8,"utils_ts_1"],[143,18,110,18],[143,19,110,19,"anumber"],[143,26,110,26],[143,28,110,28,"maxmem"],[143,34,110,34],[143,35,110,35],[144,4,111,4],[144,8,111,8,"onProgress"],[144,18,111,18],[144,23,111,23,"undefined"],[144,32,111,32],[144,36,111,36],[144,43,111,43,"onProgress"],[144,53,111,53],[144,58,111,58],[144,68,111,68],[144,70,112,8],[144,76,112,14],[144,80,112,18,"Error"],[144,85,112,23],[144,86,112,24],[144,117,112,55],[144,118,112,56],[145,4,113,4],[145,10,113,10,"blockSize"],[145,19,113,19],[145,22,113,22],[145,25,113,25],[145,28,113,28,"r"],[145,29,113,29],[146,4,114,4],[146,10,114,10,"blockSize32"],[146,21,114,21],[146,24,114,24,"blockSize"],[146,33,114,33],[146,36,114,36],[146,37,114,37],[147,4,115,4],[148,4,116,4],[149,4,117,4],[150,4,118,4],[151,4,119,4],[151,10,119,10,"pow32"],[151,15,119,15],[151,18,119,18,"Math"],[151,22,119,22],[151,23,119,23,"pow"],[151,26,119,26],[151,27,119,27],[151,28,119,28],[151,30,119,30],[151,32,119,32],[151,33,119,33],[152,4,120,4],[152,8,120,8,"N"],[152,9,120,9],[152,13,120,13],[152,14,120,14],[152,18,120,18],[152,19,120,19,"N"],[152,20,120,20],[152,23,120,24,"N"],[152,24,120,25],[152,27,120,28],[152,28,120,30],[152,34,120,36],[152,35,120,37],[152,39,120,41,"N"],[152,40,120,42],[152,43,120,45,"pow32"],[152,48,120,50],[152,50,120,52],[153,6,121,8],[153,12,121,14],[153,16,121,18,"Error"],[153,21,121,23],[153,22,121,24],[153,89,121,91],[153,90,121,92],[154,4,122,4],[155,4,123,4],[155,8,123,8,"p"],[155,9,123,9],[155,12,123,12],[155,13,123,13],[155,17,123,17,"p"],[155,18,123,18],[155,21,123,22],[155,22,123,23,"pow32"],[155,27,123,28],[155,30,123,31],[155,31,123,32],[155,35,123,36],[155,37,123,38],[155,40,123,42,"blockSize"],[155,49,123,51],[155,51,123,53],[156,6,124,8],[156,12,124,14],[156,16,124,18,"Error"],[156,21,124,23],[156,22,124,24],[156,112,124,114],[156,113,124,115],[157,4,125,4],[158,4,126,4],[158,8,126,8,"dkLen"],[158,13,126,13],[158,16,126,16],[158,17,126,17],[158,21,126,21,"dkLen"],[158,26,126,26],[158,29,126,29],[158,30,126,30,"pow32"],[158,35,126,35],[158,38,126,38],[158,39,126,39],[158,43,126,43],[158,45,126,45],[158,47,126,47],[159,6,127,8],[159,12,127,14],[159,16,127,18,"Error"],[159,21,127,23],[159,22,127,24],[159,102,127,104],[159,103,127,105],[160,4,128,4],[161,4,129,4],[161,10,129,10,"memUsed"],[161,17,129,17],[161,20,129,20,"blockSize"],[161,29,129,29],[161,33,129,33,"N"],[161,34,129,34],[161,37,129,37,"p"],[161,38,129,38],[161,39,129,39],[162,4,130,4],[162,8,130,8,"memUsed"],[162,15,130,15],[162,18,130,18,"maxmem"],[162,24,130,24],[162,26,130,26],[163,6,131,8],[163,12,131,14],[163,16,131,18,"Error"],[163,21,131,23],[163,22,131,24],[163,102,131,104],[163,105,131,107,"maxmem"],[163,111,131,113],[163,112,131,114],[164,4,132,4],[165,4,133,4],[166,4,134,4],[167,4,135,4],[167,10,135,10,"B"],[167,11,135,11],[167,14,135,14],[167,15,135,15],[167,16,135,16],[167,18,135,18,"pbkdf2_ts_1"],[167,29,135,29],[167,30,135,30,"pbkdf2"],[167,36,135,36],[167,38,135,38,"sha2_ts_1"],[167,47,135,47],[167,48,135,48,"sha256"],[167,54,135,54],[167,56,135,56,"password"],[167,64,135,64],[167,66,135,66,"salt"],[167,70,135,70],[167,72,135,72],[168,6,135,74,"c"],[168,7,135,75],[168,9,135,77],[168,10,135,78],[169,6,135,80,"dkLen"],[169,11,135,85],[169,13,135,87,"blockSize"],[169,22,135,96],[169,25,135,99,"p"],[170,4,135,101],[170,5,135,102],[170,6,135,103],[171,4,136,4],[171,10,136,10,"B32"],[171,13,136,13],[171,16,136,16],[171,17,136,17],[171,18,136,18],[171,20,136,20,"utils_ts_1"],[171,30,136,30],[171,31,136,31,"u32"],[171,34,136,34],[171,36,136,36,"B"],[171,37,136,37],[171,38,136,38],[172,4,137,4],[173,4,138,4],[173,10,138,10,"V"],[173,11,138,11],[173,14,138,14],[173,15,138,15],[173,16,138,16],[173,18,138,18,"utils_ts_1"],[173,28,138,28],[173,29,138,29,"u32"],[173,32,138,32],[173,34,138,34],[173,38,138,38,"Uint8Array"],[173,48,138,48],[173,49,138,49,"blockSize"],[173,58,138,58],[173,61,138,61,"N"],[173,62,138,62],[173,63,138,63],[173,64,138,64],[174,4,139,4],[174,10,139,10,"tmp"],[174,13,139,13],[174,16,139,16],[174,17,139,17],[174,18,139,18],[174,20,139,20,"utils_ts_1"],[174,30,139,30],[174,31,139,31,"u32"],[174,34,139,34],[174,36,139,36],[174,40,139,40,"Uint8Array"],[174,50,139,50],[174,51,139,51,"blockSize"],[174,60,139,60],[174,61,139,61],[174,62,139,62],[175,4,140,4],[175,8,140,8,"blockMixCb"],[175,18,140,18],[175,21,140,21,"blockMixCb"],[175,22,140,21],[175,27,140,27],[175,28,140,29],[175,29,140,30],[176,4,141,4],[176,8,141,8,"onProgress"],[176,18,141,18],[176,20,141,20],[177,6,142,8],[177,12,142,14,"totalBlockMix"],[177,25,142,27],[177,28,142,30],[177,29,142,31],[177,32,142,34,"N"],[177,33,142,35],[177,36,142,38,"p"],[177,37,142,39],[178,6,143,8],[179,6,144,8],[180,6,145,8],[180,12,145,14,"callbackPer"],[180,23,145,25],[180,26,145,28,"Math"],[180,30,145,32],[180,31,145,33,"max"],[180,34,145,36],[180,35,145,37,"Math"],[180,39,145,41],[180,40,145,42,"floor"],[180,45,145,47],[180,46,145,48,"totalBlockMix"],[180,59,145,61],[180,62,145,64],[180,67,145,69],[180,68,145,70],[180,70,145,72],[180,71,145,73],[180,72,145,74],[181,6,146,8],[181,10,146,12,"blockMixCnt"],[181,21,146,23],[181,24,146,26],[181,25,146,27],[182,6,147,8,"blockMixCb"],[182,16,147,18],[182,19,147,21,"blockMixCb"],[182,20,147,21],[182,25,147,27],[183,8,148,12,"blockMixCnt"],[183,19,148,23],[183,21,148,25],[184,8,149,12],[184,12,149,16,"onProgress"],[184,22,149,26],[184,27,149,31],[184,29,149,33,"blockMixCnt"],[184,40,149,44],[184,43,149,47,"callbackPer"],[184,54,149,58],[184,55,149,59],[184,59,149,63,"blockMixCnt"],[184,70,149,74],[184,75,149,79,"totalBlockMix"],[184,88,149,92],[184,89,149,93],[184,91,150,16,"onProgress"],[184,101,150,26],[184,102,150,27,"blockMixCnt"],[184,113,150,38],[184,116,150,41,"totalBlockMix"],[184,129,150,54],[184,130,150,55],[185,6,151,8],[185,7,151,9],[186,4,152,4],[187,4,153,4],[187,11,153,11],[188,6,153,13,"N"],[188,7,153,14],[189,6,153,16,"r"],[189,7,153,17],[190,6,153,19,"p"],[190,7,153,20],[191,6,153,22,"dkLen"],[191,11,153,27],[192,6,153,29,"blockSize32"],[192,17,153,40],[193,6,153,42,"V"],[193,7,153,43],[194,6,153,45,"B32"],[194,9,153,48],[195,6,153,50,"B"],[195,7,153,51],[196,6,153,53,"tmp"],[196,9,153,56],[197,6,153,58,"blockMixCb"],[197,16,153,68],[198,6,153,70,"asyncTick"],[199,4,153,80],[199,5,153,81],[200,2,154,0],[201,2,155,0],[201,11,155,9,"scryptOutput"],[201,23,155,21,"scryptOutput"],[201,24,155,22,"password"],[201,32,155,30],[201,34,155,32,"dkLen"],[201,39,155,37],[201,41,155,39,"B"],[201,42,155,40],[201,44,155,42,"V"],[201,45,155,43],[201,47,155,45,"tmp"],[201,50,155,48],[201,52,155,50],[202,4,156,4],[202,10,156,10,"res"],[202,13,156,13],[202,16,156,16],[202,17,156,17],[202,18,156,18],[202,20,156,20,"pbkdf2_ts_1"],[202,31,156,31],[202,32,156,32,"pbkdf2"],[202,38,156,38],[202,40,156,40,"sha2_ts_1"],[202,49,156,49],[202,50,156,50,"sha256"],[202,56,156,56],[202,58,156,58,"password"],[202,66,156,66],[202,68,156,68,"B"],[202,69,156,69],[202,71,156,71],[203,6,156,73,"c"],[203,7,156,74],[203,9,156,76],[203,10,156,77],[204,6,156,79,"dkLen"],[205,4,156,85],[205,5,156,86],[205,6,156,87],[206,4,157,4],[206,5,157,5],[206,6,157,6],[206,8,157,8,"utils_ts_1"],[206,18,157,18],[206,19,157,19,"clean"],[206,24,157,24],[206,26,157,26,"B"],[206,27,157,27],[206,29,157,29,"V"],[206,30,157,30],[206,32,157,32,"tmp"],[206,35,157,35],[206,36,157,36],[207,4,158,4],[207,11,158,11,"res"],[207,14,158,14],[208,2,159,0],[209,2,160,0],[210,0,161,0],[211,0,162,0],[212,0,163,0],[213,0,164,0],[214,0,165,0],[215,0,166,0],[216,0,167,0],[217,0,168,0],[218,0,169,0],[219,0,170,0],[220,0,171,0],[221,0,172,0],[222,0,173,0],[223,0,174,0],[224,0,175,0],[225,2,176,0],[225,11,176,9,"scrypt"],[225,17,176,15,"scrypt"],[225,18,176,16,"password"],[225,26,176,24],[225,28,176,26,"salt"],[225,32,176,30],[225,34,176,32,"opts"],[225,38,176,36],[225,40,176,38],[226,4,177,4],[226,10,177,10],[227,6,177,12,"N"],[227,7,177,13],[228,6,177,15,"r"],[228,7,177,16],[229,6,177,18,"p"],[229,7,177,19],[230,6,177,21,"dkLen"],[230,11,177,26],[231,6,177,28,"blockSize32"],[231,17,177,39],[232,6,177,41,"V"],[232,7,177,42],[233,6,177,44,"B32"],[233,9,177,47],[234,6,177,49,"B"],[234,7,177,50],[235,6,177,52,"tmp"],[235,9,177,55],[236,6,177,57,"blockMixCb"],[237,4,177,68],[237,5,177,69],[237,8,177,72,"scryptInit"],[237,18,177,82],[237,19,177,83,"password"],[237,27,177,91],[237,29,177,93,"salt"],[237,33,177,97],[237,35,177,99,"opts"],[237,39,177,103],[237,40,177,104],[238,4,178,4],[238,5,178,5],[238,6,178,6],[238,8,178,8,"utils_ts_1"],[238,18,178,18],[238,19,178,19,"swap32IfBE"],[238,29,178,29],[238,31,178,31,"B32"],[238,34,178,34],[238,35,178,35],[239,4,179,4],[239,9,179,9],[239,13,179,13,"pi"],[239,15,179,15],[239,18,179,18],[239,19,179,19],[239,21,179,21,"pi"],[239,23,179,23],[239,26,179,26,"p"],[239,27,179,27],[239,29,179,29,"pi"],[239,31,179,31],[239,33,179,33],[239,35,179,35],[240,6,180,8],[240,12,180,14,"Pi"],[240,14,180,16],[240,17,180,19,"blockSize32"],[240,28,180,30],[240,31,180,33,"pi"],[240,33,180,35],[241,6,181,8],[241,11,181,13],[241,15,181,17,"i"],[241,16,181,18],[241,19,181,21],[241,20,181,22],[241,22,181,24,"i"],[241,23,181,25],[241,26,181,28,"blockSize32"],[241,37,181,39],[241,39,181,41,"i"],[241,40,181,42],[241,42,181,44],[241,44,182,12,"V"],[241,45,182,13],[241,46,182,14,"i"],[241,47,182,15],[241,48,182,16],[241,51,182,19,"B32"],[241,54,182,22],[241,55,182,23,"Pi"],[241,57,182,25],[241,60,182,28,"i"],[241,61,182,29],[241,62,182,30],[241,63,182,31],[241,64,182,32],[242,6,183,8],[242,11,183,13],[242,15,183,17,"i"],[242,16,183,18],[242,19,183,21],[242,20,183,22],[242,22,183,24,"pos"],[242,25,183,27],[242,28,183,30],[242,29,183,31],[242,31,183,33,"i"],[242,32,183,34],[242,35,183,37,"N"],[242,36,183,38],[242,39,183,41],[242,40,183,42],[242,42,183,44,"i"],[242,43,183,45],[242,45,183,47],[242,47,183,49],[243,8,184,12,"BlockMix"],[243,16,184,20],[243,17,184,21,"V"],[243,18,184,22],[243,20,184,24,"pos"],[243,23,184,27],[243,25,184,29,"V"],[243,26,184,30],[243,28,184,33,"pos"],[243,31,184,36],[243,35,184,40,"blockSize32"],[243,46,184,51],[243,48,184,54,"r"],[243,49,184,55],[243,50,184,56],[243,51,184,57],[243,52,184,58],[244,8,185,12,"blockMixCb"],[244,18,185,22],[244,19,185,23],[244,20,185,24],[245,6,186,8],[246,6,187,8,"BlockMix"],[246,14,187,16],[246,15,187,17,"V"],[246,16,187,18],[246,18,187,20],[246,19,187,21,"N"],[246,20,187,22],[246,23,187,25],[246,24,187,26],[246,28,187,30,"blockSize32"],[246,39,187,41],[246,41,187,43,"B32"],[246,44,187,46],[246,46,187,48,"Pi"],[246,48,187,50],[246,50,187,52,"r"],[246,51,187,53],[246,52,187,54],[246,53,187,55],[246,54,187,56],[247,6,188,8,"blockMixCb"],[247,16,188,18],[247,17,188,19],[247,18,188,20],[248,6,189,8],[248,11,189,13],[248,15,189,17,"i"],[248,16,189,18],[248,19,189,21],[248,20,189,22],[248,22,189,24,"i"],[248,23,189,25],[248,26,189,28,"N"],[248,27,189,29],[248,29,189,31,"i"],[248,30,189,32],[248,32,189,34],[248,34,189,36],[249,8,190,12],[250,8,191,12],[250,14,191,18,"j"],[250,15,191,19],[250,18,191,22,"B32"],[250,21,191,25],[250,22,191,26,"Pi"],[250,24,191,28],[250,27,191,31,"blockSize32"],[250,38,191,42],[250,41,191,45],[250,43,191,47],[250,44,191,48],[250,47,191,51,"N"],[250,48,191,52],[250,49,191,53],[250,50,191,54],[251,8,192,12],[251,13,192,17],[251,17,192,21,"k"],[251,18,192,22],[251,21,192,25],[251,22,192,26],[251,24,192,28,"k"],[251,25,192,29],[251,28,192,32,"blockSize32"],[251,39,192,43],[251,41,192,45,"k"],[251,42,192,46],[251,44,192,48],[251,46,193,16,"tmp"],[251,49,193,19],[251,50,193,20,"k"],[251,51,193,21],[251,52,193,22],[251,55,193,25,"B32"],[251,58,193,28],[251,59,193,29,"Pi"],[251,61,193,31],[251,64,193,34,"k"],[251,65,193,35],[251,66,193,36],[251,69,193,39,"V"],[251,70,193,40],[251,71,193,41,"j"],[251,72,193,42],[251,75,193,45,"blockSize32"],[251,86,193,56],[251,89,193,59,"k"],[251,90,193,60],[251,91,193,61],[251,92,193,62],[251,93,193,63],[252,8,194,12,"BlockMix"],[252,16,194,20],[252,17,194,21,"tmp"],[252,20,194,24],[252,22,194,26],[252,23,194,27],[252,25,194,29,"B32"],[252,28,194,32],[252,30,194,34,"Pi"],[252,32,194,36],[252,34,194,38,"r"],[252,35,194,39],[252,36,194,40],[252,37,194,41],[252,38,194,42],[253,8,195,12,"blockMixCb"],[253,18,195,22],[253,19,195,23],[253,20,195,24],[254,6,196,8],[255,4,197,4],[256,4,198,4],[256,5,198,5],[256,6,198,6],[256,8,198,8,"utils_ts_1"],[256,18,198,18],[256,19,198,19,"swap32IfBE"],[256,29,198,29],[256,31,198,31,"B32"],[256,34,198,34],[256,35,198,35],[257,4,199,4],[257,11,199,11,"scryptOutput"],[257,23,199,23],[257,24,199,24,"password"],[257,32,199,32],[257,34,199,34,"dkLen"],[257,39,199,39],[257,41,199,41,"B"],[257,42,199,42],[257,44,199,44,"V"],[257,45,199,45],[257,47,199,47,"tmp"],[257,50,199,50],[257,51,199,51],[258,2,200,0],[259,2,201,0],[260,0,202,0],[261,0,203,0],[262,0,204,0],[263,0,205,0],[264,2,206,0],[264,17,206,15,"scryptAsync"],[264,28,206,26,"scryptAsync"],[264,29,206,27,"password"],[264,37,206,35],[264,39,206,37,"salt"],[264,43,206,41],[264,45,206,43,"opts"],[264,49,206,47],[264,51,206,49],[265,4,207,4],[265,10,207,10],[266,6,207,12,"N"],[266,7,207,13],[267,6,207,15,"r"],[267,7,207,16],[268,6,207,18,"p"],[268,7,207,19],[269,6,207,21,"dkLen"],[269,11,207,26],[270,6,207,28,"blockSize32"],[270,17,207,39],[271,6,207,41,"V"],[271,7,207,42],[272,6,207,44,"B32"],[272,9,207,47],[273,6,207,49,"B"],[273,7,207,50],[274,6,207,52,"tmp"],[274,9,207,55],[275,6,207,57,"blockMixCb"],[275,16,207,67],[276,6,207,69,"asyncTick"],[277,4,207,79],[277,5,207,80],[277,8,207,83,"scryptInit"],[277,18,207,93],[277,19,207,94,"password"],[277,27,207,102],[277,29,207,104,"salt"],[277,33,207,108],[277,35,207,110,"opts"],[277,39,207,114],[277,40,207,115],[278,4,208,4],[278,5,208,5],[278,6,208,6],[278,8,208,8,"utils_ts_1"],[278,18,208,18],[278,19,208,19,"swap32IfBE"],[278,29,208,29],[278,31,208,31,"B32"],[278,34,208,34],[278,35,208,35],[279,4,209,4],[279,9,209,9],[279,13,209,13,"pi"],[279,15,209,15],[279,18,209,18],[279,19,209,19],[279,21,209,21,"pi"],[279,23,209,23],[279,26,209,26,"p"],[279,27,209,27],[279,29,209,29,"pi"],[279,31,209,31],[279,33,209,33],[279,35,209,35],[280,6,210,8],[280,12,210,14,"Pi"],[280,14,210,16],[280,17,210,19,"blockSize32"],[280,28,210,30],[280,31,210,33,"pi"],[280,33,210,35],[281,6,211,8],[281,11,211,13],[281,15,211,17,"i"],[281,16,211,18],[281,19,211,21],[281,20,211,22],[281,22,211,24,"i"],[281,23,211,25],[281,26,211,28,"blockSize32"],[281,37,211,39],[281,39,211,41,"i"],[281,40,211,42],[281,42,211,44],[281,44,212,12,"V"],[281,45,212,13],[281,46,212,14,"i"],[281,47,212,15],[281,48,212,16],[281,51,212,19,"B32"],[281,54,212,22],[281,55,212,23,"Pi"],[281,57,212,25],[281,60,212,28,"i"],[281,61,212,29],[281,62,212,30],[281,63,212,31],[281,64,212,32],[282,6,213,8],[282,10,213,12,"pos"],[282,13,213,15],[282,16,213,18],[282,17,213,19],[283,6,214,8],[283,12,214,14],[283,13,214,15],[283,14,214,16],[283,16,214,18,"utils_ts_1"],[283,26,214,28],[283,27,214,29,"asyncLoop"],[283,36,214,38],[283,38,214,40,"N"],[283,39,214,41],[283,42,214,44],[283,43,214,45],[283,45,214,47,"asyncTick"],[283,54,214,56],[283,56,214,58],[283,62,214,64],[284,8,215,12,"BlockMix"],[284,16,215,20],[284,17,215,21,"V"],[284,18,215,22],[284,20,215,24,"pos"],[284,23,215,27],[284,25,215,29,"V"],[284,26,215,30],[284,28,215,33,"pos"],[284,31,215,36],[284,35,215,40,"blockSize32"],[284,46,215,51],[284,48,215,54,"r"],[284,49,215,55],[284,50,215,56],[284,51,215,57],[284,52,215,58],[285,8,216,12,"blockMixCb"],[285,18,216,22],[285,19,216,23],[285,20,216,24],[286,6,217,8],[286,7,217,9],[286,8,217,10],[287,6,218,8,"BlockMix"],[287,14,218,16],[287,15,218,17,"V"],[287,16,218,18],[287,18,218,20],[287,19,218,21,"N"],[287,20,218,22],[287,23,218,25],[287,24,218,26],[287,28,218,30,"blockSize32"],[287,39,218,41],[287,41,218,43,"B32"],[287,44,218,46],[287,46,218,48,"Pi"],[287,48,218,50],[287,50,218,52,"r"],[287,51,218,53],[287,52,218,54],[287,53,218,55],[287,54,218,56],[288,6,219,8,"blockMixCb"],[288,16,219,18],[288,17,219,19],[288,18,219,20],[289,6,220,8],[289,12,220,14],[289,13,220,15],[289,14,220,16],[289,16,220,18,"utils_ts_1"],[289,26,220,28],[289,27,220,29,"asyncLoop"],[289,36,220,38],[289,38,220,40,"N"],[289,39,220,41],[289,41,220,43,"asyncTick"],[289,50,220,52],[289,52,220,54],[289,58,220,60],[290,8,221,12],[291,8,222,12],[291,14,222,18,"j"],[291,15,222,19],[291,18,222,22,"B32"],[291,21,222,25],[291,22,222,26,"Pi"],[291,24,222,28],[291,27,222,31,"blockSize32"],[291,38,222,42],[291,41,222,45],[291,43,222,47],[291,44,222,48],[291,47,222,51,"N"],[291,48,222,52],[291,49,222,53],[291,50,222,54],[292,8,223,12],[292,13,223,17],[292,17,223,21,"k"],[292,18,223,22],[292,21,223,25],[292,22,223,26],[292,24,223,28,"k"],[292,25,223,29],[292,28,223,32,"blockSize32"],[292,39,223,43],[292,41,223,45,"k"],[292,42,223,46],[292,44,223,48],[292,46,224,16,"tmp"],[292,49,224,19],[292,50,224,20,"k"],[292,51,224,21],[292,52,224,22],[292,55,224,25,"B32"],[292,58,224,28],[292,59,224,29,"Pi"],[292,61,224,31],[292,64,224,34,"k"],[292,65,224,35],[292,66,224,36],[292,69,224,39,"V"],[292,70,224,40],[292,71,224,41,"j"],[292,72,224,42],[292,75,224,45,"blockSize32"],[292,86,224,56],[292,89,224,59,"k"],[292,90,224,60],[292,91,224,61],[292,92,224,62],[292,93,224,63],[293,8,225,12,"BlockMix"],[293,16,225,20],[293,17,225,21,"tmp"],[293,20,225,24],[293,22,225,26],[293,23,225,27],[293,25,225,29,"B32"],[293,28,225,32],[293,30,225,34,"Pi"],[293,32,225,36],[293,34,225,38,"r"],[293,35,225,39],[293,36,225,40],[293,37,225,41],[293,38,225,42],[294,8,226,12,"blockMixCb"],[294,18,226,22],[294,19,226,23],[294,20,226,24],[295,6,227,8],[295,7,227,9],[295,8,227,10],[296,4,228,4],[297,4,229,4],[297,5,229,5],[297,6,229,6],[297,8,229,8,"utils_ts_1"],[297,18,229,18],[297,19,229,19,"swap32IfBE"],[297,29,229,29],[297,31,229,31,"B32"],[297,34,229,34],[297,35,229,35],[298,4,230,4],[298,11,230,11,"scryptOutput"],[298,23,230,23],[298,24,230,24,"password"],[298,32,230,32],[298,34,230,34,"dkLen"],[298,39,230,39],[298,41,230,41,"B"],[298,42,230,42],[298,44,230,44,"V"],[298,45,230,45],[298,47,230,47,"tmp"],[298,50,230,50],[298,51,230,51],[299,2,231,0],[300,0,231,1],[300,3]],"functionMap":{"names":["","XorAndSalsa","BlockMix","scryptInit","blockMixCb","scryptOutput","scrypt","scryptAsync",""],"mappings":"AAA;ACe;CDiE;AEC;CFa;AGE;qBC2C,SD;qBCO;SDI;CHG;AKC;CLI;AMiB;CNwB;AOM;0DCQ;SDG;sDCG;SDO;CPI"},"hasCjsExports":true},"type":"js/module"}]}