mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 18:01:02 +00:00
1 line
57 KiB
Plaintext
1 line
57 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"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 var _asyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\").default;\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 var pbkdf2_ts_1 = require(_dependencyMap[1], \"./pbkdf2.js\");\n var sha2_ts_1 = require(_dependencyMap[2], \"./sha2.js\");\n // prettier-ignore\n var utils_ts_1 = require(_dependencyMap[3], \"./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 var y00 = prev[pi++] ^ input[ii++],\n y01 = prev[pi++] ^ input[ii++];\n var y02 = prev[pi++] ^ input[ii++],\n y03 = prev[pi++] ^ input[ii++];\n var y04 = prev[pi++] ^ input[ii++],\n y05 = prev[pi++] ^ input[ii++];\n var y06 = prev[pi++] ^ input[ii++],\n y07 = prev[pi++] ^ input[ii++];\n var y08 = prev[pi++] ^ input[ii++],\n y09 = prev[pi++] ^ input[ii++];\n var y10 = prev[pi++] ^ input[ii++],\n y11 = prev[pi++] ^ input[ii++];\n var y12 = prev[pi++] ^ input[ii++],\n y13 = prev[pi++] ^ input[ii++];\n var y14 = prev[pi++] ^ input[ii++],\n y15 = prev[pi++] ^ input[ii++];\n // Save state to temporary variables (salsa)\n var 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 (var 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 var head = oi + 0;\n var tail = oi + 16 * r;\n for (var i = 0; i < 16; i++) out[tail + i] = input[ii + (2 * r - 1) * 16 + i]; // X ← B[2r−1]\n for (var _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 var opts = (0, utils_ts_1.checkOpts)({\n dkLen: 32,\n asyncTick: 10,\n maxmem: 1024 ** 3 + 1024\n }, _opts);\n var N = opts.N,\n r = opts.r,\n p = opts.p,\n dkLen = opts.dkLen,\n asyncTick = opts.asyncTick,\n maxmem = opts.maxmem,\n onProgress = opts.onProgress;\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 var blockSize = 128 * r;\n var 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 var 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 var 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 var B = (0, pbkdf2_ts_1.pbkdf2)(sha2_ts_1.sha256, password, salt, {\n c: 1,\n dkLen: blockSize * p\n });\n var B32 = (0, utils_ts_1.u32)(B);\n // Re-used between parallel iterations. Array(iterations) of B\n var V = (0, utils_ts_1.u32)(new Uint8Array(blockSize * N));\n var tmp = (0, utils_ts_1.u32)(new Uint8Array(blockSize));\n var blockMixCb = () => {};\n if (onProgress) {\n var 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 var callbackPer = Math.max(Math.floor(totalBlockMix / 10000), 1);\n var 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 var 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 var _scryptInit = scryptInit(password, salt, opts),\n N = _scryptInit.N,\n r = _scryptInit.r,\n p = _scryptInit.p,\n dkLen = _scryptInit.dkLen,\n blockSize32 = _scryptInit.blockSize32,\n V = _scryptInit.V,\n B32 = _scryptInit.B32,\n B = _scryptInit.B,\n tmp = _scryptInit.tmp,\n blockMixCb = _scryptInit.blockMixCb;\n (0, utils_ts_1.swap32IfBE)(B32);\n for (var pi = 0; pi < p; pi++) {\n var Pi = blockSize32 * pi;\n for (var i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n for (var _i2 = 0, pos = 0; _i2 < N - 1; _i2++) {\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 (var _i3 = 0; _i3 < N; _i3++) {\n // First u32 of the last 64-byte block (u32 is LE)\n var j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (var 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 function scryptAsync(_x, _x2, _x3) {\n return _scryptAsync.apply(this, arguments);\n }\n function _scryptAsync() {\n _scryptAsync = _asyncToGenerator(function* (password, salt, opts) {\n var _scryptInit2 = scryptInit(password, salt, opts),\n N = _scryptInit2.N,\n r = _scryptInit2.r,\n p = _scryptInit2.p,\n dkLen = _scryptInit2.dkLen,\n blockSize32 = _scryptInit2.blockSize32,\n V = _scryptInit2.V,\n B32 = _scryptInit2.B32,\n B = _scryptInit2.B,\n tmp = _scryptInit2.tmp,\n blockMixCb = _scryptInit2.blockMixCb,\n asyncTick = _scryptInit2.asyncTick;\n (0, utils_ts_1.swap32IfBE)(B32);\n var _loop = function* () {\n var Pi = blockSize32 * pi;\n for (var i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n var pos = 0;\n yield (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 yield (0, utils_ts_1.asyncLoop)(N, asyncTick, () => {\n // First u32 of the last 64-byte block (u32 is LE)\n var j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (var 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 for (var pi = 0; pi < p; pi++) {\n yield* _loop();\n }\n (0, utils_ts_1.swap32IfBE)(B32);\n return scryptOutput(password, dkLen, B, V, tmp);\n });\n return _scryptAsync.apply(this, arguments);\n }\n});","lineCount":306,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_asyncToGenerator"],[4,23,1,13],[4,26,1,13,"require"],[4,33,1,13],[4,34,1,13,"_dependencyMap"],[4,48,1,13],[4,96,1,13,"default"],[4,103,1,13],[5,2,2,0,"Object"],[5,8,2,6],[5,9,2,7,"defineProperty"],[5,23,2,21],[5,24,2,22,"exports"],[5,31,2,29],[5,33,2,31],[5,45,2,43],[5,47,2,45],[6,4,2,47,"value"],[6,9,2,52],[6,11,2,54],[7,2,2,59],[7,3,2,60],[7,4,2,61],[8,2,3,0,"exports"],[8,9,3,7],[8,10,3,8,"scrypt"],[8,16,3,14],[8,19,3,17,"scrypt"],[8,25,3,23],[9,2,4,0,"exports"],[9,9,4,7],[9,10,4,8,"scryptAsync"],[9,21,4,19],[9,24,4,22,"scryptAsync"],[9,35,4,33],[10,2,5,0],[11,0,6,0],[12,0,7,0],[13,0,8,0],[14,2,9,0],[14,6,9,6,"pbkdf2_ts_1"],[14,17,9,17],[14,20,9,20,"require"],[14,27,9,27],[14,28,9,27,"_dependencyMap"],[14,42,9,27],[14,60,9,41],[14,61,9,42],[15,2,10,0],[15,6,10,6,"sha2_ts_1"],[15,15,10,15],[15,18,10,18,"require"],[15,25,10,25],[15,26,10,25,"_dependencyMap"],[15,40,10,25],[15,56,10,37],[15,57,10,38],[16,2,11,0],[17,2,12,0],[17,6,12,6,"utils_ts_1"],[17,16,12,16],[17,19,12,19,"require"],[17,26,12,26],[17,27,12,26,"_dependencyMap"],[17,41,12,26],[17,58,12,39],[17,59,12,40],[18,2,13,0],[19,2,14,0],[20,2,15,0],[21,2,16,0],[21,11,16,9,"XorAndSalsa"],[21,22,16,20,"XorAndSalsa"],[21,23,16,21,"prev"],[21,27,16,25],[21,29,16,27,"pi"],[21,31,16,29],[21,33,16,31,"input"],[21,38,16,36],[21,40,16,38,"ii"],[21,42,16,40],[21,44,16,42,"out"],[21,47,16,45],[21,49,16,47,"oi"],[21,51,16,49],[21,53,16,51],[22,4,17,4],[23,4,18,4],[24,4,19,4],[24,8,19,8,"y00"],[24,11,19,11],[24,14,19,14,"prev"],[24,18,19,18],[24,19,19,19,"pi"],[24,21,19,21],[24,23,19,23],[24,24,19,24],[24,27,19,27,"input"],[24,32,19,32],[24,33,19,33,"ii"],[24,35,19,35],[24,37,19,37],[24,38,19,38],[25,6,19,40,"y01"],[25,9,19,43],[25,12,19,46,"prev"],[25,16,19,50],[25,17,19,51,"pi"],[25,19,19,53],[25,21,19,55],[25,22,19,56],[25,25,19,59,"input"],[25,30,19,64],[25,31,19,65,"ii"],[25,33,19,67],[25,35,19,69],[25,36,19,70],[26,4,20,4],[26,8,20,8,"y02"],[26,11,20,11],[26,14,20,14,"prev"],[26,18,20,18],[26,19,20,19,"pi"],[26,21,20,21],[26,23,20,23],[26,24,20,24],[26,27,20,27,"input"],[26,32,20,32],[26,33,20,33,"ii"],[26,35,20,35],[26,37,20,37],[26,38,20,38],[27,6,20,40,"y03"],[27,9,20,43],[27,12,20,46,"prev"],[27,16,20,50],[27,17,20,51,"pi"],[27,19,20,53],[27,21,20,55],[27,22,20,56],[27,25,20,59,"input"],[27,30,20,64],[27,31,20,65,"ii"],[27,33,20,67],[27,35,20,69],[27,36,20,70],[28,4,21,4],[28,8,21,8,"y04"],[28,11,21,11],[28,14,21,14,"prev"],[28,18,21,18],[28,19,21,19,"pi"],[28,21,21,21],[28,23,21,23],[28,24,21,24],[28,27,21,27,"input"],[28,32,21,32],[28,33,21,33,"ii"],[28,35,21,35],[28,37,21,37],[28,38,21,38],[29,6,21,40,"y05"],[29,9,21,43],[29,12,21,46,"prev"],[29,16,21,50],[29,17,21,51,"pi"],[29,19,21,53],[29,21,21,55],[29,22,21,56],[29,25,21,59,"input"],[29,30,21,64],[29,31,21,65,"ii"],[29,33,21,67],[29,35,21,69],[29,36,21,70],[30,4,22,4],[30,8,22,8,"y06"],[30,11,22,11],[30,14,22,14,"prev"],[30,18,22,18],[30,19,22,19,"pi"],[30,21,22,21],[30,23,22,23],[30,24,22,24],[30,27,22,27,"input"],[30,32,22,32],[30,33,22,33,"ii"],[30,35,22,35],[30,37,22,37],[30,38,22,38],[31,6,22,40,"y07"],[31,9,22,43],[31,12,22,46,"prev"],[31,16,22,50],[31,17,22,51,"pi"],[31,19,22,53],[31,21,22,55],[31,22,22,56],[31,25,22,59,"input"],[31,30,22,64],[31,31,22,65,"ii"],[31,33,22,67],[31,35,22,69],[31,36,22,70],[32,4,23,4],[32,8,23,8,"y08"],[32,11,23,11],[32,14,23,14,"prev"],[32,18,23,18],[32,19,23,19,"pi"],[32,21,23,21],[32,23,23,23],[32,24,23,24],[32,27,23,27,"input"],[32,32,23,32],[32,33,23,33,"ii"],[32,35,23,35],[32,37,23,37],[32,38,23,38],[33,6,23,40,"y09"],[33,9,23,43],[33,12,23,46,"prev"],[33,16,23,50],[33,17,23,51,"pi"],[33,19,23,53],[33,21,23,55],[33,22,23,56],[33,25,23,59,"input"],[33,30,23,64],[33,31,23,65,"ii"],[33,33,23,67],[33,35,23,69],[33,36,23,70],[34,4,24,4],[34,8,24,8,"y10"],[34,11,24,11],[34,14,24,14,"prev"],[34,18,24,18],[34,19,24,19,"pi"],[34,21,24,21],[34,23,24,23],[34,24,24,24],[34,27,24,27,"input"],[34,32,24,32],[34,33,24,33,"ii"],[34,35,24,35],[34,37,24,37],[34,38,24,38],[35,6,24,40,"y11"],[35,9,24,43],[35,12,24,46,"prev"],[35,16,24,50],[35,17,24,51,"pi"],[35,19,24,53],[35,21,24,55],[35,22,24,56],[35,25,24,59,"input"],[35,30,24,64],[35,31,24,65,"ii"],[35,33,24,67],[35,35,24,69],[35,36,24,70],[36,4,25,4],[36,8,25,8,"y12"],[36,11,25,11],[36,14,25,14,"prev"],[36,18,25,18],[36,19,25,19,"pi"],[36,21,25,21],[36,23,25,23],[36,24,25,24],[36,27,25,27,"input"],[36,32,25,32],[36,33,25,33,"ii"],[36,35,25,35],[36,37,25,37],[36,38,25,38],[37,6,25,40,"y13"],[37,9,25,43],[37,12,25,46,"prev"],[37,16,25,50],[37,17,25,51,"pi"],[37,19,25,53],[37,21,25,55],[37,22,25,56],[37,25,25,59,"input"],[37,30,25,64],[37,31,25,65,"ii"],[37,33,25,67],[37,35,25,69],[37,36,25,70],[38,4,26,4],[38,8,26,8,"y14"],[38,11,26,11],[38,14,26,14,"prev"],[38,18,26,18],[38,19,26,19,"pi"],[38,21,26,21],[38,23,26,23],[38,24,26,24],[38,27,26,27,"input"],[38,32,26,32],[38,33,26,33,"ii"],[38,35,26,35],[38,37,26,37],[38,38,26,38],[39,6,26,40,"y15"],[39,9,26,43],[39,12,26,46,"prev"],[39,16,26,50],[39,17,26,51,"pi"],[39,19,26,53],[39,21,26,55],[39,22,26,56],[39,25,26,59,"input"],[39,30,26,64],[39,31,26,65,"ii"],[39,33,26,67],[39,35,26,69],[39,36,26,70],[40,4,27,4],[41,4,28,4],[41,8,28,8,"x00"],[41,11,28,11],[41,14,28,14,"y00"],[41,17,28,17],[42,6,28,19,"x01"],[42,9,28,22],[42,12,28,25,"y01"],[42,15,28,28],[43,6,28,30,"x02"],[43,9,28,33],[43,12,28,36,"y02"],[43,15,28,39],[44,6,28,41,"x03"],[44,9,28,44],[44,12,28,47,"y03"],[44,15,28,50],[45,6,28,52,"x04"],[45,9,28,55],[45,12,28,58,"y04"],[45,15,28,61],[46,6,28,63,"x05"],[46,9,28,66],[46,12,28,69,"y05"],[46,15,28,72],[47,6,28,74,"x06"],[47,9,28,77],[47,12,28,80,"y06"],[47,15,28,83],[48,6,28,85,"x07"],[48,9,28,88],[48,12,28,91,"y07"],[48,15,28,94],[49,6,28,96,"x08"],[49,9,28,99],[49,12,28,102,"y08"],[49,15,28,105],[50,6,28,107,"x09"],[50,9,28,110],[50,12,28,113,"y09"],[50,15,28,116],[51,6,28,118,"x10"],[51,9,28,121],[51,12,28,124,"y10"],[51,15,28,127],[52,6,28,129,"x11"],[52,9,28,132],[52,12,28,135,"y11"],[52,15,28,138],[53,6,28,140,"x12"],[53,9,28,143],[53,12,28,146,"y12"],[53,15,28,149],[54,6,28,151,"x13"],[54,9,28,154],[54,12,28,157,"y13"],[54,15,28,160],[55,6,28,162,"x14"],[55,9,28,165],[55,12,28,168,"y14"],[55,15,28,171],[56,6,28,173,"x15"],[56,9,28,176],[56,12,28,179,"y15"],[56,15,28,182],[57,4,29,4],[58,4,30,4],[58,9,30,9],[58,13,30,13,"i"],[58,14,30,14],[58,17,30,17],[58,18,30,18],[58,20,30,20,"i"],[58,21,30,21],[58,24,30,24],[58,25,30,25],[58,27,30,27,"i"],[58,28,30,28],[58,32,30,32],[58,33,30,33],[58,35,30,35],[59,6,31,8,"x04"],[59,9,31,11],[59,13,31,15],[59,14,31,16],[59,15,31,17],[59,17,31,19,"utils_ts_1"],[59,27,31,29],[59,28,31,30,"rotl"],[59,32,31,34],[59,34,31,36,"x00"],[59,37,31,39],[59,40,31,42,"x12"],[59,43,31,45],[59,46,31,48],[59,47,31,49],[59,49,31,51],[59,50,31,52],[59,51,31,53],[60,6,32,8,"x08"],[60,9,32,11],[60,13,32,15],[60,14,32,16],[60,15,32,17],[60,17,32,19,"utils_ts_1"],[60,27,32,29],[60,28,32,30,"rotl"],[60,32,32,34],[60,34,32,36,"x04"],[60,37,32,39],[60,40,32,42,"x00"],[60,43,32,45],[60,46,32,48],[60,47,32,49],[60,49,32,51],[60,50,32,52],[60,51,32,53],[61,6,33,8,"x12"],[61,9,33,11],[61,13,33,15],[61,14,33,16],[61,15,33,17],[61,17,33,19,"utils_ts_1"],[61,27,33,29],[61,28,33,30,"rotl"],[61,32,33,34],[61,34,33,36,"x08"],[61,37,33,39],[61,40,33,42,"x04"],[61,43,33,45],[61,46,33,48],[61,47,33,49],[61,49,33,51],[61,51,33,53],[61,52,33,54],[62,6,34,8,"x00"],[62,9,34,11],[62,13,34,15],[62,14,34,16],[62,15,34,17],[62,17,34,19,"utils_ts_1"],[62,27,34,29],[62,28,34,30,"rotl"],[62,32,34,34],[62,34,34,36,"x12"],[62,37,34,39],[62,40,34,42,"x08"],[62,43,34,45],[62,46,34,48],[62,47,34,49],[62,49,34,51],[62,51,34,53],[62,52,34,54],[63,6,35,8,"x09"],[63,9,35,11],[63,13,35,15],[63,14,35,16],[63,15,35,17],[63,17,35,19,"utils_ts_1"],[63,27,35,29],[63,28,35,30,"rotl"],[63,32,35,34],[63,34,35,36,"x05"],[63,37,35,39],[63,40,35,42,"x01"],[63,43,35,45],[63,46,35,48],[63,47,35,49],[63,49,35,51],[63,50,35,52],[63,51,35,53],[64,6,36,8,"x13"],[64,9,36,11],[64,13,36,15],[64,14,36,16],[64,15,36,17],[64,17,36,19,"utils_ts_1"],[64,27,36,29],[64,28,36,30,"rotl"],[64,32,36,34],[64,34,36,36,"x09"],[64,37,36,39],[64,40,36,42,"x05"],[64,43,36,45],[64,46,36,48],[64,47,36,49],[64,49,36,51],[64,50,36,52],[64,51,36,53],[65,6,37,8,"x01"],[65,9,37,11],[65,13,37,15],[65,14,37,16],[65,15,37,17],[65,17,37,19,"utils_ts_1"],[65,27,37,29],[65,28,37,30,"rotl"],[65,32,37,34],[65,34,37,36,"x13"],[65,37,37,39],[65,40,37,42,"x09"],[65,43,37,45],[65,46,37,48],[65,47,37,49],[65,49,37,51],[65,51,37,53],[65,52,37,54],[66,6,38,8,"x05"],[66,9,38,11],[66,13,38,15],[66,14,38,16],[66,15,38,17],[66,17,38,19,"utils_ts_1"],[66,27,38,29],[66,28,38,30,"rotl"],[66,32,38,34],[66,34,38,36,"x01"],[66,37,38,39],[66,40,38,42,"x13"],[66,43,38,45],[66,46,38,48],[66,47,38,49],[66,49,38,51],[66,51,38,53],[66,52,38,54],[67,6,39,8,"x14"],[67,9,39,11],[67,13,39,15],[67,14,39,16],[67,15,39,17],[67,17,39,19,"utils_ts_1"],[67,27,39,29],[67,28,39,30,"rotl"],[67,32,39,34],[67,34,39,36,"x10"],[67,37,39,39],[67,40,39,42,"x06"],[67,43,39,45],[67,46,39,48],[67,47,39,49],[67,49,39,51],[67,50,39,52],[67,51,39,53],[68,6,40,8,"x02"],[68,9,40,11],[68,13,40,15],[68,14,40,16],[68,15,40,17],[68,17,40,19,"utils_ts_1"],[68,27,40,29],[68,28,40,30,"rotl"],[68,32,40,34],[68,34,40,36,"x14"],[68,37,40,39],[68,40,40,42,"x10"],[68,43,40,45],[68,46,40,48],[68,47,40,49],[68,49,40,51],[68,50,40,52],[68,51,40,53],[69,6,41,8,"x06"],[69,9,41,11],[69,13,41,15],[69,14,41,16],[69,15,41,17],[69,17,41,19,"utils_ts_1"],[69,27,41,29],[69,28,41,30,"rotl"],[69,32,41,34],[69,34,41,36,"x02"],[69,37,41,39],[69,40,41,42,"x14"],[69,43,41,45],[69,46,41,48],[69,47,41,49],[69,49,41,51],[69,51,41,53],[69,52,41,54],[70,6,42,8,"x10"],[70,9,42,11],[70,13,42,15],[70,14,42,16],[70,15,42,17],[70,17,42,19,"utils_ts_1"],[70,27,42,29],[70,28,42,30,"rotl"],[70,32,42,34],[70,34,42,36,"x06"],[70,37,42,39],[70,40,42,42,"x02"],[70,43,42,45],[70,46,42,48],[70,47,42,49],[70,49,42,51],[70,51,42,53],[70,52,42,54],[71,6,43,8,"x03"],[71,9,43,11],[71,13,43,15],[71,14,43,16],[71,15,43,17],[71,17,43,19,"utils_ts_1"],[71,27,43,29],[71,28,43,30,"rotl"],[71,32,43,34],[71,34,43,36,"x15"],[71,37,43,39],[71,40,43,42,"x11"],[71,43,43,45],[71,46,43,48],[71,47,43,49],[71,49,43,51],[71,50,43,52],[71,51,43,53],[72,6,44,8,"x07"],[72,9,44,11],[72,13,44,15],[72,14,44,16],[72,15,44,17],[72,17,44,19,"utils_ts_1"],[72,27,44,29],[72,28,44,30,"rotl"],[72,32,44,34],[72,34,44,36,"x03"],[72,37,44,39],[72,40,44,42,"x15"],[72,43,44,45],[72,46,44,48],[72,47,44,49],[72,49,44,51],[72,50,44,52],[72,51,44,53],[73,6,45,8,"x11"],[73,9,45,11],[73,13,45,15],[73,14,45,16],[73,15,45,17],[73,17,45,19,"utils_ts_1"],[73,27,45,29],[73,28,45,30,"rotl"],[73,32,45,34],[73,34,45,36,"x07"],[73,37,45,39],[73,40,45,42,"x03"],[73,43,45,45],[73,46,45,48],[73,47,45,49],[73,49,45,51],[73,51,45,53],[73,52,45,54],[74,6,46,8,"x15"],[74,9,46,11],[74,13,46,15],[74,14,46,16],[74,15,46,17],[74,17,46,19,"utils_ts_1"],[74,27,46,29],[74,28,46,30,"rotl"],[74,32,46,34],[74,34,46,36,"x11"],[74,37,46,39],[74,40,46,42,"x07"],[74,43,46,45],[74,46,46,48],[74,47,46,49],[74,49,46,51],[74,51,46,53],[74,52,46,54],[75,6,47,8,"x01"],[75,9,47,11],[75,13,47,15],[75,14,47,16],[75,15,47,17],[75,17,47,19,"utils_ts_1"],[75,27,47,29],[75,28,47,30,"rotl"],[75,32,47,34],[75,34,47,36,"x00"],[75,37,47,39],[75,40,47,42,"x03"],[75,43,47,45],[75,46,47,48],[75,47,47,49],[75,49,47,51],[75,50,47,52],[75,51,47,53],[76,6,48,8,"x02"],[76,9,48,11],[76,13,48,15],[76,14,48,16],[76,15,48,17],[76,17,48,19,"utils_ts_1"],[76,27,48,29],[76,28,48,30,"rotl"],[76,32,48,34],[76,34,48,36,"x01"],[76,37,48,39],[76,40,48,42,"x00"],[76,43,48,45],[76,46,48,48],[76,47,48,49],[76,49,48,51],[76,50,48,52],[76,51,48,53],[77,6,49,8,"x03"],[77,9,49,11],[77,13,49,15],[77,14,49,16],[77,15,49,17],[77,17,49,19,"utils_ts_1"],[77,27,49,29],[77,28,49,30,"rotl"],[77,32,49,34],[77,34,49,36,"x02"],[77,37,49,39],[77,40,49,42,"x01"],[77,43,49,45],[77,46,49,48],[77,47,49,49],[77,49,49,51],[77,51,49,53],[77,52,49,54],[78,6,50,8,"x00"],[78,9,50,11],[78,13,50,15],[78,14,50,16],[78,15,50,17],[78,17,50,19,"utils_ts_1"],[78,27,50,29],[78,28,50,30,"rotl"],[78,32,50,34],[78,34,50,36,"x03"],[78,37,50,39],[78,40,50,42,"x02"],[78,43,50,45],[78,46,50,48],[78,47,50,49],[78,49,50,51],[78,51,50,53],[78,52,50,54],[79,6,51,8,"x06"],[79,9,51,11],[79,13,51,15],[79,14,51,16],[79,15,51,17],[79,17,51,19,"utils_ts_1"],[79,27,51,29],[79,28,51,30,"rotl"],[79,32,51,34],[79,34,51,36,"x05"],[79,37,51,39],[79,40,51,42,"x04"],[79,43,51,45],[79,46,51,48],[79,47,51,49],[79,49,51,51],[79,50,51,52],[79,51,51,53],[80,6,52,8,"x07"],[80,9,52,11],[80,13,52,15],[80,14,52,16],[80,15,52,17],[80,17,52,19,"utils_ts_1"],[80,27,52,29],[80,28,52,30,"rotl"],[80,32,52,34],[80,34,52,36,"x06"],[80,37,52,39],[80,40,52,42,"x05"],[80,43,52,45],[80,46,52,48],[80,47,52,49],[80,49,52,51],[80,50,52,52],[80,51,52,53],[81,6,53,8,"x04"],[81,9,53,11],[81,13,53,15],[81,14,53,16],[81,15,53,17],[81,17,53,19,"utils_ts_1"],[81,27,53,29],[81,28,53,30,"rotl"],[81,32,53,34],[81,34,53,36,"x07"],[81,37,53,39],[81,40,53,42,"x06"],[81,43,53,45],[81,46,53,48],[81,47,53,49],[81,49,53,51],[81,51,53,53],[81,52,53,54],[82,6,54,8,"x05"],[82,9,54,11],[82,13,54,15],[82,14,54,16],[82,15,54,17],[82,17,54,19,"utils_ts_1"],[82,27,54,29],[82,28,54,30,"rotl"],[82,32,54,34],[82,34,54,36,"x04"],[82,37,54,39],[82,40,54,42,"x07"],[82,43,54,45],[82,46,54,48],[82,47,54,49],[82,49,54,51],[82,51,54,53],[82,52,54,54],[83,6,55,8,"x11"],[83,9,55,11],[83,13,55,15],[83,14,55,16],[83,15,55,17],[83,17,55,19,"utils_ts_1"],[83,27,55,29],[83,28,55,30,"rotl"],[83,32,55,34],[83,34,55,36,"x10"],[83,37,55,39],[83,40,55,42,"x09"],[83,43,55,45],[83,46,55,48],[83,47,55,49],[83,49,55,51],[83,50,55,52],[83,51,55,53],[84,6,56,8,"x08"],[84,9,56,11],[84,13,56,15],[84,14,56,16],[84,15,56,17],[84,17,56,19,"utils_ts_1"],[84,27,56,29],[84,28,56,30,"rotl"],[84,32,56,34],[84,34,56,36,"x11"],[84,37,56,39],[84,40,56,42,"x10"],[84,43,56,45],[84,46,56,48],[84,47,56,49],[84,49,56,51],[84,50,56,52],[84,51,56,53],[85,6,57,8,"x09"],[85,9,57,11],[85,13,57,15],[85,14,57,16],[85,15,57,17],[85,17,57,19,"utils_ts_1"],[85,27,57,29],[85,28,57,30,"rotl"],[85,32,57,34],[85,34,57,36,"x08"],[85,37,57,39],[85,40,57,42,"x11"],[85,43,57,45],[85,46,57,48],[85,47,57,49],[85,49,57,51],[85,51,57,53],[85,52,57,54],[86,6,58,8,"x10"],[86,9,58,11],[86,13,58,15],[86,14,58,16],[86,15,58,17],[86,17,58,19,"utils_ts_1"],[86,27,58,29],[86,28,58,30,"rotl"],[86,32,58,34],[86,34,58,36,"x09"],[86,37,58,39],[86,40,58,42,"x08"],[86,43,58,45],[86,46,58,48],[86,47,58,49],[86,49,58,51],[86,51,58,53],[86,52,58,54],[87,6,59,8,"x12"],[87,9,59,11],[87,13,59,15],[87,14,59,16],[87,15,59,17],[87,17,59,19,"utils_ts_1"],[87,27,59,29],[87,28,59,30,"rotl"],[87,32,59,34],[87,34,59,36,"x15"],[87,37,59,39],[87,40,59,42,"x14"],[87,43,59,45],[87,46,59,48],[87,47,59,49],[87,49,59,51],[87,50,59,52],[87,51,59,53],[88,6,60,8,"x13"],[88,9,60,11],[88,13,60,15],[88,14,60,16],[88,15,60,17],[88,17,60,19,"utils_ts_1"],[88,27,60,29],[88,28,60,30,"rotl"],[88,32,60,34],[88,34,60,36,"x12"],[88,37,60,39],[88,40,60,42,"x15"],[88,43,60,45],[88,46,60,48],[88,47,60,49],[88,49,60,51],[88,50,60,52],[88,51,60,53],[89,6,61,8,"x14"],[89,9,61,11],[89,13,61,15],[89,14,61,16],[89,15,61,17],[89,17,61,19,"utils_ts_1"],[89,27,61,29],[89,28,61,30,"rotl"],[89,32,61,34],[89,34,61,36,"x13"],[89,37,61,39],[89,40,61,42,"x12"],[89,43,61,45],[89,46,61,48],[89,47,61,49],[89,49,61,51],[89,51,61,53],[89,52,61,54],[90,6,62,8,"x15"],[90,9,62,11],[90,13,62,15],[90,14,62,16],[90,15,62,17],[90,17,62,19,"utils_ts_1"],[90,27,62,29],[90,28,62,30,"rotl"],[90,32,62,34],[90,34,62,36,"x14"],[90,37,62,39],[90,40,62,42,"x13"],[90,43,62,45],[90,46,62,48],[90,47,62,49],[90,49,62,51],[90,51,62,53],[90,52,62,54],[91,4,63,4],[92,4,64,4],[93,4,65,4,"out"],[93,7,65,7],[93,8,65,8,"oi"],[93,10,65,10],[93,12,65,12],[93,13,65,13],[93,16,65,17,"y00"],[93,19,65,20],[93,22,65,23,"x00"],[93,25,65,26],[93,28,65,30],[93,29,65,31],[94,4,66,4,"out"],[94,7,66,7],[94,8,66,8,"oi"],[94,10,66,10],[94,12,66,12],[94,13,66,13],[94,16,66,17,"y01"],[94,19,66,20],[94,22,66,23,"x01"],[94,25,66,26],[94,28,66,30],[94,29,66,31],[95,4,67,4,"out"],[95,7,67,7],[95,8,67,8,"oi"],[95,10,67,10],[95,12,67,12],[95,13,67,13],[95,16,67,17,"y02"],[95,19,67,20],[95,22,67,23,"x02"],[95,25,67,26],[95,28,67,30],[95,29,67,31],[96,4,68,4,"out"],[96,7,68,7],[96,8,68,8,"oi"],[96,10,68,10],[96,12,68,12],[96,13,68,13],[96,16,68,17,"y03"],[96,19,68,20],[96,22,68,23,"x03"],[96,25,68,26],[96,28,68,30],[96,29,68,31],[97,4,69,4,"out"],[97,7,69,7],[97,8,69,8,"oi"],[97,10,69,10],[97,12,69,12],[97,13,69,13],[97,16,69,17,"y04"],[97,19,69,20],[97,22,69,23,"x04"],[97,25,69,26],[97,28,69,30],[97,29,69,31],[98,4,70,4,"out"],[98,7,70,7],[98,8,70,8,"oi"],[98,10,70,10],[98,12,70,12],[98,13,70,13],[98,16,70,17,"y05"],[98,19,70,20],[98,22,70,23,"x05"],[98,25,70,26],[98,28,70,30],[98,29,70,31],[99,4,71,4,"out"],[99,7,71,7],[99,8,71,8,"oi"],[99,10,71,10],[99,12,71,12],[99,13,71,13],[99,16,71,17,"y06"],[99,19,71,20],[99,22,71,23,"x06"],[99,25,71,26],[99,28,71,30],[99,29,71,31],[100,4,72,4,"out"],[100,7,72,7],[100,8,72,8,"oi"],[100,10,72,10],[100,12,72,12],[100,13,72,13],[100,16,72,17,"y07"],[100,19,72,20],[100,22,72,23,"x07"],[100,25,72,26],[100,28,72,30],[100,29,72,31],[101,4,73,4,"out"],[101,7,73,7],[101,8,73,8,"oi"],[101,10,73,10],[101,12,73,12],[101,13,73,13],[101,16,73,17,"y08"],[101,19,73,20],[101,22,73,23,"x08"],[101,25,73,26],[101,28,73,30],[101,29,73,31],[102,4,74,4,"out"],[102,7,74,7],[102,8,74,8,"oi"],[102,10,74,10],[102,12,74,12],[102,13,74,13],[102,16,74,17,"y09"],[102,19,74,20],[102,22,74,23,"x09"],[102,25,74,26],[102,28,74,30],[102,29,74,31],[103,4,75,4,"out"],[103,7,75,7],[103,8,75,8,"oi"],[103,10,75,10],[103,12,75,12],[103,13,75,13],[103,16,75,17,"y10"],[103,19,75,20],[103,22,75,23,"x10"],[103,25,75,26],[103,28,75,30],[103,29,75,31],[104,4,76,4,"out"],[104,7,76,7],[104,8,76,8,"oi"],[104,10,76,10],[104,12,76,12],[104,13,76,13],[104,16,76,17,"y11"],[104,19,76,20],[104,22,76,23,"x11"],[104,25,76,26],[104,28,76,30],[104,29,76,31],[105,4,77,4,"out"],[105,7,77,7],[105,8,77,8,"oi"],[105,10,77,10],[105,12,77,12],[105,13,77,13],[105,16,77,17,"y12"],[105,19,77,20],[105,22,77,23,"x12"],[105,25,77,26],[105,28,77,30],[105,29,77,31],[106,4,78,4,"out"],[106,7,78,7],[106,8,78,8,"oi"],[106,10,78,10],[106,12,78,12],[106,13,78,13],[106,16,78,17,"y13"],[106,19,78,20],[106,22,78,23,"x13"],[106,25,78,26],[106,28,78,30],[106,29,78,31],[107,4,79,4,"out"],[107,7,79,7],[107,8,79,8,"oi"],[107,10,79,10],[107,12,79,12],[107,13,79,13],[107,16,79,17,"y14"],[107,19,79,20],[107,22,79,23,"x14"],[107,25,79,26],[107,28,79,30],[107,29,79,31],[108,4,80,4,"out"],[108,7,80,7],[108,8,80,8,"oi"],[108,10,80,10],[108,12,80,12],[108,13,80,13],[108,16,80,17,"y15"],[108,19,80,20],[108,22,80,23,"x15"],[108,25,80,26],[108,28,80,30],[108,29,80,31],[109,2,81,0],[110,2,82,0],[110,11,82,9,"BlockMix"],[110,19,82,17,"BlockMix"],[110,20,82,18,"input"],[110,25,82,23],[110,27,82,25,"ii"],[110,29,82,27],[110,31,82,29,"out"],[110,34,82,32],[110,36,82,34,"oi"],[110,38,82,36],[110,40,82,38,"r"],[110,41,82,39],[110,43,82,41],[111,4,83,4],[112,4,84,4],[112,8,84,8,"head"],[112,12,84,12],[112,15,84,15,"oi"],[112,17,84,17],[112,20,84,20],[112,21,84,21],[113,4,85,4],[113,8,85,8,"tail"],[113,12,85,12],[113,15,85,15,"oi"],[113,17,85,17],[113,20,85,20],[113,22,85,22],[113,25,85,25,"r"],[113,26,85,26],[114,4,86,4],[114,9,86,9],[114,13,86,13,"i"],[114,14,86,14],[114,17,86,17],[114,18,86,18],[114,20,86,20,"i"],[114,21,86,21],[114,24,86,24],[114,26,86,26],[114,28,86,28,"i"],[114,29,86,29],[114,31,86,31],[114,33,87,8,"out"],[114,36,87,11],[114,37,87,12,"tail"],[114,41,87,16],[114,44,87,19,"i"],[114,45,87,20],[114,46,87,21],[114,49,87,24,"input"],[114,54,87,29],[114,55,87,30,"ii"],[114,57,87,32],[114,60,87,35],[114,61,87,36],[114,62,87,37],[114,65,87,40,"r"],[114,66,87,41],[114,69,87,44],[114,70,87,45],[114,74,87,49],[114,76,87,51],[114,79,87,54,"i"],[114,80,87,55],[114,81,87,56],[114,82,87,57],[114,83,87,58],[115,4,88,4],[115,9,88,9],[115,13,88,13,"i"],[115,15,88,14],[115,18,88,17],[115,19,88,18],[115,21,88,20,"i"],[115,23,88,21],[115,26,88,24,"r"],[115,27,88,25],[115,29,88,27,"i"],[115,31,88,28],[115,33,88,30],[115,35,88,32,"head"],[115,39,88,36],[115,43,88,40],[115,45,88,42],[115,47,88,44,"ii"],[115,49,88,46],[115,53,88,50],[115,55,88,52],[115,57,88,54],[116,6,89,8],[117,6,90,8,"XorAndSalsa"],[117,17,90,19],[117,18,90,20,"out"],[117,21,90,23],[117,23,90,25,"tail"],[117,27,90,29],[117,29,90,31,"input"],[117,34,90,36],[117,36,90,38,"ii"],[117,38,90,40],[117,40,90,42,"out"],[117,43,90,45],[117,45,90,47,"head"],[117,49,90,51],[117,50,90,52],[117,51,90,53],[117,52,90,54],[118,6,91,8],[118,10,91,12,"i"],[118,12,91,13],[118,15,91,16],[118,16,91,17],[118,18,92,12,"tail"],[118,22,92,16],[118,26,92,20],[118,28,92,22],[118,29,92,23],[118,30,92,24],[119,6,93,8,"XorAndSalsa"],[119,17,93,19],[119,18,93,20,"out"],[119,21,93,23],[119,23,93,25,"head"],[119,27,93,29],[119,29,93,31,"input"],[119,34,93,36],[119,36,93,39,"ii"],[119,38,93,41],[119,42,93,45],[119,44,93,47],[119,46,93,50,"out"],[119,49,93,53],[119,51,93,55,"tail"],[119,55,93,59],[119,56,93,60],[119,57,93,61],[119,58,93,62],[120,4,94,4],[121,2,95,0],[122,2,96,0],[123,2,97,0],[123,11,97,9,"scryptInit"],[123,21,97,19,"scryptInit"],[123,22,97,20,"password"],[123,30,97,28],[123,32,97,30,"salt"],[123,36,97,34],[123,38,97,36,"_opts"],[123,43,97,41],[123,45,97,43],[124,4,98,4],[125,4,99,4],[125,8,99,10,"opts"],[125,12,99,14],[125,15,99,17],[125,16,99,18],[125,17,99,19],[125,19,99,21,"utils_ts_1"],[125,29,99,31],[125,30,99,32,"checkOpts"],[125,39,99,41],[125,41,99,43],[126,6,100,8,"dkLen"],[126,11,100,13],[126,13,100,15],[126,15,100,17],[127,6,101,8,"asyncTick"],[127,15,101,17],[127,17,101,19],[127,19,101,21],[128,6,102,8,"maxmem"],[128,12,102,14],[128,14,102,16],[128,18,102,20],[128,22,102,24],[128,23,102,25],[128,26,102,28],[129,4,103,4],[129,5,103,5],[129,7,103,7,"_opts"],[129,12,103,12],[129,13,103,13],[130,4,104,4],[130,8,104,12,"N"],[130,9,104,13],[130,12,104,62,"opts"],[130,16,104,66],[130,17,104,12,"N"],[130,18,104,13],[131,6,104,15,"r"],[131,7,104,16],[131,10,104,62,"opts"],[131,14,104,66],[131,15,104,15,"r"],[131,16,104,16],[132,6,104,18,"p"],[132,7,104,19],[132,10,104,62,"opts"],[132,14,104,66],[132,15,104,18,"p"],[132,16,104,19],[133,6,104,21,"dkLen"],[133,11,104,26],[133,14,104,62,"opts"],[133,18,104,66],[133,19,104,21,"dkLen"],[133,24,104,26],[134,6,104,28,"asyncTick"],[134,15,104,37],[134,18,104,62,"opts"],[134,22,104,66],[134,23,104,28,"asyncTick"],[134,32,104,37],[135,6,104,39,"maxmem"],[135,12,104,45],[135,15,104,62,"opts"],[135,19,104,66],[135,20,104,39,"maxmem"],[135,26,104,45],[136,6,104,47,"onProgress"],[136,16,104,57],[136,19,104,62,"opts"],[136,23,104,66],[136,24,104,47,"onProgress"],[136,34,104,57],[137,4,105,4],[137,5,105,5],[137,6,105,6],[137,8,105,8,"utils_ts_1"],[137,18,105,18],[137,19,105,19,"anumber"],[137,26,105,26],[137,28,105,28,"N"],[137,29,105,29],[137,30,105,30],[138,4,106,4],[138,5,106,5],[138,6,106,6],[138,8,106,8,"utils_ts_1"],[138,18,106,18],[138,19,106,19,"anumber"],[138,26,106,26],[138,28,106,28,"r"],[138,29,106,29],[138,30,106,30],[139,4,107,4],[139,5,107,5],[139,6,107,6],[139,8,107,8,"utils_ts_1"],[139,18,107,18],[139,19,107,19,"anumber"],[139,26,107,26],[139,28,107,28,"p"],[139,29,107,29],[139,30,107,30],[140,4,108,4],[140,5,108,5],[140,6,108,6],[140,8,108,8,"utils_ts_1"],[140,18,108,18],[140,19,108,19,"anumber"],[140,26,108,26],[140,28,108,28,"dkLen"],[140,33,108,33],[140,34,108,34],[141,4,109,4],[141,5,109,5],[141,6,109,6],[141,8,109,8,"utils_ts_1"],[141,18,109,18],[141,19,109,19,"anumber"],[141,26,109,26],[141,28,109,28,"asyncTick"],[141,37,109,37],[141,38,109,38],[142,4,110,4],[142,5,110,5],[142,6,110,6],[142,8,110,8,"utils_ts_1"],[142,18,110,18],[142,19,110,19,"anumber"],[142,26,110,26],[142,28,110,28,"maxmem"],[142,34,110,34],[142,35,110,35],[143,4,111,4],[143,8,111,8,"onProgress"],[143,18,111,18],[143,23,111,23,"undefined"],[143,32,111,32],[143,36,111,36],[143,43,111,43,"onProgress"],[143,53,111,53],[143,58,111,58],[143,68,111,68],[143,70,112,8],[143,76,112,14],[143,80,112,18,"Error"],[143,85,112,23],[143,86,112,24],[143,117,112,55],[143,118,112,56],[144,4,113,4],[144,8,113,10,"blockSize"],[144,17,113,19],[144,20,113,22],[144,23,113,25],[144,26,113,28,"r"],[144,27,113,29],[145,4,114,4],[145,8,114,10,"blockSize32"],[145,19,114,21],[145,22,114,24,"blockSize"],[145,31,114,33],[145,34,114,36],[145,35,114,37],[146,4,115,4],[147,4,116,4],[148,4,117,4],[149,4,118,4],[150,4,119,4],[150,8,119,10,"pow32"],[150,13,119,15],[150,16,119,18,"Math"],[150,20,119,22],[150,21,119,23,"pow"],[150,24,119,26],[150,25,119,27],[150,26,119,28],[150,28,119,30],[150,30,119,32],[150,31,119,33],[151,4,120,4],[151,8,120,8,"N"],[151,9,120,9],[151,13,120,13],[151,14,120,14],[151,18,120,18],[151,19,120,19,"N"],[151,20,120,20],[151,23,120,24,"N"],[151,24,120,25],[151,27,120,28],[151,28,120,30],[151,34,120,36],[151,35,120,37],[151,39,120,41,"N"],[151,40,120,42],[151,43,120,45,"pow32"],[151,48,120,50],[151,50,120,52],[152,6,121,8],[152,12,121,14],[152,16,121,18,"Error"],[152,21,121,23],[152,22,121,24],[152,89,121,91],[152,90,121,92],[153,4,122,4],[154,4,123,4],[154,8,123,8,"p"],[154,9,123,9],[154,12,123,12],[154,13,123,13],[154,17,123,17,"p"],[154,18,123,18],[154,21,123,22],[154,22,123,23,"pow32"],[154,27,123,28],[154,30,123,31],[154,31,123,32],[154,35,123,36],[154,37,123,38],[154,40,123,42,"blockSize"],[154,49,123,51],[154,51,123,53],[155,6,124,8],[155,12,124,14],[155,16,124,18,"Error"],[155,21,124,23],[155,22,124,24],[155,112,124,114],[155,113,124,115],[156,4,125,4],[157,4,126,4],[157,8,126,8,"dkLen"],[157,13,126,13],[157,16,126,16],[157,17,126,17],[157,21,126,21,"dkLen"],[157,26,126,26],[157,29,126,29],[157,30,126,30,"pow32"],[157,35,126,35],[157,38,126,38],[157,39,126,39],[157,43,126,43],[157,45,126,45],[157,47,126,47],[158,6,127,8],[158,12,127,14],[158,16,127,18,"Error"],[158,21,127,23],[158,22,127,24],[158,102,127,104],[158,103,127,105],[159,4,128,4],[160,4,129,4],[160,8,129,10,"memUsed"],[160,15,129,17],[160,18,129,20,"blockSize"],[160,27,129,29],[160,31,129,33,"N"],[160,32,129,34],[160,35,129,37,"p"],[160,36,129,38],[160,37,129,39],[161,4,130,4],[161,8,130,8,"memUsed"],[161,15,130,15],[161,18,130,18,"maxmem"],[161,24,130,24],[161,26,130,26],[162,6,131,8],[162,12,131,14],[162,16,131,18,"Error"],[162,21,131,23],[162,22,131,24],[162,102,131,104],[162,105,131,107,"maxmem"],[162,111,131,113],[162,112,131,114],[163,4,132,4],[164,4,133,4],[165,4,134,4],[166,4,135,4],[166,8,135,10,"B"],[166,9,135,11],[166,12,135,14],[166,13,135,15],[166,14,135,16],[166,16,135,18,"pbkdf2_ts_1"],[166,27,135,29],[166,28,135,30,"pbkdf2"],[166,34,135,36],[166,36,135,38,"sha2_ts_1"],[166,45,135,47],[166,46,135,48,"sha256"],[166,52,135,54],[166,54,135,56,"password"],[166,62,135,64],[166,64,135,66,"salt"],[166,68,135,70],[166,70,135,72],[167,6,135,74,"c"],[167,7,135,75],[167,9,135,77],[167,10,135,78],[168,6,135,80,"dkLen"],[168,11,135,85],[168,13,135,87,"blockSize"],[168,22,135,96],[168,25,135,99,"p"],[169,4,135,101],[169,5,135,102],[169,6,135,103],[170,4,136,4],[170,8,136,10,"B32"],[170,11,136,13],[170,14,136,16],[170,15,136,17],[170,16,136,18],[170,18,136,20,"utils_ts_1"],[170,28,136,30],[170,29,136,31,"u32"],[170,32,136,34],[170,34,136,36,"B"],[170,35,136,37],[170,36,136,38],[171,4,137,4],[172,4,138,4],[172,8,138,10,"V"],[172,9,138,11],[172,12,138,14],[172,13,138,15],[172,14,138,16],[172,16,138,18,"utils_ts_1"],[172,26,138,28],[172,27,138,29,"u32"],[172,30,138,32],[172,32,138,34],[172,36,138,38,"Uint8Array"],[172,46,138,48],[172,47,138,49,"blockSize"],[172,56,138,58],[172,59,138,61,"N"],[172,60,138,62],[172,61,138,63],[172,62,138,64],[173,4,139,4],[173,8,139,10,"tmp"],[173,11,139,13],[173,14,139,16],[173,15,139,17],[173,16,139,18],[173,18,139,20,"utils_ts_1"],[173,28,139,30],[173,29,139,31,"u32"],[173,32,139,34],[173,34,139,36],[173,38,139,40,"Uint8Array"],[173,48,139,50],[173,49,139,51,"blockSize"],[173,58,139,60],[173,59,139,61],[173,60,139,62],[174,4,140,4],[174,8,140,8,"blockMixCb"],[174,18,140,18],[174,21,140,21,"blockMixCb"],[174,22,140,21],[174,27,140,27],[174,28,140,29],[174,29,140,30],[175,4,141,4],[175,8,141,8,"onProgress"],[175,18,141,18],[175,20,141,20],[176,6,142,8],[176,10,142,14,"totalBlockMix"],[176,23,142,27],[176,26,142,30],[176,27,142,31],[176,30,142,34,"N"],[176,31,142,35],[176,34,142,38,"p"],[176,35,142,39],[177,6,143,8],[178,6,144,8],[179,6,145,8],[179,10,145,14,"callbackPer"],[179,21,145,25],[179,24,145,28,"Math"],[179,28,145,32],[179,29,145,33,"max"],[179,32,145,36],[179,33,145,37,"Math"],[179,37,145,41],[179,38,145,42,"floor"],[179,43,145,47],[179,44,145,48,"totalBlockMix"],[179,57,145,61],[179,60,145,64],[179,65,145,69],[179,66,145,70],[179,68,145,72],[179,69,145,73],[179,70,145,74],[180,6,146,8],[180,10,146,12,"blockMixCnt"],[180,21,146,23],[180,24,146,26],[180,25,146,27],[181,6,147,8,"blockMixCb"],[181,16,147,18],[181,19,147,21,"blockMixCb"],[181,20,147,21],[181,25,147,27],[182,8,148,12,"blockMixCnt"],[182,19,148,23],[182,21,148,25],[183,8,149,12],[183,12,149,16,"onProgress"],[183,22,149,26],[183,27,149,31],[183,29,149,33,"blockMixCnt"],[183,40,149,44],[183,43,149,47,"callbackPer"],[183,54,149,58],[183,55,149,59],[183,59,149,63,"blockMixCnt"],[183,70,149,74],[183,75,149,79,"totalBlockMix"],[183,88,149,92],[183,89,149,93],[183,91,150,16,"onProgress"],[183,101,150,26],[183,102,150,27,"blockMixCnt"],[183,113,150,38],[183,116,150,41,"totalBlockMix"],[183,129,150,54],[183,130,150,55],[184,6,151,8],[184,7,151,9],[185,4,152,4],[186,4,153,4],[186,11,153,11],[187,6,153,13,"N"],[187,7,153,14],[188,6,153,16,"r"],[188,7,153,17],[189,6,153,19,"p"],[189,7,153,20],[190,6,153,22,"dkLen"],[190,11,153,27],[191,6,153,29,"blockSize32"],[191,17,153,40],[192,6,153,42,"V"],[192,7,153,43],[193,6,153,45,"B32"],[193,9,153,48],[194,6,153,50,"B"],[194,7,153,51],[195,6,153,53,"tmp"],[195,9,153,56],[196,6,153,58,"blockMixCb"],[196,16,153,68],[197,6,153,70,"asyncTick"],[198,4,153,80],[198,5,153,81],[199,2,154,0],[200,2,155,0],[200,11,155,9,"scryptOutput"],[200,23,155,21,"scryptOutput"],[200,24,155,22,"password"],[200,32,155,30],[200,34,155,32,"dkLen"],[200,39,155,37],[200,41,155,39,"B"],[200,42,155,40],[200,44,155,42,"V"],[200,45,155,43],[200,47,155,45,"tmp"],[200,50,155,48],[200,52,155,50],[201,4,156,4],[201,8,156,10,"res"],[201,11,156,13],[201,14,156,16],[201,15,156,17],[201,16,156,18],[201,18,156,20,"pbkdf2_ts_1"],[201,29,156,31],[201,30,156,32,"pbkdf2"],[201,36,156,38],[201,38,156,40,"sha2_ts_1"],[201,47,156,49],[201,48,156,50,"sha256"],[201,54,156,56],[201,56,156,58,"password"],[201,64,156,66],[201,66,156,68,"B"],[201,67,156,69],[201,69,156,71],[202,6,156,73,"c"],[202,7,156,74],[202,9,156,76],[202,10,156,77],[203,6,156,79,"dkLen"],[204,4,156,85],[204,5,156,86],[204,6,156,87],[205,4,157,4],[205,5,157,5],[205,6,157,6],[205,8,157,8,"utils_ts_1"],[205,18,157,18],[205,19,157,19,"clean"],[205,24,157,24],[205,26,157,26,"B"],[205,27,157,27],[205,29,157,29,"V"],[205,30,157,30],[205,32,157,32,"tmp"],[205,35,157,35],[205,36,157,36],[206,4,158,4],[206,11,158,11,"res"],[206,14,158,14],[207,2,159,0],[208,2,160,0],[209,0,161,0],[210,0,162,0],[211,0,163,0],[212,0,164,0],[213,0,165,0],[214,0,166,0],[215,0,167,0],[216,0,168,0],[217,0,169,0],[218,0,170,0],[219,0,171,0],[220,0,172,0],[221,0,173,0],[222,0,174,0],[223,0,175,0],[224,2,176,0],[224,11,176,9,"scrypt"],[224,17,176,15,"scrypt"],[224,18,176,16,"password"],[224,26,176,24],[224,28,176,26,"salt"],[224,32,176,30],[224,34,176,32,"opts"],[224,38,176,36],[224,40,176,38],[225,4,177,4],[225,8,177,4,"_scryptInit"],[225,19,177,4],[225,22,177,72,"scryptInit"],[225,32,177,82],[225,33,177,83,"password"],[225,41,177,91],[225,43,177,93,"salt"],[225,47,177,97],[225,49,177,99,"opts"],[225,53,177,103],[225,54,177,104],[226,6,177,12,"N"],[226,7,177,13],[226,10,177,13,"_scryptInit"],[226,21,177,13],[226,22,177,12,"N"],[226,23,177,13],[227,6,177,15,"r"],[227,7,177,16],[227,10,177,16,"_scryptInit"],[227,21,177,16],[227,22,177,15,"r"],[227,23,177,16],[228,6,177,18,"p"],[228,7,177,19],[228,10,177,19,"_scryptInit"],[228,21,177,19],[228,22,177,18,"p"],[228,23,177,19],[229,6,177,21,"dkLen"],[229,11,177,26],[229,14,177,26,"_scryptInit"],[229,25,177,26],[229,26,177,21,"dkLen"],[229,31,177,26],[230,6,177,28,"blockSize32"],[230,17,177,39],[230,20,177,39,"_scryptInit"],[230,31,177,39],[230,32,177,28,"blockSize32"],[230,43,177,39],[231,6,177,41,"V"],[231,7,177,42],[231,10,177,42,"_scryptInit"],[231,21,177,42],[231,22,177,41,"V"],[231,23,177,42],[232,6,177,44,"B32"],[232,9,177,47],[232,12,177,47,"_scryptInit"],[232,23,177,47],[232,24,177,44,"B32"],[232,27,177,47],[233,6,177,49,"B"],[233,7,177,50],[233,10,177,50,"_scryptInit"],[233,21,177,50],[233,22,177,49,"B"],[233,23,177,50],[234,6,177,52,"tmp"],[234,9,177,55],[234,12,177,55,"_scryptInit"],[234,23,177,55],[234,24,177,52,"tmp"],[234,27,177,55],[235,6,177,57,"blockMixCb"],[235,16,177,67],[235,19,177,67,"_scryptInit"],[235,30,177,67],[235,31,177,57,"blockMixCb"],[235,41,177,67],[236,4,178,4],[236,5,178,5],[236,6,178,6],[236,8,178,8,"utils_ts_1"],[236,18,178,18],[236,19,178,19,"swap32IfBE"],[236,29,178,29],[236,31,178,31,"B32"],[236,34,178,34],[236,35,178,35],[237,4,179,4],[237,9,179,9],[237,13,179,13,"pi"],[237,15,179,15],[237,18,179,18],[237,19,179,19],[237,21,179,21,"pi"],[237,23,179,23],[237,26,179,26,"p"],[237,27,179,27],[237,29,179,29,"pi"],[237,31,179,31],[237,33,179,33],[237,35,179,35],[238,6,180,8],[238,10,180,14,"Pi"],[238,12,180,16],[238,15,180,19,"blockSize32"],[238,26,180,30],[238,29,180,33,"pi"],[238,31,180,35],[239,6,181,8],[239,11,181,13],[239,15,181,17,"i"],[239,16,181,18],[239,19,181,21],[239,20,181,22],[239,22,181,24,"i"],[239,23,181,25],[239,26,181,28,"blockSize32"],[239,37,181,39],[239,39,181,41,"i"],[239,40,181,42],[239,42,181,44],[239,44,182,12,"V"],[239,45,182,13],[239,46,182,14,"i"],[239,47,182,15],[239,48,182,16],[239,51,182,19,"B32"],[239,54,182,22],[239,55,182,23,"Pi"],[239,57,182,25],[239,60,182,28,"i"],[239,61,182,29],[239,62,182,30],[239,63,182,31],[239,64,182,32],[240,6,183,8],[240,11,183,13],[240,15,183,17,"i"],[240,18,183,18],[240,21,183,21],[240,22,183,22],[240,24,183,24,"pos"],[240,27,183,27],[240,30,183,30],[240,31,183,31],[240,33,183,33,"i"],[240,36,183,34],[240,39,183,37,"N"],[240,40,183,38],[240,43,183,41],[240,44,183,42],[240,46,183,44,"i"],[240,49,183,45],[240,51,183,47],[240,53,183,49],[241,8,184,12,"BlockMix"],[241,16,184,20],[241,17,184,21,"V"],[241,18,184,22],[241,20,184,24,"pos"],[241,23,184,27],[241,25,184,29,"V"],[241,26,184,30],[241,28,184,33,"pos"],[241,31,184,36],[241,35,184,40,"blockSize32"],[241,46,184,51],[241,48,184,54,"r"],[241,49,184,55],[241,50,184,56],[241,51,184,57],[241,52,184,58],[242,8,185,12,"blockMixCb"],[242,18,185,22],[242,19,185,23],[242,20,185,24],[243,6,186,8],[244,6,187,8,"BlockMix"],[244,14,187,16],[244,15,187,17,"V"],[244,16,187,18],[244,18,187,20],[244,19,187,21,"N"],[244,20,187,22],[244,23,187,25],[244,24,187,26],[244,28,187,30,"blockSize32"],[244,39,187,41],[244,41,187,43,"B32"],[244,44,187,46],[244,46,187,48,"Pi"],[244,48,187,50],[244,50,187,52,"r"],[244,51,187,53],[244,52,187,54],[244,53,187,55],[244,54,187,56],[245,6,188,8,"blockMixCb"],[245,16,188,18],[245,17,188,19],[245,18,188,20],[246,6,189,8],[246,11,189,13],[246,15,189,17,"i"],[246,18,189,18],[246,21,189,21],[246,22,189,22],[246,24,189,24,"i"],[246,27,189,25],[246,30,189,28,"N"],[246,31,189,29],[246,33,189,31,"i"],[246,36,189,32],[246,38,189,34],[246,40,189,36],[247,8,190,12],[248,8,191,12],[248,12,191,18,"j"],[248,13,191,19],[248,16,191,22,"B32"],[248,19,191,25],[248,20,191,26,"Pi"],[248,22,191,28],[248,25,191,31,"blockSize32"],[248,36,191,42],[248,39,191,45],[248,41,191,47],[248,42,191,48],[248,45,191,51,"N"],[248,46,191,52],[248,47,191,53],[248,48,191,54],[249,8,192,12],[249,13,192,17],[249,17,192,21,"k"],[249,18,192,22],[249,21,192,25],[249,22,192,26],[249,24,192,28,"k"],[249,25,192,29],[249,28,192,32,"blockSize32"],[249,39,192,43],[249,41,192,45,"k"],[249,42,192,46],[249,44,192,48],[249,46,193,16,"tmp"],[249,49,193,19],[249,50,193,20,"k"],[249,51,193,21],[249,52,193,22],[249,55,193,25,"B32"],[249,58,193,28],[249,59,193,29,"Pi"],[249,61,193,31],[249,64,193,34,"k"],[249,65,193,35],[249,66,193,36],[249,69,193,39,"V"],[249,70,193,40],[249,71,193,41,"j"],[249,72,193,42],[249,75,193,45,"blockSize32"],[249,86,193,56],[249,89,193,59,"k"],[249,90,193,60],[249,91,193,61],[249,92,193,62],[249,93,193,63],[250,8,194,12,"BlockMix"],[250,16,194,20],[250,17,194,21,"tmp"],[250,20,194,24],[250,22,194,26],[250,23,194,27],[250,25,194,29,"B32"],[250,28,194,32],[250,30,194,34,"Pi"],[250,32,194,36],[250,34,194,38,"r"],[250,35,194,39],[250,36,194,40],[250,37,194,41],[250,38,194,42],[251,8,195,12,"blockMixCb"],[251,18,195,22],[251,19,195,23],[251,20,195,24],[252,6,196,8],[253,4,197,4],[254,4,198,4],[254,5,198,5],[254,6,198,6],[254,8,198,8,"utils_ts_1"],[254,18,198,18],[254,19,198,19,"swap32IfBE"],[254,29,198,29],[254,31,198,31,"B32"],[254,34,198,34],[254,35,198,35],[255,4,199,4],[255,11,199,11,"scryptOutput"],[255,23,199,23],[255,24,199,24,"password"],[255,32,199,32],[255,34,199,34,"dkLen"],[255,39,199,39],[255,41,199,41,"B"],[255,42,199,42],[255,44,199,44,"V"],[255,45,199,45],[255,47,199,47,"tmp"],[255,50,199,50],[255,51,199,51],[256,2,200,0],[257,2,201,0],[258,0,202,0],[259,0,203,0],[260,0,204,0],[261,0,205,0],[262,2,201,0],[262,11,206,15,"scryptAsync"],[262,22,206,26,"scryptAsync"],[262,23,206,26,"_x"],[262,25,206,26],[262,27,206,26,"_x2"],[262,30,206,26],[262,32,206,26,"_x3"],[262,35,206,26],[263,4,206,26],[263,11,206,26,"_scryptAsync"],[263,23,206,26],[263,24,206,26,"apply"],[263,29,206,26],[263,36,206,26,"arguments"],[263,45,206,26],[264,2,206,26],[265,2,206,26],[265,11,206,26,"_scryptAsync"],[265,24,206,26],[266,4,206,26,"_scryptAsync"],[266,16,206,26],[266,19,206,26,"_asyncToGenerator"],[266,36,206,26],[266,37,206,0],[266,48,206,27,"password"],[266,56,206,35],[266,58,206,37,"salt"],[266,62,206,41],[266,64,206,43,"opts"],[266,68,206,47],[266,70,206,49],[267,6,207,4],[267,10,207,4,"_scryptInit2"],[267,22,207,4],[267,25,207,83,"scryptInit"],[267,35,207,93],[267,36,207,94,"password"],[267,44,207,102],[267,46,207,104,"salt"],[267,50,207,108],[267,52,207,110,"opts"],[267,56,207,114],[267,57,207,115],[268,8,207,12,"N"],[268,9,207,13],[268,12,207,13,"_scryptInit2"],[268,24,207,13],[268,25,207,12,"N"],[268,26,207,13],[269,8,207,15,"r"],[269,9,207,16],[269,12,207,16,"_scryptInit2"],[269,24,207,16],[269,25,207,15,"r"],[269,26,207,16],[270,8,207,18,"p"],[270,9,207,19],[270,12,207,19,"_scryptInit2"],[270,24,207,19],[270,25,207,18,"p"],[270,26,207,19],[271,8,207,21,"dkLen"],[271,13,207,26],[271,16,207,26,"_scryptInit2"],[271,28,207,26],[271,29,207,21,"dkLen"],[271,34,207,26],[272,8,207,28,"blockSize32"],[272,19,207,39],[272,22,207,39,"_scryptInit2"],[272,34,207,39],[272,35,207,28,"blockSize32"],[272,46,207,39],[273,8,207,41,"V"],[273,9,207,42],[273,12,207,42,"_scryptInit2"],[273,24,207,42],[273,25,207,41,"V"],[273,26,207,42],[274,8,207,44,"B32"],[274,11,207,47],[274,14,207,47,"_scryptInit2"],[274,26,207,47],[274,27,207,44,"B32"],[274,30,207,47],[275,8,207,49,"B"],[275,9,207,50],[275,12,207,50,"_scryptInit2"],[275,24,207,50],[275,25,207,49,"B"],[275,26,207,50],[276,8,207,52,"tmp"],[276,11,207,55],[276,14,207,55,"_scryptInit2"],[276,26,207,55],[276,27,207,52,"tmp"],[276,30,207,55],[277,8,207,57,"blockMixCb"],[277,18,207,67],[277,21,207,67,"_scryptInit2"],[277,33,207,67],[277,34,207,57,"blockMixCb"],[277,44,207,67],[278,8,207,69,"asyncTick"],[278,17,207,78],[278,20,207,78,"_scryptInit2"],[278,32,207,78],[278,33,207,69,"asyncTick"],[278,42,207,78],[279,6,208,4],[279,7,208,5],[279,8,208,6],[279,10,208,8,"utils_ts_1"],[279,20,208,18],[279,21,208,19,"swap32IfBE"],[279,31,208,29],[279,33,208,31,"B32"],[279,36,208,34],[279,37,208,35],[280,6,208,36],[280,10,208,36,"_loop"],[280,15,208,36],[280,28,208,36,"_loop"],[280,29,208,36],[280,31,209,35],[281,8,210,8],[281,12,210,14,"Pi"],[281,14,210,16],[281,17,210,19,"blockSize32"],[281,28,210,30],[281,31,210,33,"pi"],[281,33,210,35],[282,8,211,8],[282,13,211,13],[282,17,211,17,"i"],[282,18,211,18],[282,21,211,21],[282,22,211,22],[282,24,211,24,"i"],[282,25,211,25],[282,28,211,28,"blockSize32"],[282,39,211,39],[282,41,211,41,"i"],[282,42,211,42],[282,44,211,44],[282,46,212,12,"V"],[282,47,212,13],[282,48,212,14,"i"],[282,49,212,15],[282,50,212,16],[282,53,212,19,"B32"],[282,56,212,22],[282,57,212,23,"Pi"],[282,59,212,25],[282,62,212,28,"i"],[282,63,212,29],[282,64,212,30],[282,65,212,31],[282,66,212,32],[283,8,213,8],[283,12,213,12,"pos"],[283,15,213,15],[283,18,213,18],[283,19,213,19],[284,8,214,8],[284,14,214,14],[284,15,214,15],[284,16,214,16],[284,18,214,18,"utils_ts_1"],[284,28,214,28],[284,29,214,29,"asyncLoop"],[284,38,214,38],[284,40,214,40,"N"],[284,41,214,41],[284,44,214,44],[284,45,214,45],[284,47,214,47,"asyncTick"],[284,56,214,56],[284,58,214,58],[284,64,214,64],[285,10,215,12,"BlockMix"],[285,18,215,20],[285,19,215,21,"V"],[285,20,215,22],[285,22,215,24,"pos"],[285,25,215,27],[285,27,215,29,"V"],[285,28,215,30],[285,30,215,33,"pos"],[285,33,215,36],[285,37,215,40,"blockSize32"],[285,48,215,51],[285,50,215,54,"r"],[285,51,215,55],[285,52,215,56],[285,53,215,57],[285,54,215,58],[286,10,216,12,"blockMixCb"],[286,20,216,22],[286,21,216,23],[286,22,216,24],[287,8,217,8],[287,9,217,9],[287,10,217,10],[288,8,218,8,"BlockMix"],[288,16,218,16],[288,17,218,17,"V"],[288,18,218,18],[288,20,218,20],[288,21,218,21,"N"],[288,22,218,22],[288,25,218,25],[288,26,218,26],[288,30,218,30,"blockSize32"],[288,41,218,41],[288,43,218,43,"B32"],[288,46,218,46],[288,48,218,48,"Pi"],[288,50,218,50],[288,52,218,52,"r"],[288,53,218,53],[288,54,218,54],[288,55,218,55],[288,56,218,56],[289,8,219,8,"blockMixCb"],[289,18,219,18],[289,19,219,19],[289,20,219,20],[290,8,220,8],[290,14,220,14],[290,15,220,15],[290,16,220,16],[290,18,220,18,"utils_ts_1"],[290,28,220,28],[290,29,220,29,"asyncLoop"],[290,38,220,38],[290,40,220,40,"N"],[290,41,220,41],[290,43,220,43,"asyncTick"],[290,52,220,52],[290,54,220,54],[290,60,220,60],[291,10,221,12],[292,10,222,12],[292,14,222,18,"j"],[292,15,222,19],[292,18,222,22,"B32"],[292,21,222,25],[292,22,222,26,"Pi"],[292,24,222,28],[292,27,222,31,"blockSize32"],[292,38,222,42],[292,41,222,45],[292,43,222,47],[292,44,222,48],[292,47,222,51,"N"],[292,48,222,52],[292,49,222,53],[292,50,222,54],[293,10,223,12],[293,15,223,17],[293,19,223,21,"k"],[293,20,223,22],[293,23,223,25],[293,24,223,26],[293,26,223,28,"k"],[293,27,223,29],[293,30,223,32,"blockSize32"],[293,41,223,43],[293,43,223,45,"k"],[293,44,223,46],[293,46,223,48],[293,48,224,16,"tmp"],[293,51,224,19],[293,52,224,20,"k"],[293,53,224,21],[293,54,224,22],[293,57,224,25,"B32"],[293,60,224,28],[293,61,224,29,"Pi"],[293,63,224,31],[293,66,224,34,"k"],[293,67,224,35],[293,68,224,36],[293,71,224,39,"V"],[293,72,224,40],[293,73,224,41,"j"],[293,74,224,42],[293,77,224,45,"blockSize32"],[293,88,224,56],[293,91,224,59,"k"],[293,92,224,60],[293,93,224,61],[293,94,224,62],[293,95,224,63],[294,10,225,12,"BlockMix"],[294,18,225,20],[294,19,225,21,"tmp"],[294,22,225,24],[294,24,225,26],[294,25,225,27],[294,27,225,29,"B32"],[294,30,225,32],[294,32,225,34,"Pi"],[294,34,225,36],[294,36,225,38,"r"],[294,37,225,39],[294,38,225,40],[294,39,225,41],[294,40,225,42],[295,10,226,12,"blockMixCb"],[295,20,226,22],[295,21,226,23],[295,22,226,24],[296,8,227,8],[296,9,227,9],[296,10,227,10],[297,6,228,4],[297,7,228,5],[298,6,209,4],[298,11,209,9],[298,15,209,13,"pi"],[298,17,209,15],[298,20,209,18],[298,21,209,19],[298,23,209,21,"pi"],[298,25,209,23],[298,28,209,26,"p"],[298,29,209,27],[298,31,209,29,"pi"],[298,33,209,31],[298,35,209,33],[299,8,209,33],[299,15,209,33,"_loop"],[299,20,209,33],[300,6,209,33],[301,6,229,4],[301,7,229,5],[301,8,229,6],[301,10,229,8,"utils_ts_1"],[301,20,229,18],[301,21,229,19,"swap32IfBE"],[301,31,229,29],[301,33,229,31,"B32"],[301,36,229,34],[301,37,229,35],[302,6,230,4],[302,13,230,11,"scryptOutput"],[302,25,230,23],[302,26,230,24,"password"],[302,34,230,32],[302,36,230,34,"dkLen"],[302,41,230,39],[302,43,230,41,"B"],[302,44,230,42],[302,46,230,44,"V"],[302,47,230,45],[302,49,230,47,"tmp"],[302,52,230,50],[302,53,230,51],[303,4,231,0],[303,5,231,1],[304,4,231,1],[304,11,231,1,"_scryptAsync"],[304,23,231,1],[304,24,231,1,"apply"],[304,29,231,1],[304,36,231,1,"arguments"],[304,45,231,1],[305,2,231,1],[306,0,231,1],[306,3]],"functionMap":{"names":["<global>","XorAndSalsa","BlockMix","scryptInit","blockMixCb","scryptOutput","scrypt","scryptAsync","<anonymous>"],"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"}]} |